Home
last modified time | relevance | path

Searched refs:is_extensible (Results 1 – 19 of 19) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtins.c93 is_extensible, \ argument
103 is_extensible, \ argument
121 is_extensible, \ argument
123 (is_extensible != 0 || builtin_id == ECMA_BUILTIN_ID_TYPE_ERROR_THROWER) &&
131 is_extensible, \ argument
133 (is_extensible != 0 || builtin_id == ECMA_BUILTIN_ID_TYPE_ERROR_THROWER) &&
158 is_extensible, \ argument
168 is_extensible, \ argument
187 is_extensible, \ argument
206 is_extensible, \ argument
[all …]
Decma-builtins-internal.h86 is_extensible, \ argument
104 is_extensible, \ argument
Decma-builtins.h31 is_extensible, \ argument
41 is_extensible, \ argument
Decma-builtin-object.c591 bool is_extensible; in ecma_builtin_object_test_integrity_level() local
602 is_extensible = ecma_is_value_true (status); in ecma_builtin_object_test_integrity_level()
607 is_extensible = ecma_op_ordinary_object_is_extensible (obj_p); in ecma_builtin_object_test_integrity_level()
612 if (is_extensible) in ecma_builtin_object_test_integrity_level()
/third_party/node/deps/v8/src/objects/
Dmap-updater.cc304 DCHECK(!map.is_extensible()); in DetectIntegrityLevelTransitions()
322 while (!source_map.is_extensible()) { in DetectIntegrityLevelTransitions()
363 if (root_map.is_extensible() != old_map.is_extensible()) { in TryUpdateNoLock()
364 DCHECK(!old_map.is_extensible()); in TryUpdateNoLock()
365 DCHECK(root_map.is_extensible()); in TryUpdateNoLock()
535 while (!integrity_source_map_->is_extensible()) { in TrySaveIntegrityLevelTransitions()
574 } else if (old_map_->is_extensible() != root_map_->is_extensible()) { in FindRootMap()
575 DCHECK(!old_map_->is_extensible()); in FindRootMap()
576 DCHECK(root_map_->is_extensible()); in FindRootMap()
Dmap.tq32 is_extensible: bool: 1 bit;
Dlookup-inl.h210 return !receiver->map(isolate_).is_extensible() && in ExtendingNonExtensible()
Djs-objects.cc3479 DCHECK(object->map().is_extensible() || name->IsPrivate()); in AddProperty()
4090 return !object.map().is_extensible() && in FastTestIntegrityLevel()
4122 if (!object->map().is_extensible()) return Just(true); in PreventExtensions()
4157 DCHECK(!object->map().is_extensible()); in PreventExtensions()
4172 return iter.GetCurrent<JSObject>().map().is_extensible(); in IsExtensible()
4174 return object->map().is_extensible(); in IsExtensible()
4247 if (attrs == NONE && !object->map().is_extensible()) { in PreventExtensionsWithTransition()
4330 DCHECK(!transition_map->is_extensible()); in PreventExtensionsWithTransition()
4999 bool all_extensible = object->map().is_extensible(); in SetPrototype()
5011 all_extensible = all_extensible && real_receiver->map().is_extensible(); in SetPrototype()
[all …]
Dmap.h401 DECL_BOOLEAN_ACCESSORS(is_extensible)
Dmap-inl.h109 BIT_FIELD_ACCESSORS2(Map, relaxed_bit_field3, bit_field3, is_extensible, in RELEASE_ACQUIRE_ACCESSORS()
Dmap.cc2108 first.is_extensible() == second.is_extensible() && in CheckEquivalent()
Dobjects.cc1381 Maybe<bool> is_extensible = JSReceiver::IsExtensible(target); in GetPrototype() local
1382 MAYBE_RETURN(is_extensible, MaybeHandle<HeapObject>()); in GetPrototype()
1384 if (is_extensible.FromJust()) return Handle<HeapObject>::cast(handler_proto); in GetPrototype()
5217 Maybe<bool> is_extensible = JSReceiver::IsExtensible(target); in SetPrototype() local
5218 if (is_extensible.IsNothing()) return Nothing<bool>(); in SetPrototype()
5220 if (is_extensible.FromJust()) { in SetPrototype()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-general.h45 bool is_extensible);
Decma-objects-general.c651 … bool is_extensible) /**< true - if target object is extensible in ecma_op_is_compatible_property_descriptor() argument
659 return is_extensible; in ecma_op_is_compatible_property_descriptor()
Decma-proxy-object.c802 bool is_extensible = ecma_is_value_true (extensible_target); in ecma_proxy_object_get_own_property_descriptor() local
806 is_extensible); in ecma_proxy_object_get_own_property_descriptor()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-array.cc109 if (!array->map().is_extensible()) return false; in EnsureJSArrayWithWritableFastElements()
621 DCHECK(array->map().is_extensible()); in BUILTIN()
/third_party/node/deps/v8/src/compiler/
Dheap-refs.cc807 return SupportsFastArrayIteration(broker, map) && map->is_extensible() && in SupportsFastArrayResize()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc1225 CHECK(!struct_map.is_extensible()); in USE_TORQUE_VERIFIER()
Dobjects-printer.cc2599 if (!is_extensible()) os << "\n - non-extensible"; in MapPrint()