Home
last modified time | relevance | path

Searched refs:IsNullOrUndefined (Results 1 – 25 of 29) sorted by relevance

12

/external/v8/src/builtins/
Dbuiltins-utils.h112 if (args.receiver()->IsNullOrUndefined(isolate)) { \
Dbuiltins-trace.cc141 if (!id_arg->IsNullOrUndefined(isolate)) { in BUILTIN()
Dbuiltins-object.cc239 if (object->IsNullOrUndefined(isolate)) { in BUILTIN()
284 if (object->IsNullOrUndefined(isolate)) { in BUILTIN()
Darray-foreach.tq141 if (IsNullOrUndefined(receiver)) {
Dbuiltins-conversion-gen.cc36 GotoIf(IsNullOrUndefined(exotic_to_prim), &ordinary_to_primitive); in Generate_NonPrimitiveToPrimitive()
Dbuiltins-string-gen.cc1087 Branch(IsNullOrUndefined(value), &throw_exception, &out); in RequireObjectCoercible()
1149 GotoIf(IsNullOrUndefined(object), &out); in MaybeCallFunctionAtSymbol()
1585 GotoIf(IsNullOrUndefined(maybe_regexp), in TF_BUILTIN()
Dbuiltins-intl.cc731 if (options->IsNullOrUndefined(isolate)) { in CreateLocale()
Dbuiltins-array.cc44 } else if (object->IsNullOrUndefined(isolate)) { in ClampedToInteger()
Dbuiltins-collections-gen.cc177 GotoIf(IsNullOrUndefined(initial_entries), &exit); in AddConstructorEntries()
296 CSA_ASSERT(this, Word32BinaryNot(IsNullOrUndefined(iterable))); in AddConstructorEntriesFromIterable()
Dbase.tq201 extern macro IsNullOrUndefined(Object): bool;
Dbuiltins-object-gen.cc406 GotoIf(IsNullOrUndefined(receiver), &if_null_or_undefined); in TF_BUILTIN()
Dbuiltins-array-gen.cc435 GotoIf(IsNullOrUndefined(receiver()), &throw_null_undefined_exception); in GenerateIteratingArrayBuiltinBody()
2060 Branch(IsNullOrUndefined(iterator_method), &not_iterable, &iterable); in TF_BUILTIN()
/external/v8/src/
Dobjects-inl.h186 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 …]
Dmessages.cc376 if (receiver_->IsNullOrUndefined(isolate_)) { in GetMethodName()
431 if (receiver_->IsNullOrUndefined(isolate_)) { in GetTypeName()
467 return receiver_->IsJSGlobalProxy() || receiver_->IsNullOrUndefined(isolate_); in IsToplevel()
Dstring-stream.cc426 if (receiver->IsNullOrUndefined(isolate) || receiver->IsTheHole(isolate) || in PrintPrototype()
Dobjects.h1119 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;
Dobjects.cc192 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/
Dstring-util.cc56 if (value.IsEmpty() || value->IsNullOrUndefined()) return String16(); in toProtocolString()
/external/v8/src/runtime/
Druntime-object.cc24 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()
Druntime-debug.cc547 if (!opt_line->IsNullOrUndefined(isolate)) { in ScriptLocationFromLine()
553 if (!opt_column->IsNullOrUndefined(isolate)) { in ScriptLocationFromLine()
Druntime-strings.cc156 if (receiver->IsNullOrUndefined(isolate)) { in RUNTIME_FUNCTION()
/external/v8/src/ic/
Dic.cc287 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()
Daccessor-assembler.cc3446 GotoIf(IsNullOrUndefined(source), &allocate_object); in GenerateCloneObjectIC()
3481 ReturnIf(IsNullOrUndefined(source), object); in GenerateCloneObjectIC()
/external/v8/src/compiler/
Dnode-properties.cc613 return value->IsNullOrUndefined(isolate); in CanBeNullOrUndefined()
/external/v8/include/
Dv8.h2253 V8_INLINE bool IsNullOrUndefined() const;
10215 bool Value::IsNullOrUndefined() const {

12