• Home
  • Raw
  • Download

Lines Matching refs:object_function

585         factory->NewJSObject(isolate->object_function(), TENURED);  in CreateEmptyFunction()
723 factory()->NewJSObject(isolate()->object_function(), TENURED); in CreateIteratorMaps()
734 factory()->NewJSObject(isolate()->object_function(), TENURED); in CreateIteratorMaps()
739 factory()->NewJSObject(isolate()->object_function(), TENURED); in CreateIteratorMaps()
786 Handle<JSFunction> object_function(native_context()->object_function()); in CreateIteratorMaps() local
797 factory()->NewJSObject(isolate()->object_function(), TENURED); in CreateAsyncIteratorMaps()
810 factory()->NewJSObject(isolate()->object_function(), TENURED); in CreateAsyncIteratorMaps()
840 factory()->NewJSObject(isolate()->object_function(), TENURED); in CreateAsyncFunctionMaps()
999 factory()->NewFunctionPrototype(isolate()->object_function()); in CreateNewGlobals()
1007 DCHECK_EQ(*isolate()->object_function(), *value); in CreateNewGlobals()
1122 factory->NewJSObject(isolate->object_function(), TENURED); in InstallError()
1204 Handle<JSFunction> object_function = isolate->object_function(); in InitializeGlobal() local
1205 JSObject::AddProperty(global_object, object_name, object_function, in InitializeGlobal()
1208 SimpleInstallFunction(object_function, factory->assign_string(), in InitializeGlobal()
1210 SimpleInstallFunction(object_function, "getOwnPropertyDescriptor", in InitializeGlobal()
1212 SimpleInstallFunction(object_function, in InitializeGlobal()
1215 SimpleInstallFunction(object_function, "getOwnPropertyNames", in InitializeGlobal()
1217 SimpleInstallFunction(object_function, "getOwnPropertySymbols", in InitializeGlobal()
1219 SimpleInstallFunction(object_function, "is", in InitializeGlobal()
1221 SimpleInstallFunction(object_function, "preventExtensions", in InitializeGlobal()
1223 SimpleInstallFunction(object_function, "seal", in InitializeGlobal()
1227 SimpleInstallFunction(object_function, factory->create_string(), in InitializeGlobal()
1232 object_function, "defineProperties", in InitializeGlobal()
1237 object_function, factory->defineProperty_string(), in InitializeGlobal()
1242 object_function, "freeze", Builtins::kObjectFreeze, 1, false); in InitializeGlobal()
1246 object_function, "getPrototypeOf", Builtins::kObjectGetPrototypeOf, in InitializeGlobal()
1249 SimpleInstallFunction(object_function, "setPrototypeOf", in InitializeGlobal()
1253 object_function, "isExtensible", Builtins::kObjectIsExtensible, in InitializeGlobal()
1258 object_function, "isFrozen", Builtins::kObjectIsFrozen, 1, false); in InitializeGlobal()
1262 object_function, "isSealed", Builtins::kObjectIsSealed, 1, false); in InitializeGlobal()
1266 object_function, "keys", Builtins::kObjectKeys, 1, false); in InitializeGlobal()
1268 SimpleInstallFunction(object_function, factory->entries_string(), in InitializeGlobal()
1270 SimpleInstallFunction(object_function, factory->values_string(), in InitializeGlobal()
1409 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
1692 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
1725 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
1792 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
1947 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2075 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2311 Handle<JSObject> dummy = factory->NewJSObject(isolate->object_function()); in InitializeGlobal()
2428 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2445 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2462 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2477 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2506 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2572 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2698 map->SetConstructor(native_context()->object_function()); in InitializeGlobal()
2745 factory->NewJSObject(isolate->object_function(), TENURED); in InitializeGlobal()
2904 DCHECK_EQ(native_context()->object_function()->prototype(), in InitializeGlobal()
2962 factory()->NewJSObject(isolate()->object_function(), TENURED); in InstallTypedArray()
3284 isolate->factory()->NewJSObject(isolate->object_function(), TENURED); in ExportFromRuntime()
3294 isolate->factory()->NewJSObject(isolate->object_function(), TENURED); in ExportFromRuntime()
3308 factory->NewJSObject(isolate->object_function(), TENURED); in ExportFromRuntime()
3527 factory->NewJSObject(isolate->object_function(), TENURED); in ExportFromRuntime()
3819 factory()->NewJSObject(isolate()->object_function(), TENURED); in InstallArrayBuffer()
3859 factory()->NewJSObject(isolate()->object_function(), TENURED); in InstallInternalArray()
3895 Handle<JSObject> utils = factory()->NewJSObject(isolate()->object_function()); in InstallNatives()
3903 factory()->NewJSObject(isolate()->object_function()); in InstallNatives()
3928 factory()->NewJSObject(isolate()->object_function(), TENURED); in InstallNatives()
3966 Handle<JSFunction> object_function(native_context()->object_function()); in InstallNatives() local
3967 DCHECK(JSObject::cast(object_function->initial_map()->prototype()) in InstallNatives()
3970 HeapObject::cast(object_function->initial_map()->prototype())->map()); in InstallNatives()
3974 Map::CopyInitialMap(handle(object_function->initial_map(), isolate())); in InstallNatives()
4109 map->SetConstructor(native_context()->object_function()); in InstallNatives()
4155 map->SetConstructor(native_context()->object_function()); in InstallNatives()
4311 factory()->NewJSObject(isolate()->object_function()); in InstallExtraNatives()
4857 Handle<JSFunction> object_fun = isolate->object_function(); in Genesis()