/external/v8/src/inspector/ |
D | v8-injected-script-host.cc | 62 bool success = injectedScriptHost->SetPrototype(context, v8::Null(isolate)) in create() 130 ->SetPrototype(isolate->GetCurrentContext(), v8::Null(isolate)) in nullifyPrototypeCallback() 381 result->SetPrototype(context, v8::Null(isolate)).ToChecked(); in nativeAccessorDescriptorCallback()
|
D | v8-debugger.cc | 39 if (!wrappedEntries->SetPrototype(context, v8::Null(isolate)) in collectionsEntries() 48 if (!wrapper->SetPrototype(context, v8::Null(isolate)).FromMaybe(false)) in collectionsEntries() 78 if (!location->SetPrototype(context, v8::Null(isolate)).FromMaybe(false)) { in buildLocation() 712 if (!result->SetPrototype(context, v8::Null(m_isolate)).FromMaybe(false)) { in getTargetScopes()
|
D | v8-console.cc | 674 commandLineAPI->SetPrototype(context, v8::Null(isolate)).FromMaybe(false); in createCommandLineAPI()
|
/external/v8/src/ |
D | bootstrapper.cc | 792 Map::SetPrototype(isolate(), empty_function_map, object_function_prototype); in CreateObjectFunction() 796 JSFunction::SetPrototype(object_fun, object_function_prototype); in CreateObjectFunction() 803 Map::SetPrototype(isolate(), map, factory->null_value()); in CreateObjectFunction() 808 Map::SetPrototype(isolate(), map, object_function_prototype); in CreateObjectFunction() 833 Map::SetPrototype(isolate, map, prototype); in CreateNonConstructorMap() 921 Map::SetPrototype(isolate(), generator_object_prototype_map, in CreateIteratorMaps() 962 Map::SetPrototype(isolate(), async_from_sync_iterator_map, in CreateAsyncIteratorMaps() 1045 Map::SetPrototype(isolate(), async_generator_object_prototype_map, in CreateAsyncIteratorMaps() 1124 Map::SetPrototype(isolate(), map, isolate()->initial_object_prototype()); in CreateJSProxyMaps() 1394 CHECK(JSReceiver::SetPrototype(error_fun, global_error, false, in InstallError() [all …]
|
D | accessors.cc | 316 JSFunction::SetPrototype(function, proto); in GetFunctionPrototype() 346 JSFunction::SetPrototype(object, value); in FunctionPrototypeSetter()
|
D | objects.h | 2176 V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype( 2590 V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype( 3303 static void SetPrototype(Handle<JSFunction> function,
|
D | objects.cc | 4532 Map::SetPrototype(object->GetIsolate(), new_map, proto); in ForceSetPrototype() 5463 Map::SetPrototype(isolate, map, prototype); in GetObjectCreateMap() 9294 Map::SetPrototype(isolate, result, prototype); in RawCopy() 12956 void Map::SetPrototype(Isolate* isolate, Handle<Map> map, in SetPrototype() function in v8::internal::Map 13068 void JSFunction::SetPrototype(Handle<JSFunction> function, in SetPrototype() function in v8::internal::JSFunction 13112 Map::SetPrototype(function->GetIsolate(), map, prototype); in SetInitialMap() 13381 Map::SetPrototype(isolate, map, prototype); in GetDerivedMap() 15432 Map::SetPrototype(isolate, new_map, prototype); in TransitionToPrototype() 15438 Maybe<bool> JSReceiver::SetPrototype(Handle<JSReceiver> object, in SetPrototype() function in v8::internal::JSReceiver 15442 return JSProxy::SetPrototype(Handle<JSProxy>::cast(object), value, in SetPrototype() [all …]
|
D | api.cc | 4435 Maybe<bool> v8::Object::SetPrototype(Local<Context> context, in SetPrototype() function in v8::v8::Object 4438 ENTER_V8(isolate, context, Object, SetPrototype, Nothing<bool>(), in SetPrototype() 4446 i::JSReceiver::SetPrototype(self, value_obj, false, i::kThrowOnError); in SetPrototype()
|
/external/v8/src/objects/ |
D | js-proxy.h | 39 V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype(
|
D | map.h | 534 static void SetPrototype(Isolate* isolate, Handle<Map> map,
|
/external/v8/src/builtins/ |
D | builtins-object.cc | 259 MAYBE_RETURN(JSReceiver::SetPrototype(receiver, proto, true, kThrowOnError), in BUILTIN() 303 MAYBE_RETURN(JSReceiver::SetPrototype(receiver, proto, true, kThrowOnError), in BUILTIN()
|
D | builtins-console.cc | 143 JSFunction::SetPrototype(cons, prototype); in BUILTIN()
|
D | builtins-reflect.cc | 245 Maybe<bool> result = JSReceiver::SetPrototype( in BUILTIN()
|
/external/v8/src/runtime/ |
D | runtime-classes.cc | 455 Map::SetPrototype(isolate, map, prototype_parent); in InitClassPrototype() 506 Map::SetPrototype(isolate, map, constructor_parent, false); in InitClassConstructor()
|
D | runtime-object.cc | 486 MAYBE_RETURN(JSReceiver::SetPrototype(obj, prototype, false, kThrowOnError), in RUNTIME_FUNCTION()
|
/external/v8/src/heap/ |
D | factory.cc | 2773 Map::SetPrototype(isolate(), new_map, null_value()); in NewJSObjectWithNullProto() 3904 Map::SetPrototype(isolate(), map, empty_function); in CreateSloppyFunctionMap() 3981 Map::SetPrototype(isolate(), map, empty_function); in CreateStrictFunctionMap() 4046 Map::SetPrototype(isolate(), map, empty_function); in CreateClassFunctionMap()
|
/external/v8/src/wasm/ |
D | wasm-js.cc | 1488 JSFunction::SetPrototype(cons, isolate->initial_object_prototype()); in Install()
|
/external/v8/src/ic/ |
D | ic.cc | 2500 Map::SetPrototype(isolate, map, isolate->factory()->null_value()); in FastCloneObjectMap()
|
/external/v8/include/ |
D | v8.h | 3543 V8_WARN_UNUSED_RESULT Maybe<bool> SetPrototype(Local<Context> context,
|
/external/v8/ |
D | ChangeLog | 48921 Added SetPrototype method in the public V8 API.
|