Lines Matching refs:JSObject

235   Handle<JSFunction> InstallInternalArray(Handle<JSObject> target,
282 bool ConfigureApiObject(Handle<JSObject> object,
290 void TransferObject(Handle<JSObject> from, Handle<JSObject> to);
291 void TransferNamedProperties(Handle<JSObject> from, Handle<JSObject> to);
292 void TransferIndexedProperties(Handle<JSObject> from, Handle<JSObject> to);
364 JSObject::ForceSetPrototype(global_proxy, isolate_->factory()->null_value()); in DetachGlobal()
394 V8_NOINLINE void InstallFunction(Isolate* isolate, Handle<JSObject> target, in InstallFunction()
399 JSObject::AddProperty(isolate, target, property_name, function, attributes); in InstallFunction()
402 V8_NOINLINE void InstallFunction(Isolate* isolate, Handle<JSObject> target, in InstallFunction()
424 JSObject::MakePrototypesFast(handle(result->prototype(), isolate), in CreateFunction()
433 JSObject::MakePrototypesFast(result, kStartAtReceiver, isolate); in CreateFunction()
439 Isolate* isolate, Handle<JSObject> target, Handle<Name> name, in InstallFunction()
453 Isolate* isolate, Handle<JSObject> target, const char* name, in InstallFunction()
467 CreateFunction(isolate, name, JS_OBJECT_TYPE, JSObject::kHeaderSize, 0, in SimpleCreateFunction()
468 MaybeHandle<JSObject>(), call); in SimpleCreateFunction()
479 Isolate* isolate, Handle<JSObject> base, Handle<Name> property_name, in SimpleInstallFunction()
493 Isolate* isolate, Handle<JSObject> base, Handle<String> name, in SimpleInstallFunction()
502 Isolate* isolate, Handle<JSObject> base, Handle<Name> property_name, in SimpleInstallFunction()
514 Isolate* isolate, Handle<JSObject> base, const char* name, in SimpleInstallFunction()
526 Isolate* isolate, Handle<JSObject> base, const char* name, in SimpleInstallFunction()
533 Handle<JSObject> base, in SimpleInstallGetterSetter()
550 JSObject::DefineAccessor(base, name, getter, setter, attribs).Check(); in SimpleInstallGetterSetter()
554 Isolate* isolate, Handle<JSObject> base, Handle<Name> name, in SimpleInstallGetter()
564 JSObject::DefineAccessor(base, property_name, getter, setter, DONT_ENUM) in SimpleInstallGetter()
571 Handle<JSObject> base, in SimpleInstallGetter()
579 Isolate* isolate, Handle<JSObject> base, Handle<Name> name, in SimpleInstallGetter()
587 V8_NOINLINE void InstallConstant(Isolate* isolate, Handle<JSObject> holder, in InstallConstant()
589 JSObject::AddProperty( in InstallConstant()
686 JSObject::SetOwnPropertyIgnoreAttributes( in GetThrowTypeErrorIntrinsic()
691 if (JSObject::PreventExtensions(function, kThrowOnError).IsNothing()) { in GetThrowTypeErrorIntrinsic()
695 JSObject::MigrateSlowToFast(function, 0, "Bootstrapping"); in GetThrowTypeErrorIntrinsic()
760 int inobject_properties = JSObject::kInitialGlobalObjectUnusedPropertiesCount; in CreateObjectFunction()
762 JSObject::kHeaderSize + kPointerSize * inobject_properties; in CreateObjectFunction()
778 Handle<JSObject> object_function_prototype = in CreateObjectFunction()
816 Handle<JSObject> prototype, in CreateNonConstructorMap()
841 Handle<JSObject> iterator_prototype = in CreateIteratorMaps()
849 Handle<JSObject> generator_object_prototype = in CreateIteratorMaps()
853 JSObject::ForceSetPrototype(generator_object_prototype, iterator_prototype); in CreateIteratorMaps()
854 Handle<JSObject> generator_function_prototype = in CreateIteratorMaps()
856 JSObject::ForceSetPrototype(generator_function_prototype, empty); in CreateIteratorMaps()
858 JSObject::AddProperty( in CreateIteratorMaps()
863 JSObject::AddProperty(isolate(), generator_function_prototype, in CreateIteratorMaps()
868 JSObject::AddProperty(isolate(), generator_object_prototype, in CreateIteratorMaps()
872 JSObject::AddProperty(isolate(), generator_object_prototype, in CreateIteratorMaps()
930 Handle<JSObject> async_iterator_prototype = in CreateAsyncIteratorMaps()
939 Handle<JSObject> async_from_sync_iterator_prototype = in CreateAsyncIteratorMaps()
951 JSObject::AddProperty( in CreateAsyncIteratorMaps()
957 JSObject::ForceSetPrototype(async_from_sync_iterator_prototype, in CreateAsyncIteratorMaps()
971 Handle<JSObject> async_generator_object_prototype = in CreateAsyncIteratorMaps()
973 Handle<JSObject> async_generator_function_prototype = in CreateAsyncIteratorMaps()
977 JSObject::ForceSetPrototype(async_generator_function_prototype, empty); in CreateAsyncIteratorMaps()
983 JSObject::AddProperty(isolate(), async_generator_function_prototype, in CreateAsyncIteratorMaps()
987 JSObject::AddProperty(isolate(), async_generator_object_prototype, in CreateAsyncIteratorMaps()
991 JSObject::AddProperty(isolate(), async_generator_function_prototype, in CreateAsyncIteratorMaps()
997 JSObject::ForceSetPrototype(async_generator_object_prototype, in CreateAsyncIteratorMaps()
1002 JSObject::AddProperty(isolate(), async_generator_object_prototype, in CreateAsyncIteratorMaps()
1053 Handle<JSObject> async_function_prototype = in CreateAsyncFunctionMaps()
1055 JSObject::ForceSetPrototype(async_function_prototype, empty); in CreateAsyncFunctionMaps()
1057 JSObject::AddProperty(isolate(), async_function_prototype, in CreateAsyncFunctionMaps()
1247 Handle<JSObject> prototype = in CreateNewGlobals()
1327 Handle<JSObject> global_object( in HookUpGlobalProxy()
1328 JSObject::cast(native_context()->global_object()), isolate()); in HookUpGlobalProxy()
1329 JSObject::ForceSetPrototype(global_proxy, global_object); in HookUpGlobalProxy()
1348 JSObject::AddProperty(isolate, function, in InstallWithIntrinsicDefaultProto()
1354 static void InstallError(Isolate* isolate, Handle<JSObject> global, in InstallError()
1359 isolate, global, name, JS_ERROR_TYPE, JSObject::kHeaderSize, 0, in InstallError()
1373 Handle<JSObject> prototype(JSObject::cast(error_fun->instance_prototype()), in InstallError()
1376 JSObject::AddProperty(isolate, prototype, factory->name_string(), name, in InstallError()
1378 JSObject::AddProperty(isolate, prototype, factory->message_string(), in InstallError()
1420 JS_OBJECT_TYPE, JSObject::kHeaderSize, 0, builtin_id, MUTABLE); in InstallMakeError()
1455 JSObject::AddProperty(isolate_, global_object, object_name, object_function, in InitializeGlobal()
1560 Handle<JSObject> global(native_context()->global_object(), isolate()); in InitializeGlobal()
1577 JSObject::AddProperty(isolate_, prototype, factory->constructor_string(), in InitializeGlobal()
1721 JSObject::AddProperty(isolate_, proto, factory->constructor_string(), in InitializeGlobal()
1785 Handle<JSObject> iterator_prototype( in InitializeGlobal()
1788 Handle<JSObject> array_iterator_prototype = in InitializeGlobal()
1790 JSObject::ForceSetPrototype(array_iterator_prototype, iterator_prototype); in InitializeGlobal()
1792 JSObject::AddProperty( in InitializeGlobal()
1831 JSObject::AddProperty(isolate_, prototype, factory->constructor_string(), in InitializeGlobal()
1863 JSObject::AddProperty(isolate_, global_object, in InitializeGlobal()
1870 JSObject::AddProperty(isolate_, global_object, in InitializeGlobal()
1884 JSObject::AddProperty( in InitializeGlobal()
1888 JSObject::AddProperty( in InitializeGlobal()
1892 JSObject::AddProperty( in InitializeGlobal()
1895 JSObject::AddProperty( in InitializeGlobal()
1900 JSObject::AddProperty( in InitializeGlobal()
1904 JSObject::AddProperty( in InitializeGlobal()
1909 JSObject::AddProperty( in InitializeGlobal()
1914 JSObject::AddProperty( in InitializeGlobal()
1919 JSObject::AddProperty( in InitializeGlobal()
1923 JSObject::AddProperty( in InitializeGlobal()
1926 JSObject::AddProperty( in InitializeGlobal()
1948 JSObject::AddProperty(isolate_, prototype, factory->constructor_string(), in InitializeGlobal()
2003 JSObject::AddProperty(isolate_, prototype, factory->constructor_string(), in InitializeGlobal()
2120 Handle<JSObject> iterator_prototype( in InitializeGlobal()
2123 Handle<JSObject> string_iterator_prototype = in InitializeGlobal()
2125 JSObject::ForceSetPrototype(string_iterator_prototype, iterator_prototype); in InitializeGlobal()
2127 JSObject::AddProperty( in InitializeGlobal()
2183 Handle<JSObject> prototype(JSObject::cast(symbol_fun->instance_prototype()), in InitializeGlobal()
2187 JSObject::AddProperty( in InitializeGlobal()
2201 JSObject::kHeaderSize, 0, MaybeHandle<JSObject>(), in InitializeGlobal()
2230 Handle<JSObject> prototype(JSObject::cast(date_fun->instance_prototype()), in InitializeGlobal()
2333 JSObject::kHeaderSize, 0, MaybeHandle<JSObject>(), in InitializeGlobal()
2378 Handle<JSObject> prototype( in InitializeGlobal()
2379 JSObject::cast(promise_fun->instance_prototype()), isolate()); in InitializeGlobal()
2383 JSObject::AddProperty( in InitializeGlobal()
2439 JSObject::MigrateSlowToFast(Handle<JSObject>::cast(promise_fun), 0, in InitializeGlobal()
2484 JSObject::MigrateSlowToFast(promise_fun, 0, "Bootstrapping"); in InitializeGlobal()
2503 Handle<JSObject> prototype( in InitializeGlobal()
2504 JSObject::cast(regexp_fun->instance_prototype()), isolate()); in InitializeGlobal()
2662 JSObject::MigrateSlowToFast(regexp_fun, 0, "Bootstrapping"); in InitializeGlobal()
2710 Handle<JSObject> dummy = factory->NewJSObject(isolate_->object_function()); in InitializeGlobal()
2728 Handle<JSObject> json_object = in InitializeGlobal()
2730 JSObject::AddProperty(isolate_, global, name, json_object, DONT_ENUM); in InitializeGlobal()
2735 JSObject::AddProperty( in InitializeGlobal()
2743 Handle<JSObject> math = in InitializeGlobal()
2745 JSObject::AddProperty(isolate_, global, name, math, DONT_ENUM); in InitializeGlobal()
2816 JSObject::AddProperty( in InitializeGlobal()
2828 Handle<JSObject> empty = factory->NewJSObject(isolate_->object_function()); in InitializeGlobal()
2831 Handle<JSObject> console = factory->NewJSObject(cons, TENURED); in InitializeGlobal()
2833 JSObject::AddProperty(isolate_, global, name, console, DONT_ENUM); in InitializeGlobal()
2878 JSObject::AddProperty( in InitializeGlobal()
2887 Handle<JSObject> intl = in InitializeGlobal()
2889 JSObject::AddProperty(isolate_, global, name, intl, DONT_ENUM); in InitializeGlobal()
2898 Handle<JSObject> prototype( in InitializeGlobal()
2899 JSObject::cast(date_time_format_constructor->prototype()), isolate_); in InitializeGlobal()
2902 JSObject::AddProperty( in InitializeGlobal()
2930 Handle<JSObject> prototype( in InitializeGlobal()
2931 JSObject::cast(number_format_constructor->prototype()), isolate_); in InitializeGlobal()
2934 JSObject::AddProperty( in InitializeGlobal()
2963 Handle<JSObject> prototype( in InitializeGlobal()
2964 JSObject::cast(collator_constructor->prototype()), isolate_); in InitializeGlobal()
2967 JSObject::AddProperty( in InitializeGlobal()
2992 Handle<JSObject> prototype( in InitializeGlobal()
2993 JSObject::cast(v8_break_iterator_constructor->prototype()), isolate_); in InitializeGlobal()
2996 JSObject::AddProperty( in InitializeGlobal()
3024 Handle<JSObject> prototype( in InitializeGlobal()
3025 JSObject::cast(plural_rules_constructor->prototype()), isolate_); in InitializeGlobal()
3028 JSObject::AddProperty( in InitializeGlobal()
3039 JSObject::AddProperty(isolate_, global, name, array_buffer_fun, DONT_ENUM); in InitializeGlobal()
3062 Handle<JSObject> atomics_object = in InitializeGlobal()
3110 Handle<JSObject> prototype( in InitializeGlobal()
3111 JSObject::cast(typed_array_fun->instance_prototype()), isolate()); in InitializeGlobal()
3143 JSObject::AddProperty(isolate_, prototype, factory->iterator_symbol(), in InitializeGlobal()
3210 Handle<JSObject> prototype( in InitializeGlobal()
3211 JSObject::cast(data_view_fun->instance_prototype()), isolate()); in InitializeGlobal()
3214 JSObject::AddProperty( in InitializeGlobal()
3277 Handle<JSObject> prototype(JSObject::cast(js_map_fun->instance_prototype()), in InitializeGlobal()
3281 JSObject::AddProperty( in InitializeGlobal()
3307 JSObject::AddProperty(isolate_, prototype, factory->iterator_symbol(), in InitializeGlobal()
3336 Handle<JSObject> prototype(JSObject::cast(js_set_fun->instance_prototype()), in InitializeGlobal()
3340 JSObject::AddProperty( in InitializeGlobal()
3368 JSObject::AddProperty(isolate_, prototype, factory->keys_string(), values, in InitializeGlobal()
3370 JSObject::AddProperty(isolate_, prototype, factory->iterator_symbol(), in InitializeGlobal()
3433 Handle<JSObject> prototype(JSObject::cast(cons->instance_prototype()), in InitializeGlobal()
3446 JSObject::AddProperty( in InitializeGlobal()
3466 Handle<JSObject> prototype(JSObject::cast(cons->instance_prototype()), in InitializeGlobal()
3477 JSObject::AddProperty( in InitializeGlobal()
3522 Handle<JSObject> reflect = in InitializeGlobal()
3524 JSObject::AddProperty(isolate_, global, reflect_string, reflect, DONT_ENUM); in InitializeGlobal()
3698 JS_CONTEXT_EXTENSION_OBJECT_TYPE, JSObject::kHeaderSize, in InitializeGlobal()
3722 Handle<JSObject> global = in InstallTypedArray()
3723 Handle<JSObject>(native_context()->global_object(), isolate()); in InstallTypedArray()
3725 Handle<JSObject> typed_array_prototype = isolate()->typed_array_prototype(); in InstallTypedArray()
3737 CHECK(JSObject::SetPrototype(result, typed_array_function, false, kDontThrow) in InstallTypedArray()
3747 Handle<JSObject> prototype(JSObject::cast(result->prototype()), isolate()); in InstallTypedArray()
3749 CHECK(JSObject::SetPrototype(prototype, typed_array_prototype, false, in InstallTypedArray()
3853 Handle<JSObject> utils = in CallUtilsFunction()
3854 Handle<JSObject>::cast(isolate->natives_utils_object()); in CallUtilsFunction()
3857 Handle<Object> fun = JSObject::GetDataProperty(utils, name_string); in CallUtilsFunction()
3911 static Handle<JSObject> ResolveBuiltinIdHolder(Isolate* isolate, in ResolveBuiltinIdHolder()
3918 return Handle<JSObject>::cast( in ResolveBuiltinIdHolder()
3929 Handle<JSObject> object = Handle<JSObject>::cast( in ResolveBuiltinIdHolder()
3934 return Handle<JSObject>(JSObject::cast(function->prototype()), isolate); in ResolveBuiltinIdHolder()
3940 return Handle<JSObject>::cast(value); in ResolveBuiltinIdHolder()
3960 Handle<JSObject> global = isolate()->global_object(); in ConfigureUtilsObject()
3961 JSObject::AddProperty(isolate(), global, natives_key, utils, DONT_ENUM); in ConfigureUtilsObject()
3974 Handle<JSObject> container) { in ExportFromRuntime()
3980 JSObject::AddProperty(isolate, container, NAME##_name, factory->NAME(), NONE); in ExportFromRuntime()
3986 JSObject::AddProperty(isolate, container, NAME##_name, factory->NAME(), NONE); in ExportFromRuntime()
3991 Handle<JSObject> iterator_prototype( in ExportFromRuntime()
3994 JSObject::AddProperty(isolate, container, in ExportFromRuntime()
4000 Handle<JSObject> generator_function_prototype(iter.GetCurrent<JSObject>(), in ExportFromRuntime()
4003 JSObject::AddProperty( in ExportFromRuntime()
4020 JSObject::ForceSetPrototype(generator_function_function, in ExportFromRuntime()
4022 JSObject::AddProperty( in ExportFromRuntime()
4034 Handle<JSObject> async_generator_function_prototype( in ExportFromRuntime()
4035 iter.GetCurrent<JSObject>(), isolate); in ExportFromRuntime()
4049 JSObject::ForceSetPrototype(async_generator_function_function, in ExportFromRuntime()
4052 JSObject::AddProperty( in ExportFromRuntime()
4065 Handle<JSObject> prototype = in ExportFromRuntime()
4067 JSObject::ForceSetPrototype(prototype, iterator_prototype); in ExportFromRuntime()
4070 JSObject::AddProperty( in ExportFromRuntime()
4100 Handle<JSObject> prototype = in ExportFromRuntime()
4102 JSObject::ForceSetPrototype(prototype, iterator_prototype); in ExportFromRuntime()
4105 JSObject::AddProperty( in ExportFromRuntime()
4139 Handle<JSObject> async_function_prototype(iter.GetCurrent<JSObject>(), in ExportFromRuntime()
4151 JSObject::ForceSetPrototype(async_function_constructor, in ExportFromRuntime()
4154 JSObject::AddProperty( in ExportFromRuntime()
4213 isolate, container, "CallSite", JS_OBJECT_TYPE, JSObject::kHeaderSize, in ExportFromRuntime()
4220 Handle<JSObject> prototype( in ExportFromRuntime()
4221 JSObject::cast(callsite_fun->instance_prototype()), isolate); in ExportFromRuntime()
4282 JSObject::AddProperty(isolate_, global, factory->globalThis_string(), in EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE()
4294 JSObject::AddProperty(isolate_, global, name, in InitializeGlobal_harmony_sharedarraybuffer()
4300 JSObject::AddProperty(isolate_, global, name, isolate()->atomics_object(), in InitializeGlobal_harmony_sharedarraybuffer()
4302 JSObject::AddProperty( in InitializeGlobal_harmony_sharedarraybuffer()
4314 Handle<JSObject> string_prototype( in InitializeGlobal_harmony_string_trimming()
4322 JSObject::GetProperty(isolate_, string_prototype, trim_left_name) in InitializeGlobal_harmony_string_trimming()
4324 JSObject::AddProperty(isolate_, string_prototype, trim_start_name, in InitializeGlobal_harmony_string_trimming()
4334 JSObject::GetProperty(isolate_, string_prototype, trim_right_name) in InitializeGlobal_harmony_string_trimming()
4336 JSObject::AddProperty(isolate_, string_prototype, trim_end_name, in InitializeGlobal_harmony_string_trimming()
4346 Handle<JSObject> array_prototype( in InitializeGlobal_harmony_array_prototype_values()
4347 JSObject::cast(array_constructor->instance_prototype()), isolate()); in InitializeGlobal_harmony_array_prototype_values()
4349 JSObject::GetProperty(isolate(), array_prototype, in InitializeGlobal_harmony_array_prototype_values()
4353 JSObject::AddProperty(isolate(), array_prototype, factory()->values_string(), in InitializeGlobal_harmony_array_prototype_values()
4357 JSObject::GetProperty(isolate(), array_prototype, in InitializeGlobal_harmony_array_prototype_values()
4361 JSObject::AddProperty(isolate(), Handle<JSObject>::cast(unscopables), in InitializeGlobal_harmony_array_prototype_values()
4370 Handle<JSObject> array_prototype( in InitializeGlobal_harmony_array_flat()
4371 JSObject::cast(array_constructor->instance_prototype()), isolate()); in InitializeGlobal_harmony_array_flat()
4383 Handle<JSObject> symbol_prototype( in InitializeGlobal_harmony_symbol_description()
4384 JSObject::cast(symbol_fun->instance_prototype()), isolate()); in InitializeGlobal_harmony_symbol_description()
4396 Handle<JSObject> string_prototype( in InitializeGlobal_harmony_string_matchall()
4397 JSObject::cast(string_fun->instance_prototype()), isolate()); in InitializeGlobal_harmony_string_matchall()
4406 Handle<JSObject> regexp_prototype( in InitializeGlobal_harmony_string_matchall()
4407 JSObject::cast(regexp_fun->instance_prototype()), isolate()); in InitializeGlobal_harmony_string_matchall()
4417 Handle<JSObject> iterator_prototype( in InitializeGlobal_harmony_string_matchall()
4420 Handle<JSObject> regexp_string_iterator_prototype = in InitializeGlobal_harmony_string_matchall()
4422 JSObject::ForceSetPrototype(regexp_string_iterator_prototype, in InitializeGlobal_harmony_string_matchall()
4425 JSObject::AddProperty( in InitializeGlobal_harmony_string_matchall()
4457 CHECK(JSObject::DeleteProperty( in InitializeGlobal_harmony_bigint()
4460 CHECK(JSObject::DeleteProperty( in InitializeGlobal_harmony_bigint()
4485 Handle<JSObject> prototype(JSObject::cast(bigint_fun->instance_prototype()), in InitializeGlobal_harmony_bigint()
4501 JSObject::AddProperty(isolate(), prototype, factory->to_string_tag_symbol(), in InitializeGlobal_harmony_bigint()
4508 Handle<JSObject> dataview_prototype( in InitializeGlobal_harmony_bigint()
4509 JSObject::cast(native_context()->data_view_fun()->instance_prototype()), in InitializeGlobal_harmony_bigint()
4536 Handle<JSObject> async_iterator_prototype = in InitializeGlobal_harmony_await_optimization()
4543 Handle<JSObject> async_from_sync_iterator_prototype = in InitializeGlobal_harmony_await_optimization()
4555 JSObject::AddProperty( in InitializeGlobal_harmony_await_optimization()
4561 JSObject::ForceSetPrototype(async_from_sync_iterator_prototype, in InitializeGlobal_harmony_await_optimization()
4575 Handle<JSObject> intl = Handle<JSObject>::cast( in InitializeGlobal_harmony_intl_list_format()
4590 Handle<JSObject> prototype( in InitializeGlobal_harmony_intl_list_format()
4591 JSObject::cast(list_format_fun->instance_prototype()), isolate()); in InitializeGlobal_harmony_intl_list_format()
4594 JSObject::AddProperty(isolate(), prototype, factory()->to_string_tag_symbol(), in InitializeGlobal_harmony_intl_list_format()
4610 Handle<JSObject> intl = Handle<JSObject>::cast( in InitializeGlobal_harmony_locale()
4626 Handle<JSObject> prototype(JSObject::cast(locale_fun->instance_prototype()), in InitializeGlobal_harmony_locale()
4630 JSObject::AddProperty(isolate(), prototype, factory()->to_string_tag_symbol(), in InitializeGlobal_harmony_locale()
4676 Handle<JSObject> intl = Handle<JSObject>::cast( in InitializeGlobal_harmony_intl_relative_time_format()
4691 Handle<JSObject> prototype( in InitializeGlobal_harmony_intl_relative_time_format()
4692 JSObject::cast(relative_time_format_fun->instance_prototype()), in InitializeGlobal_harmony_intl_relative_time_format()
4696 JSObject::AddProperty( in InitializeGlobal_harmony_intl_relative_time_format()
4717 Handle<JSObject> prototype = in CreateArrayBuffer()
4719 JSObject::AddProperty(isolate(), prototype, factory()->to_string_tag_symbol(), in CreateArrayBuffer()
4732 JSObject::AddProperty(isolate(), prototype, factory()->constructor_string(), in CreateArrayBuffer()
4768 Handle<JSFunction> Genesis::InstallInternalArray(Handle<JSObject> target, in InstallInternalArray()
4777 Handle<JSObject> prototype = in InstallInternalArray()
4810 Handle<JSObject> utils = factory()->NewJSObject(isolate()->object_function()); in InstallNatives()
4811 JSObject::NormalizeProperties(utils, CLEAR_INOBJECT_PROPERTIES, 16, in InstallNatives()
4817 Handle<JSObject> extras_utils = in InstallNatives()
4859 Handle<JSObject> prototype = in InstallNatives()
4874 Handle<JSObject> utils = in InstallNatives()
4875 Handle<JSObject>::cast(isolate()->natives_utils_object()); in InstallNatives()
4902 DCHECK(JSObject::cast(object_function->initial_map()->prototype()) in InstallNatives()
4912 JSObject* string_function_prototype = in InstallNatives()
4913 JSObject::cast(string_function->initial_map()->prototype()); in InstallNatives()
4990 Handle<JSObject> proto(JSObject::cast(array_constructor->prototype()), in InstallNatives()
5097 Handle<JSObject> array_prototype( in InstallNatives()
5098 JSObject::cast(array_constructor->instance_prototype()), isolate()); in InstallNatives()
5200 Handle<JSObject> extras_binding = in InstallExtraNatives()
5240 static void InstallBuiltinFunctionId(Isolate* isolate, Handle<JSObject> holder, in InstallBuiltinFunctionId()
5264 Handle<JSObject> holder = ResolveBuiltinIdHolder( in InstallBuiltinFunctionIds()
5294 Handle<JSObject> Error = isolate->error_function(); in InstallSpecialObjects()
5297 JSObject::AddProperty(isolate, Error, name, stack_trace_limit, NONE); in InstallSpecialObjects()
5440 Handle<JSObject> global_proxy( in ConfigureGlobalObjects()
5441 JSObject::cast(native_context()->global_proxy()), isolate()); in ConfigureGlobalObjects()
5442 Handle<JSObject> global_object( in ConfigureGlobalObjects()
5443 JSObject::cast(native_context()->global_object()), isolate()); in ConfigureGlobalObjects()
5463 JSObject::ForceSetPrototype(global_proxy, global_object); in ConfigureGlobalObjects()
5478 JSObject::MigrateSlowToFast(js_map_fun, 0, "Bootstrapping"); in ConfigureGlobalObjects()
5479 JSObject::MigrateSlowToFast(js_set_fun, 0, "Bootstrapping"); in ConfigureGlobalObjects()
5488 bool Genesis::ConfigureApiObject(Handle<JSObject> object, in ConfigureApiObject()
5494 MaybeHandle<JSObject> maybe_obj = in ConfigureApiObject()
5496 Handle<JSObject> obj; in ConfigureApiObject()
5507 void Genesis::TransferNamedProperties(Handle<JSObject> from, in TransferNamedProperties()
5508 Handle<JSObject> to) { in TransferNamedProperties()
5525 JSObject::FastPropertyAt(from, details.representation(), index); in TransferNamedProperties()
5526 JSObject::AddProperty(isolate(), to, key, value, in TransferNamedProperties()
5540 JSObject::AddProperty(isolate(), to, key, value, in TransferNamedProperties()
5556 JSObject::SetNormalizedProperty(to, key, value, d); in TransferNamedProperties()
5580 JSObject::AddProperty(isolate(), to, key, value, details.attributes()); in TransferNamedProperties()
5607 JSObject::AddProperty(isolate(), to, key, value, details.attributes()); in TransferNamedProperties()
5613 void Genesis::TransferIndexedProperties(Handle<JSObject> from, in TransferIndexedProperties()
5614 Handle<JSObject> to) { in TransferIndexedProperties()
5623 void Genesis::TransferObject(Handle<JSObject> from, Handle<JSObject> to) { in TransferObject()
5634 JSObject::ForceSetPrototype(to, proto); in TransferObject()
5750 JSObject* string_function_prototype = in Genesis()
5751 JSObject::cast(string_function->initial_map()->prototype()); in Genesis()
5806 Handle<JSObject> global_object = in Genesis()
5823 JSObject::ForceSetPrototype(global_proxy, global_object); in Genesis()