Home
last modified time | relevance | path

Searched refs:IsJust (Results 1 – 25 of 32) sorted by relevance

12

/external/v8/src/runtime/
Druntime-operators.cc117 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
127 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
153 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
163 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
173 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
183 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
Druntime-object.cc202 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
355 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
381 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
485 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
679 .IsJust()); in RUNTIME_FUNCTION()
918 if (result.IsJust()) { in RUNTIME_FUNCTION()
Druntime-wasm.cc117 DCHECK(data_set.IsJust() && data_set.FromJust() == true); in ThrowRuntimeError()
Druntime-scopes.cc72 if (!maybe.IsJust()) return isolate->heap()->exception(); in DeclareGlobal()
688 if (!maybe.IsJust()) return isolate->heap()->exception(); in FindNameClash()
/external/v8/src/ic/
Dic-state.cc39 right_kind_ = fixed_right_arg_.IsJust() in BinaryOpICState()
52 HasFixedRightArgField::encode(fixed_right_arg_.IsJust()); in GetExtraICState()
53 if (fixed_right_arg_.IsJust()) { in GetExtraICState()
69 if (fixed_right_arg_.IsJust()) { in ToString()
225 if (s.fixed_right_arg_.IsJust()) { in operator <<()
248 (result_kind_ == NONE || !fixed_right_arg_.IsJust()); in Update()
/external/v8/src/
Daddress-map.cc26 if (maybe_index.IsJust()) { in RootIndexMap()
Daddress-map.h55 return maybe_index.IsJust() ? maybe_index.FromJust() : kInvalidRootIndex; in Lookup()
198 return maybe_index.IsJust() ? SerializerReference(maybe_index.FromJust()) in Lookup()
Dproperty-descriptor.cc117 CHECK(result.IsJust() && result.FromJust()); in CreateDataProperty()
Dcontexts.cc175 if (!found.IsJust() || !found.FromJust()) return found; in UnscopableLookup()
293 if (!maybe.IsJust()) return Handle<Object>(); in Lookup()
Di18n.cc429 CHECK(maybe.IsJust()); in SetResolvedNumberSettings()
439 CHECK(maybe.IsJust()); in SetResolvedNumberSettings()
Dapi-natives.cc103 DCHECK(maybe.IsJust()); in DefineDataProperty()
Dobjects.cc1867 if (result.IsJust() && result.FromJust() != ABSENT) return result; in GetPropertyAttributesWithFailedAccessCheck()
1909 if (result.IsJust()) return result; in SetPropertyWithFailedAccessCheck()
4273 if (!maybe_attributes.IsJust()) return Nothing<bool>(); in SetPropertyInternal()
5353 DCHECK(maybe.IsJust()); in AddProperty()
5359 .IsJust()); in AddProperty()
5506 if (!result.IsJust()) return result; in GetPropertyAttributes()
5861 .IsJust()); in GetOrCreateIdentityHash()
5991 if (result.IsJust()) return result; in DeleteProperty()
6116 if (!maybe.IsJust()) return MaybeHandle<Object>(); in DefineProperties()
6146 if (!status.IsJust()) return MaybeHandle<Object>(); in DefineProperties()
[all …]
/external/v8/src/snapshot/
Dstartup-serializer.h41 if (maybe_index.IsJust()) { in LookupOrInsert()
Dserializer-common.cc29 DCHECK(map_->Get(addr).IsJust()); in ExternalReferenceEncoder()
/external/v8/src/compiler/
Dbranch-elimination.cc64 if (condition_value.IsJust()) { in ReduceBranch()
101 if (condition_value.IsJust()) { in ReduceDeoptimizeConditional()
/external/v8/src/builtins/
Dbuiltins-error.cc74 if (!status.IsJust()) return isolate->heap()->exception(); in BUILTIN()
Dbuiltins-reflect.cc161 return result.IsJust() ? *isolate->factory()->ToBoolean(result.FromJust()) in BUILTIN()
Dbuiltins-function.cc221 if (!attributes.IsJust()) return isolate->heap()->exception(); in DoFunctionBind()
Dbuiltins-array.cc1181 if (!maybe.IsJust()) return false; in IterateElementsSlow()
1244 if (!maybe.IsJust()) return false; in IterateElements()
1279 if (!maybe.IsJust()) return false; in IterateElements()
Dbuiltins-object.cc120 if (!maybe.IsJust()) return isolate->heap()->exception(); in BUILTIN()
/external/v8/src/crankshaft/
Dhydrogen-representation-changes.cc35 if (res.IsJust()) new_value = res.FromJust(); in InsertRepresentationChangeForUse()
/external/v8/src/inspector/
Dv8-value-copier.cc145 if (!hasRealNamedProperty.IsJust() || !hasRealNamedProperty.FromJust()) in toProtocolValue()
/external/v8/src/debug/
Ddebug-evaluate.cc233 DCHECK(maybe.IsJust()); in MaterializeArgumentsObject()
Ddebug-scopes.cc671 DCHECK(maybe.IsJust()); in SetContextVariableValue()
/external/v8/include/
Dv8.h7821 V8_INLINE bool IsJust() const { return has_value_; } in IsJust() function
7827 if (V8_LIKELY(IsJust())) *out = value_; in To()
7828 return IsJust(); in To()
7833 if (V8_UNLIKELY(!IsJust())) V8::FromJustIsNothing(); in FromJust()
7842 return (IsJust() == other.IsJust()) &&
7843 (!IsJust() || FromJust() == other.FromJust());

12