Lines Matching refs:result
260 // This class resolves the result of WebAssembly.compile. It just places the
261 // compilation result in the supplied {promise}.
274 void OnCompilationSucceeded(i::Handle<i::WasmModuleObject> result) override {
278 i::JSPromise::Resolve(promise_, result);
301 // This class resolves the result of WebAssembly.instantiate(module, imports).
302 // It just places the instantiation result in the supplied {promise}.
340 // This class resolves the result of WebAssembly.instantiate(bytes, imports).
365 // The result is a JSObject with 2 fields which contain the
367 i::Handle<i::JSObject> result =
376 i::JSObject::AddProperty(isolate_, result, instance_name, instance,
378 i::JSObject::AddProperty(isolate_, result, module_name, module_, i::NONE);
381 i::JSPromise::Resolve(promise_, result);
406 // {AsyncInstantiate} is started on the compilation result.
434 void OnCompilationSucceeded(i::Handle<i::WasmModuleObject> result) override {
440 result),
441 result, maybe_imports_);
625 // We do not have any use of the result here. The {compile_callback} will
627 // set as result value.
676 Maybe<bool> result = i::JSObject::SetPrototype(
679 if (!result.FromJust()) {
933 // We do not have any use of the result here. The {compile_callback} will
935 // set as result value.
1024 i::Handle<i::String> property_name, int64_t* result,
1043 *result = static_cast<int64_t>(number);
1051 int64_t* result, int64_t lower_bound,
1069 result, lower_bound, upper_bound);
1078 Local<v8::Object> object, int64_t* result,
1083 result, lower_bound, upper_bound)) {
1105 *result = minimum;
1306 Maybe<bool> result =
1308 if (!result.FromJust()) {
1862 "Argument 0 result type at index #%u must be a value type", i);
1900 i::Handle<i::JSFunction> result = i::WasmJSFunction::New(
1902 args.GetReturnValue().Set(Utils::ToLocal(result));
2048 i::Handle<i::Object> result =
2050 if (result->IsWasmInternalFunction()) {
2051 result =
2052 handle(i::Handle<i::WasmInternalFunction>::cast(result)->external(),
2057 return_value.Set(Utils::ToLocal(result));
2167 Maybe<bool> result =
2169 if (!result.FromJust()) {
2304 Local<Value> result;
2310 result = v8::Integer::New(isolate, i32);
2317 result = v8::BigInt::New(isolate, i64);
2324 result = v8::Number::New(isolate, f32);
2331 result = v8::Number::New(isolate, f64);
2344 result = Utils::ToLocal(i::Handle<i::Object>(obj, i_isolate));
2362 args.GetReturnValue().Set(result);
2424 i::Handle<i::Object> result = receiver->GetRef();
2425 if (result->IsWasmInternalFunction()) {
2426 result = handle(
2427 i::Handle<i::WasmInternalFunction>::cast(result)->external(),
2430 return_value.Set(Utils::ToLocal(result));
2592 i::Handle<i::JSFunction> result =
2598 result->shared().function_data(kAcquireLoad));
2600 args.GetReturnValue().Set(Utils::ToLocal(result));
2635 i::Handle<i::JSFunction> result =
2637 args.GetReturnValue().Set(Utils::ToLocal(result));
3030 Maybe<bool> result = JSObject::DefineOwnPropertyIgnoreAttributes(
3034 USE(result);