/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtins.c | 93 is_extensible, \ 103 is_extensible, \ 121 is_extensible, \ 123 (is_extensible != 0 || builtin_id == ECMA_BUILTIN_ID_TYPE_ERROR_THROWER) && 131 is_extensible, \ 133 (is_extensible != 0 || builtin_id == ECMA_BUILTIN_ID_TYPE_ERROR_THROWER) && 158 is_extensible, \ 168 is_extensible, \ 187 is_extensible, \ 206 is_extensible, \ [all...] |
H A D | ecma-builtins-internal.h | 86 is_extensible, \ 104 is_extensible, \
|
H A D | ecma-builtins.h | 31 is_extensible, \ 41 is_extensible, \
|
H A D | ecma-builtin-object.c | 591 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/ |
H A D | map-updater.cc | 304 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() [all...] |
H A D | lookup-inl.h | 210 return !receiver->map(isolate_).is_extensible() && in ExtendingNonExtensible()
|
H A D | js-objects.cc | 3479 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...] |
H A D | map.h | 175 // | | - is_extensible (bit 28) | 401 DECL_BOOLEAN_ACCESSORS(is_extensible)
|
H A D | map-inl.h | 109 BIT_FIELD_ACCESSORS2(Map, relaxed_bit_field3, bit_field3, is_extensible,
|
H A D | objects.cc | 1381 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()
|
H A D | map.cc | 2108 first.is_extensible() == second.is_extensible() && in CheckEquivalent()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-objects-general.h | 45 bool is_extensible);
|
H A D | ecma-objects-general.c | 651 bool is_extensible) /**< true - if target object is extensible in ecma_op_is_compatible_property_descriptor() 659 return is_extensible; in ecma_op_is_compatible_property_descriptor() 649 ecma_op_is_compatible_property_descriptor(const ecma_property_descriptor_t *desc_p, const ecma_property_descriptor_t *current_p, bool is_extensible) ecma_op_is_compatible_property_descriptor() argument
|
H A D | ecma-proxy-object.c | 802 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/ |
H A D | builtins-array.cc | 109 if (!array->map().is_extensible()) return false; in EnsureJSArrayWithWritableFastElements() 621 DCHECK(array->map().is_extensible()); in BUILTIN()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | heap-refs.cc | 807 return SupportsFastArrayIteration(broker, map) && map->is_extensible() && in SupportsFastArrayResize()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-debug.cc | 1225 CHECK(!struct_map.is_extensible()); in JSSharedStructVerify()
|
H A D | objects-printer.cc | 2599 if (!is_extensible()) os << "\n - non-extensible"; in MapPrint()
|