Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-interpreter.cc20 if (result.IsJust()) { in RUNTIME_FUNCTION()
34 if (result.IsJust()) { in RUNTIME_FUNCTION()
48 if (result.IsJust()) { in RUNTIME_FUNCTION()
62 if (result.IsJust()) { in RUNTIME_FUNCTION()
76 if (result.IsJust()) { in RUNTIME_FUNCTION()
90 if (result.IsJust()) { in RUNTIME_FUNCTION()
Druntime-forin.cc35 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
60 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
Druntime-object.cc217 if (!maybe.IsJust()) return MaybeHandle<Object>(); in GetOwnProperty()
478 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
507 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
601 if (!maybe.IsJust()) return isolate->heap()->exception(); in HasOwnPropertyImplementation()
648 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
670 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
699 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
713 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
1167 if (!result.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
1192 if (result.IsJust()) { in RUNTIME_FUNCTION()
[all …]
Druntime-scopes.cc49 if (!maybe.IsJust()) return isolate->heap()->exception(); in DeclareGlobals()
181 DCHECK(maybe.IsJust()); in RUNTIME_FUNCTION()
393 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
765 if (!maybe.IsJust()) return isolate->heap()->exception(); in FindNameClash()
/external/v8/src/ic/
Dic-state.cc42 right_kind_ = fixed_right_arg_.IsJust() in BinaryOpICState()
55 HasFixedRightArgField::encode(fixed_right_arg_.IsJust()); in GetExtraICState()
56 if (fixed_right_arg_.IsJust()) { in GetExtraICState()
213 if (s.fixed_right_arg_.IsJust()) { in operator <<()
236 (result_kind_ == NONE || !fixed_right_arg_.IsJust()); in Update()
/external/v8/src/
Di18n.cc429 CHECK(maybe.IsJust()); in SetResolvedNumberSettings()
439 CHECK(maybe.IsJust()); in SetResolvedNumberSettings()
759 CHECK(maybe.IsJust()); in UnpackDateFormat()
839 CHECK(maybe.IsJust()); in UnpackNumberFormat()
900 CHECK(maybe.IsJust()); in UnpackCollator()
965 CHECK(maybe.IsJust()); in UnpackBreakIterator()
Dcontexts.cc153 if (!found.IsJust() || !found.FromJust()) return found; in UnscopableLookup()
300 if (!maybe.IsJust()) return Handle<Object>(); in Lookup()
Dproperty-descriptor.cc108 CHECK(result.IsJust() && result.FromJust()); in CreateDataProperty()
Dapi-natives.cc81 DCHECK(maybe.IsJust()); in DefineDataProperty()
Dbuiltins.cc973 if (!maybe.IsJust()) return false; in IterateElementsSlow()
1042 if (!maybe.IsJust()) return false; in IterateElements()
1078 if (!maybe.IsJust()) return false; in IterateElements()
1888 return result.IsJust() ? *isolate->factory()->ToBoolean(result.FromJust()) in BUILTIN()
3190 if (!target_has_length.IsJust()) { in BUILTIN()
Dobjects.cc756 if (!result.IsJust()) return Nothing<bool>(); in HasProperty()
764 if (!result.IsJust()) return Nothing<bool>(); in HasProperty()
1358 if (result.IsJust() && result.FromJust() != ABSENT) return result; in GetPropertyAttributesWithFailedAccessCheck()
4098 if (!maybe_attributes.IsJust()) return Nothing<bool>(); in SetPropertyInternal()
5196 DCHECK(maybe.IsJust()); in AddProperty()
5203 .IsJust()); in AddProperty()
5460 if (!result.IsJust()) return result; in GetPropertyAttributes()
6083 DCHECK(maybe.IsJust()); in HasHiddenProperties()
6267 if (result.IsJust()) return result; in DeleteProperty()
6432 if (!maybe.IsJust()) return MaybeHandle<Object>(); in DefineProperties()
[all …]
Dobjects-inl.h6981 if (result.IsJust()) { in GreaterThan()
6999 if (result.IsJust()) { in GreaterThanOrEqual()
7017 if (result.IsJust()) { in LessThan()
7035 if (result.IsJust()) { in LessThanOrEqual()
Dapi.cc1615 if (has.IsJust() && !has.FromJust()) { in BindToCurrentContext()
2216 has_pending_exception = !maybe.IsJust(); in StackTrace()
/external/v8/test/cctest/
Dtest-api-accessors.cc69 .IsJust()); in TEST()
/external/v8/src/debug/
Ddebug-scopes.cc660 DCHECK(maybe.IsJust()); in SetLocalVariableValue()
699 DCHECK(maybe.IsJust()); in SetBlockVariableValue()
732 DCHECK(maybe.IsJust()); in SetClosureVariableValue()
Ddebug-evaluate.cc301 DCHECK(maybe.IsJust()); in MaterializeArgumentsObject()
/external/v8/src/compiler/
Dbranch-elimination.cc59 if (condition_value.IsJust()) { in ReduceBranch()
/external/v8/src/crankshaft/
Dhydrogen-representation-changes.cc32 if (res.IsJust()) new_value = res.FromJust(); in InsertRepresentationChangeForUse()
Dhydrogen.cc10857 if (number.IsJust()) { in TruncateToNumber()
11161 if (fixed_right_arg.IsJust() && in BuildBinaryOperation()
/external/v8/include/
Dv8.h6470 V8_INLINE bool IsJust() const { return has_value; } in IsJust() function
6474 if (V8_UNLIKELY(!IsJust())) V8::FromJustIsNothing(); in FromJust()
6483 return (IsJust() == other.IsJust()) &&
6484 (!IsJust() || FromJust() == other.FromJust());
/external/v8/src/ast/
Dast.h2213 has_fixed_right_arg_ = arg.IsJust(); in set_fixed_right_arg()
2214 if (arg.IsJust()) fixed_right_arg_value_ = arg.FromJust(); in set_fixed_right_arg()