/third_party/node/src/ |
H A D | node_constants.cc | 1346 CHECK(os_constants->SetPrototype(env->context(), in DefineConstants() 1350 CHECK(err_constants->SetPrototype(env->context(), in DefineConstants() 1354 CHECK(sig_constants->SetPrototype(env->context(), in DefineConstants() 1358 CHECK(priority_constants->SetPrototype(env->context(), in DefineConstants() 1362 CHECK(fs_constants->SetPrototype(env->context(), in DefineConstants() 1366 CHECK(crypto_constants->SetPrototype(env->context(), in DefineConstants() 1370 CHECK(zlib_constants->SetPrototype(env->context(), in DefineConstants() 1374 CHECK(dlopen_constants->SetPrototype(env->context(), in DefineConstants() 1378 CHECK(trace_constants->SetPrototype(env->context(), in DefineConstants()
|
H A D | node_options.cc | 1111 ->SetPrototype(context, env->primordials_safe_map_prototype_object()) in GetCLIOptions() 1211 ->SetPrototype(context, env->primordials_safe_map_prototype_object()) in GetCLIOptions()
|
H A D | node_binding.cc | 650 CHECK(exports->SetPrototype(context, Null(isolate)).FromJust()); in GetInternalBinding()
|
H A D | node_buffer.cc | 279 ui->SetPrototype(env->context(), env->buffer_prototype_object()); in New()
|
/third_party/node/lib/internal/ |
H A D | freeze_intrinsics.js | 91 SetPrototype, 198 SetPrototype, // 24.2
|
/third_party/node/deps/v8/src/init/ |
H A D | bootstrapper.cc | 863 Map::SetPrototype(isolate(), empty_function_map, object_function_prototype); in CreateObjectFunction() 867 JSFunction::SetPrototype(object_fun, object_function_prototype); in CreateObjectFunction() 874 Map::SetPrototype(isolate(), map, factory->null_value()); in CreateObjectFunction() 879 Map::SetPrototype(isolate(), map, object_function_prototype); in CreateObjectFunction() 903 Map::SetPrototype(isolate, map, prototype); in CreateNonConstructorMap() 1003 Map::SetPrototype(isolate(), generator_object_prototype_map, in CreateIteratorMaps() 1042 Map::SetPrototype(isolate(), async_from_sync_iterator_map, in CreateAsyncIteratorMaps() 1106 Map::SetPrototype(isolate(), async_generator_object_prototype_map, in CreateAsyncIteratorMaps() 1123 Map::SetPrototype(isolate(), map, async_function_prototype); in CreateAsyncFunctionMaps() 1128 Map::SetPrototype(isolat in CreateAsyncFunctionMaps() [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | js-proxy.h | 33 V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype(
|
H A D | js-function.h | 293 static void SetPrototype(Handle<JSFunction> function, Handle<Object> value);
|
H A D | js-function.cc | 666 void JSFunction::SetPrototype(Handle<JSFunction> function, in SetPrototype() function in v8::internal::JSFunction 682 Map::Copy(isolate, handle(function->map(), isolate), "SetPrototype"); in SetPrototype() 715 Map::SetPrototype(isolate, map, prototype); in SetInitialMap() 1036 Map::SetPrototype(isolate, map, Handle<HeapObject>::cast(prototype)); in GetDerivedMap()
|
H A D | map.cc | 866 Map::SetPrototype(isolate, map, prototype); in GetObjectCreateMap() 1175 Map::SetPrototype(isolate, result, prototype); in RawCopy() 2281 void Map::SetPrototype(Isolate* isolate, Handle<Map> map, in SetPrototype() function in v8::internal::Map 2312 Map::SetPrototype(isolate, new_map, prototype); in TransitionToPrototype()
|
H A D | js-objects.h | 271 V8_EXPORT_PRIVATE V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype( 641 // Forces a prototype without any of the checks that the regular SetPrototype 725 V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype(
|
H A D | map.h | 556 V8_EXPORT_PRIVATE static void SetPrototype(
|
H A D | js-objects.cc | 2256 Maybe<bool> JSReceiver::SetPrototype(Isolate* isolate, in SetPrototype() function in v8::internal::JSReceiver 2261 return JSProxy::SetPrototype(isolate, Handle<JSProxy>::cast(object), value, in SetPrototype() 2264 return JSObject::SetPrototype(isolate, Handle<JSObject>::cast(object), value, in SetPrototype() 3360 Map::SetPrototype(isolate, new_map, proto); in ForceSetPrototype() 4976 Maybe<bool> JSObject::SetPrototype(Isolate* isolate, Handle<JSObject> object, in SetPrototype() function in v8::internal::JSObject
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-console.cc | 274 JSFunction::SetPrototype(cons, prototype); in BUILTIN()
|
H A D | builtins-object.cc | 264 JSReceiver::SetPrototype(isolate, receiver, proto, true, kThrowOnError), in BUILTIN()
|
H A D | accessors.cc | 325 JSFunction::SetPrototype(function, proto); in GetFunctionPrototype() 352 JSFunction::SetPrototype(object, value); in FunctionPrototypeSetter()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-debugger.cc | 660 if (!result->SetPrototype(context, v8::Null(m_isolate)).FromMaybe(false)) { in getTargetScopes() 740 if (!wrappedEntries->SetPrototype(context, v8::Null(isolate)) in collectionsEntries() 749 if (!wrapper->SetPrototype(context, v8::Null(isolate)).FromMaybe(false)) in collectionsEntries()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-classes.cc | 487 Map::SetPrototype(isolate, map, prototype_parent); in InitClassPrototype() 543 Map::SetPrototype(isolate, map, constructor_parent, false); in InitClassConstructor()
|
H A D | runtime-object.cc | 628 JSReceiver::SetPrototype(isolate, obj, prototype, false, kThrowOnError), in RUNTIME_FUNCTION() 755 JSReceiver::SetPrototype(isolate, object, proto, true, kThrowOnError), in RUNTIME_FUNCTION() 769 JSReceiver::SetPrototype(isolate, object, proto, true, kDontThrow); in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-object.h | 451 * TODO(333672197): rename back to SetPrototype() once the old version goes 462 V8_WARN_UNUSED_RESULT Maybe<bool> SetPrototype(Local<Context> context,
|
/third_party/node/deps/v8/include/ |
H A D | v8-object.h | 437 V8_WARN_UNUSED_RESULT Maybe<bool> SetPrototype(Local<Context> context,
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-wasm-objects.cc | 119 Map::SetPrototype(isolate, map, isolate->factory()->null_value()); in GetOrCreateDebugProxyMap() 652 JSObject::SetPrototype(isolate, object, prototype, false, kDontThrow) in Create() 1101 JSObject::SetPrototype(isolate, final_entries, in AddWasmTableObjectInternalProperties()
|
/third_party/node/src/api/ |
H A D | environment.cc | 732 if (primordials->SetPrototype(context, Null(isolate)).IsNothing() || in InitializePrimordials()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-js.cc | 676 Maybe<bool> result = i::JSObject::SetPrototype( in TransferPrototype() 2788 JSFunction::SetPrototype(cons, isolate->initial_object_prototype()); in Install() 2949 CHECK(JSObject::SetPrototype( in Install()
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.cc | 3699 Map::SetPrototype(isolate(), map, empty_function); in CreateSloppyFunctionMap() 3789 Map::SetPrototype(isolate(), map, empty_function); in CreateStrictFunctionMap() 3853 Map::SetPrototype(isolate(), map, empty_function); in CreateClassFunctionMap()
|