Home
last modified time | relevance | path

Searched refs:SetPrototype (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/inspector/
Dv8-injected-script-host.cc62 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()
Dv8-debugger.cc39 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()
Dv8-console.cc674 commandLineAPI->SetPrototype(context, v8::Null(isolate)).FromMaybe(false); in createCommandLineAPI()
/external/v8/src/
Dbootstrapper.cc792 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 …]
Daccessors.cc316 JSFunction::SetPrototype(function, proto); in GetFunctionPrototype()
346 JSFunction::SetPrototype(object, value); in FunctionPrototypeSetter()
Dobjects.h2176 V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype(
2590 V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype(
3303 static void SetPrototype(Handle<JSFunction> function,
Dobjects.cc4532 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 …]
Dapi.cc4435 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/
Djs-proxy.h39 V8_WARN_UNUSED_RESULT static Maybe<bool> SetPrototype(
Dmap.h534 static void SetPrototype(Isolate* isolate, Handle<Map> map,
/external/v8/src/builtins/
Dbuiltins-object.cc259 MAYBE_RETURN(JSReceiver::SetPrototype(receiver, proto, true, kThrowOnError), in BUILTIN()
303 MAYBE_RETURN(JSReceiver::SetPrototype(receiver, proto, true, kThrowOnError), in BUILTIN()
Dbuiltins-console.cc143 JSFunction::SetPrototype(cons, prototype); in BUILTIN()
Dbuiltins-reflect.cc245 Maybe<bool> result = JSReceiver::SetPrototype( in BUILTIN()
/external/v8/src/runtime/
Druntime-classes.cc455 Map::SetPrototype(isolate, map, prototype_parent); in InitClassPrototype()
506 Map::SetPrototype(isolate, map, constructor_parent, false); in InitClassConstructor()
Druntime-object.cc486 MAYBE_RETURN(JSReceiver::SetPrototype(obj, prototype, false, kThrowOnError), in RUNTIME_FUNCTION()
/external/v8/src/heap/
Dfactory.cc2773 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/
Dwasm-js.cc1488 JSFunction::SetPrototype(cons, isolate->initial_object_prototype()); in Install()
/external/v8/src/ic/
Dic.cc2500 Map::SetPrototype(isolate, map, isolate->factory()->null_value()); in FastCloneObjectMap()
/external/v8/include/
Dv8.h3543 V8_WARN_UNUSED_RESULT Maybe<bool> SetPrototype(Local<Context> context,
/external/v8/
DChangeLog48921 Added SetPrototype method in the public V8 API.