Lines Matching refs:result
408 Handle<JSObject> result;
412 .ToHandle(&result)) {
413 return isolate->factory()->CopyJSObject(result);
445 isolate, result, ConfigureInstance(isolate, object, info), JSObject);
452 JSObject::MigrateSlowToFast(result, 0, "ApiNatives::InstantiateObject");
456 CachingMode::kLimited, result);
457 result = isolate->factory()->CopyJSObject(result);
461 return result;
492 Handle<JSObject> result;
495 .ToHandle(&result)) {
496 return Handle<JSFunction>::cast(result);
547 MaybeHandle<JSObject> result = ConfigureInstance(isolate, function, data);
548 if (result.is_null()) {
687 Handle<JSFunction> result =
692 DCHECK(result->shared().IsApiFunction());
693 DCHECK(!result->IsConstructor());
694 DCHECK(!result->has_prototype_slot());
695 return result;
700 DCHECK(result->has_prototype_slot());
703 result->set_map(*isolate->sloppy_function_with_readonly_prototype_map());
707 prototype = isolate->factory()->NewFunctionPrototype(result);
710 isolate->factory()->constructor_string(), result,
765 JSFunction::SetInitialMap(isolate, result, map,
767 return result;