Home
last modified time | relevance | path

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

12

/art/runtime/mirror/
Dmethod.cc30 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
49 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
/art/runtime/native/
Djava_lang_invoke_MethodHandleImpl.cc54 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.cc516 return m->IsConstructor() && in MethodMatchesConstructor()
/art/compiler/driver/
Ddex_compilation_unit.cc63 DCHECK(IsConstructor()); in RequiresConstructorBarrier()
Ddex_compilation_unit.h87 bool IsConstructor() const { in IsConstructor() function
/art/runtime/
Dreflection.cc533 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()
Dclass_linker-inl.h306 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in GetResolvedMethod()
348 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in ResolveMethod()
Dart_method.cc588 DCHECK(IsProxyMethod() && !IsConstructor()); in GetOatQuickMethodHeader()
698 bool is_constructor = IsConstructor(); in SetIntrinsic()
714 DCHECK_EQ(is_constructor, IsConstructor()); in SetIntrinsic()
Dinstrumentation.cc219 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()
Dart_method.h145 bool IsConstructor() { in IsConstructor() function
151 return IsConstructor() && IsStatic(); in IsClassInitializer()
Dart_method-inl.h118 return IsConstructor() || IsStatic(); in CheckIncompatibleClassChange()
Dstack.cc716 DCHECK(!method->IsDirect() && !method->IsConstructor()) in GetCurrentQuickFrameInfo()
Dmethod_handles.cc674 if (target_method->IsConstructor() && target_method->GetDeclaringClass()->IsStringClass()) { in RefineTargetMethod()
/art/compiler/dex/
Dinline_method_analyser.cc154 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/
Dmethod_verifier.cc127 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/
Dsharpening.cc64 DCHECK(!(callee->IsConstructor() && callee->GetDeclaringClass()->IsStringClass())); in SharpenInvokeStaticOrDirect()
Dreference_type_propagation.cc570 DCHECK(method->IsConstructor()) in SetClassAsTypeInfo()
Dinstruction_builder.cc719 if (LIKELY(!cu->IsConstructor() || cu->IsStatic())) { in RequiresConstructorBarrier()
900 return method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in IsStringConstructor()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h441 resolved_method->IsConstructor())) { in FindMethodToCall()
732 if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) { in ResolveVerifyAndClinit()
/art/tools/hiddenapi/
Dhiddenapi.cc170 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/
Ddex_to_dex_compiler.cc377 if (unit_.IsConstructor()) { in CompileReturnVoid()
/art/runtime/interpreter/
Dinterpreter_common.h240 called_method->IsConstructor())); in DoInvoke()
Dinterpreter_common.cc81 if (method->GetDeclaringClass()->IsStringClass() && method->IsConstructor()) { in UseFastInterpreterToInterpreterInvoke()
1540 && called_method->IsConstructor())) { in DoCallCommon()

12