Lines Matching refs:maybe_constructor
560 Handle<Object> maybe_constructor(receiver->map().GetConstructor(), isolate);
561 if (maybe_constructor->IsJSFunction()) {
563 Handle<JSFunction>::cast(maybe_constructor);
601 auto maybe_constructor = JSReceiver::GetDataProperty(
603 if (maybe_constructor->IsJSFunction()) {
604 auto constructor = Handle<JSFunction>::cast(maybe_constructor);
2279 Object maybe_constructor = map().GetConstructor();
2280 if (!maybe_constructor.IsJSFunction()) return false;
2281 if (!JSFunction::cast(maybe_constructor).shared().IsApiFunction()) {
2284 Object instance_template = JSFunction::cast(maybe_constructor)
2926 Object maybe_constructor = js_object.map().GetConstructor();
2927 if (!maybe_constructor.IsJSFunction()) return false;
2928 JSFunction constructor = JSFunction::cast(maybe_constructor);
4747 Object maybe_constructor = new_map->GetConstructor();
4748 if (maybe_constructor.IsJSFunction()) {
4749 JSFunction constructor = JSFunction::cast(maybe_constructor);