/art/runtime/mirror/ |
D | method.cc | 30 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod() 45 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
|
/art/runtime/native/ |
D | java_lang_invoke_MethodHandleImpl.cc | 50 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 | 433 return m->IsConstructor() && in MethodMatchesConstructor()
|
/art/compiler/driver/ |
D | dex_compilation_unit.cc | 63 DCHECK(IsConstructor()); in RequiresConstructorBarrier()
|
D | dex_compilation_unit.h | 88 bool IsConstructor() const { in IsConstructor() function
|
D | compiler_options.cc | 145 !method->IsConstructor() && in ShouldCompileWithClinitCheck()
|
/art/runtime/ |
D | art_method-alloc-inl.h | 53 DCHECK(IsConstructor());
|
D | art_method.h | 194 bool IsConstructor() const { 195 return IsConstructor(GetAccessFlags()); 198 static bool IsConstructor(uint32_t access_flags) { 208 return IsConstructor(access_flags) && IsStatic(access_flags); 746 return IsStatic(access_flags) && !IsConstructor(access_flags);
|
D | art_method.cc | 596 DCHECK(IsProxyMethod() && !IsConstructor()); in GetOatQuickMethodHeader() 732 bool is_constructor = IsConstructor(); in SetIntrinsic() 748 DCHECK_EQ(is_constructor, IsConstructor()); in SetIntrinsic()
|
D | art_method-inl.h | 308 return IsConstructor(access_flags) && 335 return IsConstructor() || IsStatic();
|
D | reflection.cc | 729 if (declaring_class->IsStringClass() && m->IsConstructor()) { in InvokeMethod() 805 CHECK(constructor->IsConstructor()); in InvokeConstructor()
|
D | class_linker-inl.h | 295 DCHECK_IMPLIES(referrer->IsProxyMethod(), referrer->IsConstructor()); in ResolveMethod()
|
D | stack.cc | 772 DCHECK(!method->IsDirect() && !method->IsConstructor()) in GetCurrentQuickFrameInfo()
|
D | instrumentation.cc | 205 return method->IsConstructor() && !method->IsStatic() && in IsProxyInit()
|
/art/compiler/dex/ |
D | inline_method_analyser.cc | 154 CHECK(target_method->IsConstructor()); in GetTargetConstructor() 293 DCHECK(method->IsConstructor()); in DoAnalyseConstructor() 459 if (method != nullptr && !method->IsStatic() && method->IsConstructor()) { in AnalyseMethodCode()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 125 return IsConstructor() && !IsStatic(); in IsInstanceConstructor() 189 bool IsConstructor() const { in IsConstructor() function in art::verifier::impl::__anon79162a830111::MethodVerifier 874 if (IsConstructor()) { in Verify() 970 if (IsConstructor()) { in Verify() 990 if (!(IsConstructor() && IsStatic())) { in Verify() 1667 if (IsConstructor()) { in SetTypesFromSignature() 2905 is_constructor = called_method->IsConstructor(); in CodeFlowVerifyInstruction() 3782 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) { in ResolveMethodAndCheckAccess() 3907 if (!res_method->IsConstructor()) { in VerifyInvocationArgsFromIterator() 4597 !IsConstructor() || in GetInstanceField()
|
/art/runtime/jit/ |
D | small_pattern_matcher.cc | 160 method->IsConstructor() && in TryMatch()
|
D | jit.cc | 1052 !method.IsConstructor() && in MapBootImageMethods()
|
/art/tools/hiddenapi/ |
D | hiddenapi.cc | 186 inline bool IsConstructor() const { return IsMethod() && HasAccessFlags(kAccConstructor); } in IsConstructor() function in art::hiddenapi::DexMember 466 } else if (member.IsConstructor()) { in IsMemberVisible()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils-inl.h | 690 if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) { in ResolveVerifyAndClinit()
|
/art/compiler/optimizing/ |
D | reference_type_propagation.cc | 511 DCHECK(method->IsConstructor()) in SetClassAsTypeInfo()
|
D | instruction_simplifier.cc | 2772 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in NoEscapeForStringBufferReference() 2915 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in TryReplaceStringBuilderAppend()
|
D | inliner.cc | 1861 DCHECK(referrer->IsConstructor()); in CreateInstanceFieldSet()
|