/art/runtime/mirror/ |
D | method.cc | 30 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod() 49 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
|
/art/runtime/native/ |
D | java_lang_invoke_MethodHandleImpl.cc | 54 if (method->IsConstructor()) { in MethodHandleImpl_getMemberInternal()
|
D | java_lang_reflect_Parameter.cc | 69 if (method->IsConstructor()) { in Parameter_getAnnotationNative()
|
D | java_lang_reflect_Executable.cc | 99 if (!method->IsConstructor() || in Executable_getParameterAnnotationsNative()
|
D | java_lang_Class.cc | 516 return m->IsConstructor() && in MethodMatchesConstructor()
|
/art/compiler/driver/ |
D | dex_compilation_unit.cc | 63 DCHECK(IsConstructor()); in RequiresConstructorBarrier()
|
D | dex_compilation_unit.h | 87 bool IsConstructor() const { in IsConstructor() function
|
/art/runtime/ |
D | reflection.cc | 533 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeWithVarArgs() 564 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeWithJValues() 596 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeVirtualOrInterfaceWithJValues() 628 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeVirtualOrInterfaceWithVarArgs() 675 if (declaring_class->IsStringClass() && m->IsConstructor()) { in InvokeMethod() 738 CHECK(constructor->IsConstructor()); in InvokeConstructor()
|
D | class_linker-inl.h | 306 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in GetResolvedMethod() 348 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in ResolveMethod()
|
D | art_method.cc | 588 DCHECK(IsProxyMethod() && !IsConstructor()); in GetOatQuickMethodHeader() 698 bool is_constructor = IsConstructor(); in SetIntrinsic() 714 DCHECK_EQ(is_constructor, IsConstructor()); in SetIntrinsic()
|
D | instrumentation.cc | 219 UNLIKELY(method->IsConstructor() && in InstallStubsForMethod() 231 } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { in InstallStubsForMethod() 244 if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { in InstallStubsForMethod() 1004 if (method->IsStatic() && !method->IsConstructor() && in Undeoptimize()
|
D | art_method.h | 145 bool IsConstructor() { in IsConstructor() function 151 return IsConstructor() && IsStatic(); in IsClassInitializer()
|
D | art_method-inl.h | 118 return IsConstructor() || IsStatic(); in CheckIncompatibleClassChange()
|
D | stack.cc | 716 DCHECK(!method->IsDirect() && !method->IsConstructor()) in GetCurrentQuickFrameInfo()
|
D | method_handles.cc | 674 if (target_method->IsConstructor() && target_method->GetDeclaringClass()->IsStringClass()) { in RefineTargetMethod()
|
/art/compiler/dex/ |
D | inline_method_analyser.cc | 154 CHECK(target_method->IsConstructor()); in GetTargetConstructor() 294 DCHECK(method->IsConstructor()); in DoAnalyseConstructor() 480 if (method != nullptr && !method->IsStatic() && method->IsConstructor()) { in AnalyseMethodCode()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 127 return IsConstructor() && !IsStatic(); in IsInstanceConstructor() 168 bool IsConstructor() const { in IsConstructor() function in art::verifier::impl::__anonfaa579ac0111::MethodVerifier 765 if (IsConstructor()) { in Verify() 828 if (IsConstructor()) { in Verify() 848 if (!(IsConstructor() && IsStatic())) { in Verify() 1693 if (IsConstructor()) { in SetTypesFromSignature() 2994 is_constructor = called_method->IsConstructor(); in CodeFlowVerifyInstruction() 3423 if (IsConstructor() && !IsStatic()) { in CodeFlowVerifyInstruction() 3447 if (!IsConstructor()) { in CodeFlowVerifyInstruction() 3877 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) { in ResolveMethodAndCheckAccess() [all …]
|
/art/compiler/optimizing/ |
D | sharpening.cc | 64 DCHECK(!(callee->IsConstructor() && callee->GetDeclaringClass()->IsStringClass())); in SharpenInvokeStaticOrDirect()
|
D | reference_type_propagation.cc | 570 DCHECK(method->IsConstructor()) in SetClassAsTypeInfo()
|
D | instruction_builder.cc | 719 if (LIKELY(!cu->IsConstructor() || cu->IsStatic())) { in RequiresConstructorBarrier() 900 return method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in IsStringConstructor()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils-inl.h | 441 resolved_method->IsConstructor())) { in FindMethodToCall() 732 if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) { in ResolveVerifyAndClinit()
|
/art/tools/hiddenapi/ |
D | hiddenapi.cc | 170 inline bool IsConstructor() const { return IsMethod() && HasAccessFlags(kAccConstructor); } in IsConstructor() function in art::hiddenapi::DexMember 467 } else if (member.IsConstructor()) { in IsMemberVisible()
|
/art/dex2oat/dex/ |
D | dex_to_dex_compiler.cc | 377 if (unit_.IsConstructor()) { in CompileReturnVoid()
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 240 called_method->IsConstructor())); in DoInvoke()
|
D | interpreter_common.cc | 81 if (method->GetDeclaringClass()->IsStringClass() && method->IsConstructor()) { in UseFastInterpreterToInterpreterInvoke() 1540 && called_method->IsConstructor())) { in DoCallCommon()
|