Home
last modified time | relevance | path

Searched refs:is_constructor (Results 1 – 25 of 26) sorted by relevance

12

/external/v8/src/ic/
Dic-stats.cc95 is_constructor(false), in ICInfo()
107 is_constructor = false; in Reset()
128 if (is_constructor) value->SetInteger("constructor", is_constructor); in AppendToTracedValue()
Dic-stats.h36 bool is_constructor; member
/external/libchrome/base/android/jni_generator/
Djni_generator.py117 self.is_constructor = kwargs.get('is_constructor', False)
118 self.env_call = GetEnvCall(self.is_constructor, self.static,
527 def GetEnvCall(is_constructor, is_static, return_type): argument
529 if is_constructor:
645 is_constructor = True
649 is_constructor = False
658 is_constructor=is_constructor,
740 is_constructor=True)]
1137 if called_by_native.static or called_by_native.is_constructor:
1178 if called_by_native.is_constructor:
/external/v8/src/debug/
Ddebug-frames.cc23 is_constructor_ = summary.is_constructor(); in FrameInspector()
/external/v8/src/
Dframes.cc1199 if (frame->IsConstructor()) ic_info.is_constructor = true; in CollectTopFrameForICStats()
1261 AbstractCode* abstract_code, int code_offset, bool is_constructor) in JavaScriptFrameSummary() argument
1267 is_constructor_(is_constructor) { in JavaScriptFrameSummary()
1437 FRAME_SUMMARY_DISPATCH(bool, is_constructor) in FRAME_SUMMARY_DISPATCH()
1473 bool is_constructor = IsConstructor(); in FRAME_SUMMARY_DISPATCH() local
1515 code_offset, is_constructor); in FRAME_SUMMARY_DISPATCH()
1517 is_constructor = false; in FRAME_SUMMARY_DISPATCH()
1520 DCHECK(!is_constructor); in FRAME_SUMMARY_DISPATCH()
1521 is_constructor = true; in FRAME_SUMMARY_DISPATCH()
Dframes.h509 int code_offset, bool is_constructor);
515 bool is_constructor() const { return is_constructor_; } in is_constructor() function
540 bool is_constructor() const { return false; } in is_constructor() function
600 bool is_constructor() const;
Dmessages.cc602 const bool is_constructor = IsConstructor(); in ToString() local
603 const bool is_method_call = !(is_toplevel || is_constructor); in ToString()
607 } else if (is_constructor) { in ToString()
Disolate.cc430 bool is_constructor = summary.is_constructor(); in AppendStandardFrame() local
435 is_constructor = true; in AppendStandardFrame()
441 if (is_constructor) flags |= FrameArray::kIsConstructor; in AppendStandardFrame()
774 frame->set_is_constructor(summ.is_constructor()); in NewStackFrameObject()
Dobjects-printer.cc800 if (is_constructor()) os << "\n - constructor"; in MapPrint()
2103 os << "\n - is_constructor: " << (is_constructor() ? "true" : "false"); in StackFrameInfoPrint()
Dobjects-inl.h221 bool HeapObject::IsConstructor() const { return map()->is_constructor(); } in IsConstructor()
2266 BOOL_ACCESSORS(StackFrameInfo, flag, is_constructor, kIsConstructorBit) in ACCESSORS()
Dobjects-debug.cc1437 CHECK_EQ(target()->IsConstructor(), map()->is_constructor()); in JSProxyVerify()
Dobjects.h4187 DECL_BOOLEAN_ACCESSORS(is_constructor)
Dobjects.cc5967 DCHECK(proxy->map()->is_constructor()); in GetFunctionRealm()
5981 DCHECK(function->map()->is_constructor()); in GetFunctionRealm()
6068 DCHECK(function->map()->is_constructor()); in GetFunctionRealm()
6075 DCHECK(object->map()->is_constructor()); in GetFunctionRealm()
/external/mesa3d/src/compiler/glsl/
Dast.h317 bool is_constructor() const in is_constructor() function
Dast_function.cpp1991 if (is_constructor()) { in hir()
/external/v8/src/builtins/
Dbuiltins-array-gen.cc1892 Label is_constructor(this), is_not_constructor(this), done(this); in ConstructArrayLike() local
1894 Branch(IsConstructor(CAST(receiver)), &is_constructor, &is_not_constructor); in ConstructArrayLike()
1896 BIND(&is_constructor); in ConstructArrayLike()
1924 Label is_constructor(this), is_not_constructor(this), done(this); in ConstructArrayLike() local
1927 Branch(IsConstructor(CAST(receiver)), &is_constructor, &is_not_constructor); in ConstructArrayLike()
1929 BIND(&is_constructor); in ConstructArrayLike()
/external/v8/src/objects/
Dmap-inl.h47 BIT_FIELD_ACCESSORS(Map, bit_field, is_constructor, Map::IsConstructorBit) in ACCESSORS()
Dmap.h350 DECL_BOOLEAN_ACCESSORS(is_constructor)
/external/flatbuffers/src/
Didl_gen_cpp.cpp581 bool is_constructor) { in GenTypeNativePtr() argument
586 } else if (is_constructor) { in GenTypeNativePtr()
/external/v8/src/parsing/
Dparser.h330 bool is_static, bool is_constructor,
Dpreparser.h1213 bool is_static, bool is_constructor,
Dparser-base.h4560 bool is_constructor = !class_info.has_seen_constructor; in ParseClassLiteral() local
4572 is_constructor &= class_info.has_seen_constructor; in ParseClassLiteral()
4577 is_static, is_constructor, is_computed_name, in ParseClassLiteral()
Dparser.cc3191 bool is_static, bool is_constructor, in DeclareClassProperty() argument
3194 if (is_constructor) { in DeclareClassProperty()
/external/v8/src/compiler/
Djs-call-reducer.cc414 bool const is_constructor = receiver_maps[0]->is_constructor(); in ReduceFunctionPrototypeBind() local
420 if (receiver_map->is_constructor() != is_constructor) return NoChange(); in ReduceFunctionPrototypeBind()
456 is_constructor in ReduceFunctionPrototypeBind()
/external/v8/src/heap/
Dfactory.cc3341 DCHECK_EQ(target_function->IsConstructor(), map->is_constructor()); in NewJSBoundFunction()

12