Home
last modified time | relevance | path

Searched refs:maybe_constructor (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Dglobal-handles.cc887 Object* maybe_constructor = js_object->map()->GetConstructor(); in PrintConstructor() local
888 if (maybe_constructor->IsJSFunction()) { in PrintConstructor()
889 JSFunction* constructor = JSFunction::cast(maybe_constructor); in PrintConstructor()
894 } else if (maybe_constructor->IsNull(isolate_)) { in PrintConstructor()
Dobjects.cc2718 Object* maybe_constructor = map()->GetConstructor(); in class_name() local
2719 if (maybe_constructor->IsJSFunction()) { in class_name()
2720 JSFunction* constructor = JSFunction::cast(maybe_constructor); in class_name()
2738 Object* maybe_constructor = receiver->map()->GetConstructor(); in GetConstructorName() local
2739 if (maybe_constructor->IsJSFunction()) { in GetConstructorName()
2740 JSFunction* constructor = JSFunction::cast(maybe_constructor); in GetConstructorName()
2759 Handle<Object> maybe_constructor = JSReceiver::GetDataProperty(&it); in GetConstructorName() local
2761 if (maybe_constructor->IsJSFunction()) { in GetConstructorName()
2762 JSFunction* constructor = JSFunction::cast(*maybe_constructor); in GetConstructorName()
11970 Object* maybe_constructor = object->map()->GetConstructor(); in OptimizeAsPrototype() local
[all …]
Dobjects-inl.h5454 Object* maybe_constructor = constructor_or_backpointer(); in ACCESSORS() local
5456 while (maybe_constructor->IsMap()) { in ACCESSORS()
5457 maybe_constructor = in ACCESSORS()
5458 Map::cast(maybe_constructor)->constructor_or_backpointer(); in ACCESSORS()
5460 return maybe_constructor; in ACCESSORS()