Searched refs:is_the_hole (Results 1 - 11 of 11) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
H A D | fixed-array-inl.h | 82 bool FixedArray::is_the_hole(Isolate* isolate, int index) { in is_the_hole() function in v8::internal::FixedArray 365 DCHECK(!is_the_hole(index)); in get_scalar() 380 if (array.is_the_hole(index)) { in get() 397 DCHECK(!is_the_hole(index)); in set() 412 bool FixedDoubleArray::is_the_hole(Isolate* isolate, int index) { in is_the_hole() function in v8::internal::FixedDoubleArray 413 return is_the_hole(index); in is_the_hole() 416 bool FixedDoubleArray::is_the_hole(int index) { in is_the_hole() function in v8::internal::FixedDoubleArray
|
H A D | fixed-array.h | 134 inline bool is_the_hole(Isolate* isolate, int index); 256 inline bool is_the_hole(Isolate* isolate, int index); 257 inline bool is_the_hole(int index);
|
H A D | elements.cc | 1350 .is_the_hole(isolate, static_cast<int>(index)) in GetEntryForIndexImpl() 1919 if (BackingStore::cast(*store).is_the_hole(isolate, i)) continue; in NormalizeImpl() 1941 if (!backing_store->is_the_hole(isolate, entry - 1)) break; in DeleteAtEnd() 2005 if (!backing_store->is_the_hole(isolate, i)) break; in DeleteCommon() 2014 if (!backing_store->is_the_hole(isolate, i)) { in DeleteCommon() 2082 .is_the_hole(isolate, entry.as_int()); in HasEntryImpl() 2143 backing_store.is_the_hole(isolate, i))); in ValidateContents() 2148 DCHECK(!backing_store.is_the_hole(isolate, i)); in ValidateContents() 2286 if (elements.is_the_hole(static_cast<int>(k))) return Just(true); in IncludesValueImpl() 2322 if (elements.is_the_hole(static_cas in IncludesValueImpl() [all...] |
H A D | js-objects-inl.h | 229 if (double_array->is_the_hole(i)) { in EnsureCanContainElements()
|
H A D | js-objects.cc | 4501 if (!elements.is_the_hole(isolate, i)) return true; in HasEnumerableElements() 4514 if (!elements.is_the_hole(i)) return true; in HasEnumerableElements() 5298 if (!store.is_the_hole(isolate, i)) ++used; in HoleyElementsUsage()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-array.cc | 878 if (!elements.is_the_hole(i)) element_count++; in EstimateElementCount() 951 if (!elements->is_the_hole(i)) { in CollectElementIndices() 1159 if (!elements->is_the_hole(j)) { in IterateElements() 1344 if (elements.is_the_hole(k)) { in Slow_ArrayConcat()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-wasm-objects.cc | 112 if (!maps->is_the_hole(isolate, id)) { in GetOrCreateDebugProxyMap() 524 if (!proxies->is_the_hole(isolate, Proxy::kId)) { in GetOrCreateInstanceProxy() function 800 if (maps->is_the_hole(isolate, kWasmValueMapIndex)) { in New()
|
/third_party/node/deps/v8/src/ic/ |
H A D | accessor-assembler.cc | 860 Label is_the_hole(this, Label::kDeferred); in HandleLoadICSmiHandlerLoadNamedCase() 861 GotoIf(IsTheHole(value), &is_the_hole); in HandleLoadICSmiHandlerLoadNamedCase() local 864 BIND(&is_the_hole); in HandleLoadICSmiHandlerLoadNamedCase()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-debug.cc | 631 if (!is_the_hole(i)) { in FixedDoubleArrayVerify()
|
H A D | objects-printer.cc | 359 return array.is_the_hole(index); in IsTheHoleAt()
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 6658 while (last >= 0 && list.is_the_hole(isolate, last)) last--; in GetSerializedDataFromFixedArray()
|
Completed in 60 milliseconds