Lines Matching refs:result

301       void* result =
304 if (reinterpret_cast<intptr_t>(result) == -1) {
402 Local<Value> result = JSON::Parse(context, source).ToLocalChecked();
403 Local<v8::Object> trace_config_object = result.As<v8::Object>();
643 MaybeLocal<T> result =
648 return result;
820 Local<Value> result;
821 if (!maybe_result.ToLocal(&result)) {
829 if (!result->IsUndefined()) {
830 // If all went well and the result wasn't undefined then print
832 v8::String::Utf8Value str(isolate, result);
837 v8::String::Utf8Value str(isolate, Stringify(isolate, result));
1137 Maybe<bool> result = module->SetSyntheticModuleExport(
1145 CHECK(!result.IsNothing() && result.FromJust());
1337 Local<Value> result;
1338 if (!maybe_result.ToLocal(&result)) {
1345 Local<Promise> result_promise(result.As<Promise>());
1347 // Setup callbacks, and then chain them to the result promise.
1398 Local<Value> result;
1399 if (!maybe_result.ToLocal(&result)) {
1406 Local<Promise> result_promise(result.As<Promise>());
1528 Local<Function> result = set_timeout_callbacks_.front().Get(isolate_);
1530 return result;
1535 Local<Context> result = set_timeout_contexts_.front().Get(isolate_);
1537 return result;
1673 // When FLAG_verify_predictable mode is enabled it returns result of
1903 // Realm.eval(i, s) evaluates s in realm i and returns the result.
1929 Local<Value> result;
1934 .ToLocal(&result)) {
1938 args.GetReturnValue().Set(result);
1958 // in the realm with the specified index and returns the result.
2081 Local<String> result =
2086 args.GetReturnValue().Set(result);
2912 MaybeLocal<Value> result = fun->Call(context, Undefined(isolate), 1, argv);
2913 if (result.IsEmpty()) return String::Empty(isolate);
2914 return result.ToLocalChecked().As<String>();
4190 std::unique_ptr<SerializationData> result;
4191 while (!out_queue_.Dequeue(&result)) {
4197 return result;
4245 MaybeLocal<Value> result = onmessage_fun->Call(context, global, 1, argv);
4246 USE(result);
5000 void* result = base::Realloc(old_buffer, size);
5001 *actual_size = result ? size : 0;
5002 return result;
5192 * should be between 0 and one less than the result from GetStressRuns()
5377 int result = 0;
5460 result = 0;
5489 for (int i = 0; i < options.stress_runs && result == 0; i++) {
5494 result = RunMain(isolate, last_run);
5500 for (int i = 0; i < options.stress_runs && result == 0; i++) {
5504 result = RunMain(isolate, last_run);
5529 result = RunMain(isolate2, false);
5545 result = RunMain(isolate, true);
5550 result = RunMain(isolate, last_run);
5582 // Send result to parent (fuzzilli) and reset edge guards.
5584 int status = result << 8;
5635 return result;