/external/v8/test/cctest/ |
D | test-api.h | 18 CHECK((*o)->IsTheHole() || (*o)->IsUndefined()); in CheckReturnValue() 20 bool is_runtime = (*o)->IsTheHole(); in CheckReturnValue() 22 CHECK(!(*o)->IsTheHole() && !(*o)->IsUndefined()); in CheckReturnValue() 24 CHECK((*o)->IsTheHole() || (*o)->IsUndefined()); in CheckReturnValue() 25 CHECK_EQ(is_runtime, (*o)->IsTheHole()); in CheckReturnValue()
|
D | test-dictionary.cc | 213 CHECK(table->Lookup(key)->IsTheHole()); in TestHashMapCausesGC()
|
/external/v8/src/debug/ |
D | debug-frames.cc | 116 DCHECK(!value->IsTheHole()); in MaterializeStackLocals() 127 if (value->IsTheHole()) value = isolate_->factory()->undefined_value(); in MaterializeStackLocals() 157 DCHECK(!frame_->GetParameter(i)->IsTheHole()); in UpdateStackLocalsFromMaterializedObject() 167 if (frame_->GetExpression(index)->IsTheHole()) continue; in UpdateStackLocalsFromMaterializedObject()
|
D | debug-scopes.cc | 791 if (value->IsTheHole()) continue; in CopyContextLocalsToScopeObject()
|
/external/v8/src/runtime/ |
D | runtime-scopes.cc | 108 bool is_const = initial_value->IsTheHole(); in RUNTIME_FUNCTION() 220 bool is_const = initial_value->IsTheHole(); in DeclareLookupSlot() 340 DCHECK(!value->IsTheHole()); in RUNTIME_FUNCTION() 363 if (context->get(index)->IsTheHole()) context->set(index, *value); in RUNTIME_FUNCTION() 1042 if (value->IsTheHole()) { in LoadLookupSlotHelper() 1052 DCHECK(!value->IsTheHole()); in LoadLookupSlotHelper() 1055 if (value->IsTheHole()) { in LoadLookupSlotHelper()
|
D | runtime-collections.cc | 294 return lookup->IsTheHole() ? isolate->heap()->undefined_value() : *lookup; in RUNTIME_FUNCTION() 309 return isolate->heap()->ToBoolean(!lookup->IsTheHole()); in RUNTIME_FUNCTION()
|
D | runtime-classes.cc | 92 if (super_class->IsTheHole()) { in DefineClass() 146 if (!super_class->IsTheHole()) { in DefineClass()
|
D | runtime-i18n.cc | 299 if (impl->IsTheHole()) { in RUNTIME_FUNCTION()
|
/external/v8/src/ |
D | isolate-inl.h | 42 return !thread_local_top_.pending_exception_->IsTheHole(); in has_pending_exception()
|
D | elements.cc | 186 DCHECK(!value->IsTheHole()); in CopyDictionaryToObjectElements() 348 DCHECK(!smi->IsTheHole()); in CopyPackedSmiToDoubleElements() 903 DCHECK(!value->IsTheHole()); in AddElementsToKeyAccumulator() 1101 return !index->IsTheHole(); in HasEntryImpl() 1491 if (IsHoleyElementsKind(KindTraits::Kind) && result->IsTheHole()) { in RemoveElement() 1896 DCHECK(!context->get(context_entry)->IsTheHole()); in GetImpl() 1910 DCHECK(!context->get(context_entry)->IsTheHole()); in GetImpl() 1930 DCHECK(!context->get(context_entry)->IsTheHole()); in SetImpl() 1939 DCHECK(!context->get(context_entry)->IsTheHole()); in SetImpl() 1966 return !GetParameterMapArg(parameter_map, entry)->IsTheHole(); in HasEntryImpl() [all …]
|
D | arguments.cc | 20 if ((*handle)->IsTheHole()) return v8::Local<V>(); in GetReturnValue()
|
D | contexts-inl.h | 59 bool Context::has_extension() { return !extension()->IsTheHole(); } in has_extension()
|
D | lookup.cc | 251 DCHECK(cell->value()->IsTheHole()); in PrepareTransitionToDataProperty() 674 if (cell->value()->IsTheHole()) return NOT_FOUND; in LookupInHolder()
|
D | isolate.cc | 1238 DCHECK(message->IsJSMessageObject() || message->IsTheHole()); in RestorePendingMessageFromTryCatch() 1480 if (!message_obj->IsTheHole() && should_report_exception) { in ReportPendingMessages() 1497 !thread_local_top_.pending_message_obj_->IsTheHole()) { in GetMessageLocation() 2065 thread_local_top_.pending_message_obj_->IsTheHole()); in PropagatePendingExceptionToExternalTryCatch() 2070 if (thread_local_top_.pending_message_obj_->IsTheHole()) return true; in PropagatePendingExceptionToExternalTryCatch()
|
D | contexts.cc | 86 if (object->IsTheHole()) return nullptr; in extension_object()
|
D | objects.cc | 2264 } else if (IsTheHole()) { in HeapObjectShortPrint() 2704 int argc = name.is_null() ? 2 : old_value->IsTheHole() ? 3 : 4; in EnqueueChangeRecord() 5354 DCHECK(!value->IsTheHole()); in SetOwnPropertyIgnoreAttributes() 5830 if (!value->IsTheHole()) { in CopyFastElementsToDictionary() 7423 if (!element->IsTheHole() && element == object) return true; in ReferencesObjectFromElements() 7488 if (!value->IsTheHole() && value == obj) return true; in ReferencesObject() 8160 value->IsTheHole() || in StructureWalk() 9960 if (!current->IsTheHole()) { in TransitionToAccessorProperty() 10927 return accessor->IsTheHole() ? GetHeap()->undefined_value() : accessor; in GetComponent() 15154 if (old_values[i]->IsTheHole()) continue; in ObservableSetLength() [all …]
|
D | accessors.cc | 1408 if (value->IsTheHole()) { in ModuleGetExport() 1439 if (old_value->IsTheHole()) { in ModuleSetExport()
|
D | builtins.cc | 717 if (!element->IsTheHole()) { in SetDictionaryMode() 776 if (!elements->get(i)->IsTheHole()) element_count++; in EstimateElementCount() 887 if (!elements->get(i)->IsTheHole()) { in CollectElementIndices() 1038 if (!element_value->IsTheHole()) { in IterateElements() 1315 if (element->IsTheHole()) { in Slow_ArrayConcat()
|
D | api.h | 284 DCHECK(obj.is_null() || !obj->IsTheHole()); in OPEN_HANDLE_LIST()
|
/external/v8/src/compiler/ |
D | js-context-specialization.cc | 73 if (value->IsUndefined() || value->IsTheHole()) { in ReduceJSLoadContext()
|
D | js-graph.cc | 99 } else if (value->IsTheHole()) { in Constant()
|
/external/v8/src/ast/ |
D | ast-value-factory.h | 172 bool IsTheHole() const { return type_ == THE_HOLE; } in IsTheHole() function
|
D | ast.cc | 508 if (boilerplate_value->IsTheHole()) { in BuildConstantElements()
|
/external/v8/test/unittests/interpreter/ |
D | constant-array-builder-unittest.cc | 97 CHECK(builder.At(index)->IsTheHole()); in TEST_F()
|
/external/v8/src/parsing/ |
D | pattern-rewriter.cc | 477 if (!(value->IsLiteral() && value->AsLiteral()->raw_value()->IsTheHole())) { in VisitArrayLiteral()
|