Home
last modified time | relevance | path

Searched refs:maybe_result (Results 1 - 25 of 29) sorted by relevance

12

/third_party/skia/third_party/externals/spirv-tools/source/reduce/
H A Dreducer.cpp189 auto maybe_result = in RunPasses() local
191 if (maybe_result.empty()) { in RunPasses()
206 if (!tools.Validate(&maybe_result[0], maybe_result.size(), in RunPasses()
216 *current_binary = std::move(maybe_result); in RunPasses()
219 } else if (interestingness_function_(maybe_result, in RunPasses()
225 *current_binary = std::move(maybe_result); in RunPasses()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/
H A Dreducer.cpp189 auto maybe_result = in RunPasses() local
191 if (maybe_result.empty()) { in RunPasses()
206 if (!tools.Validate(&maybe_result[0], maybe_result.size(), in RunPasses()
216 *current_binary = std::move(maybe_result); in RunPasses()
219 } else if (interestingness_function_(maybe_result, in RunPasses()
225 *current_binary = std::move(maybe_result); in RunPasses()
/third_party/spirv-tools/source/reduce/
H A Dreducer.cpp189 auto maybe_result = in RunPasses() local
191 if (maybe_result.empty()) { in RunPasses()
206 if (!tools.Validate(&maybe_result[0], maybe_result.size(), in RunPasses()
216 *current_binary = std::move(maybe_result); in RunPasses()
219 } else if (interestingness_function_(maybe_result, in RunPasses()
225 *current_binary = std::move(maybe_result); in RunPasses()
/third_party/node/deps/v8/src/runtime/
H A Druntime-bigint.cc42 Maybe<ComparisonResult> maybe_result = in RUNTIME_FUNCTION() local
44 MAYBE_RETURN(maybe_result, ReadOnlyRoots(isolate).exception()); in RUNTIME_FUNCTION()
46 maybe_result.FromJust()); in RUNTIME_FUNCTION()
73 Maybe<bool> maybe_result = BigInt::EqualToString(isolate, lhs, rhs); in RUNTIME_FUNCTION() local
74 MAYBE_RETURN(maybe_result, ReadOnlyRoots(isolate).exception()); in RUNTIME_FUNCTION()
75 return *isolate->factory()->ToBoolean(maybe_result.FromJust()); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.cc1701 MaybeHandle<SharedFunctionInfo> maybe_result; in Run() local
1716 maybe_result = shared_info; in Run()
1720 if (maybe_result.is_null()) { in Run()
1724 outer_function_sfi_ = isolate->heap()->NewPersistentMaybeHandle(maybe_result); in Run()
1737 MaybeHandle<SharedFunctionInfo> maybe_result; in FinalizeScript() local
1745 maybe_result = outer_function_sfi_; in FinalizeScript()
1768 if (!maybe_result.ToHandle(&result)) { in FinalizeScript()
1785 MaybeHandle<SharedFunctionInfo> maybe_result; in FinalizeFunction() local
1801 maybe_result = outer_function_sfi_; in FinalizeFunction()
1807 if (!maybe_result in FinalizeFunction()
2939 MaybeHandle<SharedFunctionInfo> maybe_result = Compile() local
3017 MaybeHandle<SharedFunctionInfo> maybe_result; Compile() local
3171 MaybeHandle<SharedFunctionInfo> maybe_result; Compile() local
3260 MaybeHandle<SharedFunctionInfo> maybe_result; Compile() local
[all...]
/third_party/node/deps/v8/src/snapshot/
H A Dcontext-deserializer.cc23 MaybeHandle<Object> maybe_result = in DeserializeContext() local
27 return maybe_result.ToHandle(&result) ? Handle<Context>::cast(result) in DeserializeContext()
H A Dcode-serializer.cc449 MaybeHandle<SharedFunctionInfo> maybe_result = in Deserialize() local
453 if (!maybe_result.ToHandle(&result)) { in Deserialize()
491 result.maybe_result = in StartDeserializeOffThread()
520 DCHECK_IMPLIES(!data.maybe_result.is_null(), in FinishOffThreadDeserialize()
536 if (!data.maybe_result.ToHandle(&result)) { in FinishOffThreadDeserialize()
H A Dcode-serializer.h67 MaybeHandle<SharedFunctionInfo> maybe_result; member
H A Dsnapshot.cc210 MaybeHandle<Context> maybe_result = ContextDeserializer::DeserializeContext( in NewContextFromSnapshot() local
215 if (!maybe_result.ToHandle(&result)) return MaybeHandle<Context>(); in NewContextFromSnapshot()
/third_party/node/deps/v8/src/compiler/
H A Dsimplified-operator-reducer.cc68 base::Optional<bool> maybe_result = in Reduce() local
70 if (maybe_result.has_value()) return ReplaceInt32(*maybe_result); in Reduce()
H A Dcommon-operator-reducer.cc83 base::Optional<bool> maybe_result = m.Ref(broker_).TryGetBooleanValue(); in DecideCondition() local
84 if (!maybe_result.has_value()) return Decision::kUnknown; in DecideCondition()
85 return *maybe_result ? Decision::kTrue : Decision::kFalse; in DecideCondition()
H A Dheap-refs.cc1075 base::Optional<Map> maybe_result = Map::TryAsElementsKind( in AsElementsKind()
1090 if (!maybe_result.has_value()) { in AsElementsKind()
1094 return MakeRefAssumeMemoryFence(broker(), maybe_result.value()); in AsElementsKind()
/third_party/node/deps/v8/src/execution/
H A Dmicrotask-queue.cc161 MaybeHandle<Object> maybe_result; in RunMicrotasks() local
173 maybe_result = Execution::TryRunMicrotasks(isolate, this, in RunMicrotasks()
183 if (maybe_result.is_null() && maybe_exception.is_null()) { in RunMicrotasks()
H A Dexecution.cc470 MaybeHandle<Object> maybe_result; in InvokeWithTryCatch() local
486 maybe_result = Invoke(isolate, params); in InvokeWithTryCatch()
488 if (maybe_result.is_null()) { in InvokeWithTryCatch()
511 return maybe_result; in InvokeWithTryCatch()
H A Dframes.cc1373 Object maybe_result(Memory<Address>(fp() + offset)); in context()
1374 DCHECK(!maybe_result.IsSmi()); in context()
1375 return maybe_result; in context()
/third_party/node/deps/v8/src/objects/
H A Djs-display-names.cc604 Maybe<icu::UnicodeString> maybe_result = in Of() local
606 MAYBE_RETURN(maybe_result, Handle<Object>()); in Of()
607 icu::UnicodeString result = maybe_result.FromJust(); in Of()
H A Djs-temporal-objects.cc1123 Maybe<DateTimeRecordCommon> maybe_result = GetISOPartsFromEpoch( in BuiltinTimeZoneGetPlainDateTimeFor() local
1125 MAYBE_RETURN(maybe_result, Handle<JSTemporalPlainDateTime>()); in BuiltinTimeZoneGetPlainDateTimeFor()
1132 DateTimeRecordCommon result = maybe_result.FromJust(); in BuiltinTimeZoneGetPlainDateTimeFor()
1878 Maybe<DateRecord> maybe_result = ParseTemporalDateString(isolate, string); in ToTemporalDate() local
1879 MAYBE_RETURN(maybe_result, MaybeHandle<JSTemporalPlainDate>()); in ToTemporalDate()
1880 DateRecord result = maybe_result.FromJust(); in ToTemporalDate()
2042 Maybe<TimeRecord> maybe_result = ParseTemporalTimeString(isolate, string); in ToTemporalTime() local
2043 MAYBE_RETURN(maybe_result, MaybeHandle<JSTemporalPlainTime>()); in ToTemporalTime()
2044 result = maybe_result.FromJust(); in ToTemporalTime()
2391 Maybe<DateTimeRecord> maybe_result in ParseTemporalDateString() local
2428 Maybe<DateTimeRecord> maybe_result = ParseTemporalTimeString() local
2458 Maybe<DateTimeRecord> maybe_result = ParseTemporalInstantString() local
2509 Maybe<InstantRecord> maybe_result = ParseTemporalInstant() local
2673 Maybe<TimeZoneRecord> maybe_result = ParseTemporalTimeZone() local
3656 Maybe<bool> maybe_result = BalanceDuration() local
5431 Maybe<bool> maybe_result = ISODateFromFields( DateFromFields() local
[all...]
H A Dbigint.cc432 MaybeHandle<BigInt> maybe_result = in Exponentiate() local
434 if (!maybe_result.ToHandle(&running_square)) return maybe_result; in Exponentiate()
439 maybe_result = Multiply(isolate, result, running_square); in Exponentiate()
440 if (!maybe_result.ToHandle(&result)) return maybe_result; in Exponentiate()
H A Dintl-objects.cc1430 base::Optional<int> maybe_result = TryFastCompareStrings( in CompareStrings() local
1432 if (maybe_result.has_value()) return maybe_result.value(); in CompareStrings()
/third_party/node/deps/v8/src/debug/
H A Ddebug-evaluate.cc126 MaybeHandle<Object> maybe_result = in Local() local
129 if (!maybe_result.is_null()) context_builder.UpdateValues(); in Local()
130 return maybe_result; in Local()
172 MaybeHandle<Object> maybe_result = in WithTopmostArguments() local
175 return maybe_result; in WithTopmostArguments()
H A Ddebug.cc699 MaybeHandle<Object> maybe_result; in CheckBreakPoint() local
703 maybe_result = DebugEvaluate::WithTopmostArguments(isolate_, condition); in CheckBreakPoint()
709 maybe_result = in CheckBreakPoint()
714 if (!maybe_result.ToHandle(&result)) { in CheckBreakPoint()
1650 const MaybeHandle<SharedFunctionInfo> maybe_result = in CompileTopLevel() local
1653 if (maybe_result.is_null()) { in CompileTopLevel()
/third_party/node/deps/v8/src/regexp/arm64/
H A Dregexp-macro-assembler-arm64.cc1587 Register maybe_result) { in GetRegister()
1588 DCHECK(maybe_result.Is32Bits()); in GetRegister()
1597 __ Ldr(maybe_result, register_location(register_index)); in GetRegister()
1598 result = maybe_result; in GetRegister()
1604 __ Lsr(maybe_result.X(), GetCachedRegister(register_index), in GetRegister()
1606 result = maybe_result; in GetRegister()
1586 GetRegister(int register_index, Register maybe_result) GetRegister() argument
H A Dregexp-macro-assembler-arm64.h259 // result. Otherwise, it will load the value into maybe_result.
261 // If the returned register is anything other than maybe_result, calling code
263 inline Register GetRegister(int register_index, Register maybe_result);
/third_party/node/deps/v8/src/d8/
H A Dd8.cc733 MaybeLocal<Value> maybe_result; in ExecuteString() local
773 maybe_result = script->Run(realm); in ExecuteString()
821 if (!maybe_result.ToLocal(&result)) { in ExecuteString()
1329 MaybeLocal<Value> maybe_result; in DoHostImportModuleDynamically() local
1332 maybe_result = root_module->Evaluate(realm); in DoHostImportModuleDynamically()
1333 CHECK(!maybe_result.IsEmpty()); in DoHostImportModuleDynamically()
1338 if (!maybe_result.ToLocal(&result)) { in DoHostImportModuleDynamically()
1391 MaybeLocal<Value> maybe_result; in ExecuteModule() local
1394 maybe_result = root_module->Evaluate(realm); in ExecuteModule()
1395 CHECK(!maybe_result in ExecuteModule()
[all...]
/third_party/node/deps/v8/src/parsing/
H A Dparser.cc798 base::Optional<VariableProxy*> maybe_result = in ParseREPLProgram()
801 (maybe_result && *maybe_result) in ParseREPLProgram()
802 ? static_cast<Expression*>(*maybe_result) in ParseREPLProgram()

Completed in 59 milliseconds

12