/external/v8/src/builtins/ |
D | builtins-utils.h | 112 if (args.receiver()->IsNullOrUndefined(isolate)) { \
|
D | builtins-trace.cc | 141 if (!id_arg->IsNullOrUndefined(isolate)) { in BUILTIN()
|
D | builtins-object.cc | 239 if (object->IsNullOrUndefined(isolate)) { in BUILTIN() 284 if (object->IsNullOrUndefined(isolate)) { in BUILTIN()
|
D | array-foreach.tq | 141 if (IsNullOrUndefined(receiver)) {
|
D | builtins-conversion-gen.cc | 36 GotoIf(IsNullOrUndefined(exotic_to_prim), &ordinary_to_primitive); in Generate_NonPrimitiveToPrimitive()
|
D | builtins-string-gen.cc | 1087 Branch(IsNullOrUndefined(value), &throw_exception, &out); in RequireObjectCoercible() 1149 GotoIf(IsNullOrUndefined(object), &out); in MaybeCallFunctionAtSymbol() 1585 GotoIf(IsNullOrUndefined(maybe_regexp), in TF_BUILTIN()
|
D | builtins-intl.cc | 731 if (options->IsNullOrUndefined(isolate)) { in CreateLocale()
|
D | builtins-array.cc | 44 } else if (object->IsNullOrUndefined(isolate)) { in ClampedToInteger()
|
D | builtins-collections-gen.cc | 177 GotoIf(IsNullOrUndefined(initial_entries), &exit); in AddConstructorEntries() 296 CSA_ASSERT(this, Word32BinaryNot(IsNullOrUndefined(iterable))); in AddConstructorEntriesFromIterable()
|
D | base.tq | 201 extern macro IsNullOrUndefined(Object): bool;
|
D | builtins-object-gen.cc | 406 GotoIf(IsNullOrUndefined(receiver), &if_null_or_undefined); in TF_BUILTIN()
|
D | builtins-array-gen.cc | 435 GotoIf(IsNullOrUndefined(receiver()), &throw_null_undefined_exception); in GenerateIteratingArrayBuiltinBody() 2060 Branch(IsNullOrUndefined(iterator_method), ¬_iterable, &iterable); in TF_BUILTIN()
|
/external/v8/src/ |
D | objects-inl.h | 186 bool Object::IsNullOrUndefined(Isolate* isolate) const { in ODDBALL_LIST() 187 return IsNullOrUndefined(ReadOnlyRoots(isolate)); in ODDBALL_LIST() 190 bool Object::IsNullOrUndefined(ReadOnlyRoots roots) const { in IsNullOrUndefined() function 194 bool Object::IsNullOrUndefined() const { in IsNullOrUndefined() function 195 return IsHeapObject() && HeapObject::cast(this)->IsNullOrUndefined(); in IsNullOrUndefined() 198 bool HeapObject::IsNullOrUndefined(Isolate* isolate) const { in IsNullOrUndefined() function 199 return Object::IsNullOrUndefined(isolate); in IsNullOrUndefined() 202 bool HeapObject::IsNullOrUndefined(ReadOnlyRoots roots) const { in IsNullOrUndefined() function 203 return Object::IsNullOrUndefined(roots); in IsNullOrUndefined() 206 bool HeapObject::IsNullOrUndefined() const { in IsNullOrUndefined() function [all …]
|
D | messages.cc | 376 if (receiver_->IsNullOrUndefined(isolate_)) { in GetMethodName() 431 if (receiver_->IsNullOrUndefined(isolate_)) { in GetTypeName() 467 return receiver_->IsJSGlobalProxy() || receiver_->IsNullOrUndefined(isolate_); in IsToplevel()
|
D | string-stream.cc | 426 if (receiver->IsNullOrUndefined(isolate) || receiver->IsTheHole(isolate) || in PrintPrototype()
|
D | objects.h | 1119 V8_INLINE bool IsNullOrUndefined(Isolate* isolate) const; 1120 V8_INLINE bool IsNullOrUndefined(ReadOnlyRoots roots) const; 1121 V8_INLINE bool IsNullOrUndefined() const; 1689 V8_INLINE bool IsNullOrUndefined(Isolate* isolate) const; 1690 V8_INLINE bool IsNullOrUndefined(ReadOnlyRoots roots) const; 1691 V8_INLINE bool IsNullOrUndefined() const;
|
D | objects.cc | 192 if (object->IsNullOrUndefined(isolate)) { in ConvertReceiver() 508 if (IsNullOrUndefined(isolate)) return false; in BooleanValue() 848 if (func->IsNullOrUndefined(isolate)) { in GetMethod() 2457 if (species->IsNullOrUndefined(isolate)) { in SpeciesConstructor() 11867 if (receiver->IsNullOrUndefined(isolate)) { in IndexOf() 12138 if (receiver->IsNullOrUndefined(isolate)) { in LastIndexOf()
|
/external/v8/src/inspector/ |
D | string-util.cc | 56 if (value.IsEmpty() || value->IsNullOrUndefined()) return String16(); in toProtocolString()
|
/external/v8/src/runtime/ |
D | runtime-object.cc | 24 if (object->IsNullOrUndefined(isolate)) { in GetObjectProperty() 378 } else if (object->IsNullOrUndefined(isolate)) { in RUNTIME_FUNCTION() 435 if (object->IsNullOrUndefined(isolate)) { in SetObjectProperty() 791 return obj->IsNullOrUndefined(isolate) || obj->IsCallable(); in IsValidAccessor()
|
D | runtime-debug.cc | 547 if (!opt_line->IsNullOrUndefined(isolate)) { in ScriptLocationFromLine() 553 if (!opt_column->IsNullOrUndefined(isolate)) { in ScriptLocationFromLine()
|
D | runtime-strings.cc | 156 if (receiver->IsNullOrUndefined(isolate)) { in RUNTIME_FUNCTION()
|
/external/v8/src/ic/ |
D | ic.cc | 287 if (receiver->IsNullOrUndefined(isolate())) return; in UpdateState() 425 if (object->IsNullOrUndefined(isolate())) { in Load() 1398 if (object->IsNullOrUndefined(isolate())) { in Store() 2478 SLOW_DCHECK(source->IsNullOrUndefined() || CanFastCloneObject(source_map)); in FastCloneObjectMap() 2503 if (source->IsNullOrUndefined() || !source_map->NumberOfOwnDescriptors()) { in FastCloneObjectMap() 2541 if (source->IsNullOrUndefined()) { in CloneObjectSlowPath()
|
D | accessor-assembler.cc | 3446 GotoIf(IsNullOrUndefined(source), &allocate_object); in GenerateCloneObjectIC() 3481 ReturnIf(IsNullOrUndefined(source), object); in GenerateCloneObjectIC()
|
/external/v8/src/compiler/ |
D | node-properties.cc | 613 return value->IsNullOrUndefined(isolate); in CanBeNullOrUndefined()
|
/external/v8/include/ |
D | v8.h | 2253 V8_INLINE bool IsNullOrUndefined() const; 10215 bool Value::IsNullOrUndefined() const {
|