/external/v8/src/ic/ |
D | ic-stats.cc | 95 is_constructor(false), in ICInfo() 107 is_constructor = false; in Reset() 128 if (is_constructor) value->SetInteger("constructor", is_constructor); in AppendToTracedValue()
|
D | ic-stats.h | 36 bool is_constructor; member
|
/external/libchrome/base/android/jni_generator/ |
D | jni_generator.py | 117 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/ |
D | debug-frames.cc | 23 is_constructor_ = summary.is_constructor(); in FrameInspector()
|
/external/v8/src/ |
D | frames.cc | 1199 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()
|
D | frames.h | 509 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;
|
D | messages.cc | 602 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()
|
D | isolate.cc | 430 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()
|
D | objects-printer.cc | 800 if (is_constructor()) os << "\n - constructor"; in MapPrint() 2103 os << "\n - is_constructor: " << (is_constructor() ? "true" : "false"); in StackFrameInfoPrint()
|
D | objects-inl.h | 221 bool HeapObject::IsConstructor() const { return map()->is_constructor(); } in IsConstructor() 2266 BOOL_ACCESSORS(StackFrameInfo, flag, is_constructor, kIsConstructorBit) in ACCESSORS()
|
D | objects-debug.cc | 1437 CHECK_EQ(target()->IsConstructor(), map()->is_constructor()); in JSProxyVerify()
|
D | objects.h | 4187 DECL_BOOLEAN_ACCESSORS(is_constructor)
|
D | objects.cc | 5967 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/ |
D | ast.h | 317 bool is_constructor() const in is_constructor() function
|
D | ast_function.cpp | 1991 if (is_constructor()) { in hir()
|
/external/v8/src/builtins/ |
D | builtins-array-gen.cc | 1892 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/ |
D | map-inl.h | 47 BIT_FIELD_ACCESSORS(Map, bit_field, is_constructor, Map::IsConstructorBit) in ACCESSORS()
|
D | map.h | 350 DECL_BOOLEAN_ACCESSORS(is_constructor)
|
/external/flatbuffers/src/ |
D | idl_gen_cpp.cpp | 581 bool is_constructor) { in GenTypeNativePtr() argument 586 } else if (is_constructor) { in GenTypeNativePtr()
|
/external/v8/src/parsing/ |
D | parser.h | 330 bool is_static, bool is_constructor,
|
D | preparser.h | 1213 bool is_static, bool is_constructor,
|
D | parser-base.h | 4560 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()
|
D | parser.cc | 3191 bool is_static, bool is_constructor, in DeclareClassProperty() argument 3194 if (is_constructor) { in DeclareClassProperty()
|
/external/v8/src/compiler/ |
D | js-call-reducer.cc | 414 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/ |
D | factory.cc | 3341 DCHECK_EQ(target_function->IsConstructor(), map->is_constructor()); in NewJSBoundFunction()
|