Home
last modified time | relevance | path

Searched refs:IsConstructor (Results 1 – 25 of 34) sorted by relevance

12

/art/runtime/mirror/
Dmethod.cc30 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
45 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
/art/runtime/native/
Djava_lang_invoke_MethodHandleImpl.cc50 if (method->IsConstructor()) { in MethodHandleImpl_getMemberInternal()
Djava_lang_reflect_Parameter.cc69 if (method->IsConstructor()) { in Parameter_getAnnotationNative()
Djava_lang_reflect_Executable.cc99 if (!method->IsConstructor() || in Executable_getParameterAnnotationsNative()
Djava_lang_Class.cc433 return m->IsConstructor() && in MethodMatchesConstructor()
/art/compiler/driver/
Ddex_compilation_unit.cc63 DCHECK(IsConstructor()); in RequiresConstructorBarrier()
Ddex_compilation_unit.h88 bool IsConstructor() const { in IsConstructor() function
Dcompiler_options.cc145 !method->IsConstructor() && in ShouldCompileWithClinitCheck()
/art/runtime/
Dart_method-alloc-inl.h53 DCHECK(IsConstructor());
Dart_method.h194 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);
Dart_method.cc596 DCHECK(IsProxyMethod() && !IsConstructor()); in GetOatQuickMethodHeader()
732 bool is_constructor = IsConstructor(); in SetIntrinsic()
748 DCHECK_EQ(is_constructor, IsConstructor()); in SetIntrinsic()
Dart_method-inl.h308 return IsConstructor(access_flags) &&
335 return IsConstructor() || IsStatic();
Dreflection.cc729 if (declaring_class->IsStringClass() && m->IsConstructor()) { in InvokeMethod()
805 CHECK(constructor->IsConstructor()); in InvokeConstructor()
Dclass_linker-inl.h295 DCHECK_IMPLIES(referrer->IsProxyMethod(), referrer->IsConstructor()); in ResolveMethod()
Dstack.cc772 DCHECK(!method->IsDirect() && !method->IsConstructor()) in GetCurrentQuickFrameInfo()
Dinstrumentation.cc205 return method->IsConstructor() && !method->IsStatic() && in IsProxyInit()
/art/compiler/dex/
Dinline_method_analyser.cc154 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/
Dmethod_verifier.cc125 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/
Dsmall_pattern_matcher.cc160 method->IsConstructor() && in TryMatch()
Djit.cc1052 !method.IsConstructor() && in MapBootImageMethods()
/art/tools/hiddenapi/
Dhiddenapi.cc186 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/
Dentrypoint_utils-inl.h690 if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) { in ResolveVerifyAndClinit()
/art/compiler/optimizing/
Dreference_type_propagation.cc511 DCHECK(method->IsConstructor()) in SetClassAsTypeInfo()
Dinstruction_simplifier.cc2772 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in NoEscapeForStringBufferReference()
2915 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in TryReplaceStringBuilderAppend()
Dinliner.cc1861 DCHECK(referrer->IsConstructor()); in CreateInstanceFieldSet()

12