Home
last modified time | relevance | path

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

12

/art/runtime/mirror/
Dmethod.cc56 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
108 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
Dclass.cc1186 if (m.IsStatic() || !m.IsConstructor()) { in GetDeclaredConstructor()
/art/runtime/native/
Djava_lang_invoke_MethodHandleImpl.cc54 if (method->IsConstructor()) { in MethodHandleImpl_getMemberInternal()
Djava_lang_Class.cc408 return (!public_only || m->IsPublic()) && !m->IsStatic() && m->IsConstructor(); in MethodMatchesConstructor()
/art/compiler/driver/
Ddex_compilation_unit.h85 bool IsConstructor() const { in IsConstructor() function
/art/runtime/
Dart_method-inl.h189 return IsConstructor() || IsStatic(); in CheckIncompatibleClassChange()
435 bool is_constructor = IsConstructor(); in SetIntrinsic()
447 DCHECK_EQ(is_constructor, IsConstructor()); in SetIntrinsic()
Dreflection.cc469 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeWithVarArgs()
500 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeWithJValues()
532 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeVirtualOrInterfaceWithJValues()
564 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeVirtualOrInterfaceWithVarArgs()
611 if (declaring_class->IsStringClass() && m->IsConstructor()) { in InvokeMethod()
Dclass_linker-inl.h188 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in GetResolvedMethod()
227 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in ResolveMethod()
Dinstrumentation.cc148 if (method->IsConstructor() && in InstallStubsForMethod()
160 } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { in InstallStubsForMethod()
177 if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { in InstallStubsForMethod()
843 if (method->IsStatic() && !method->IsConstructor() && in Undeoptimize()
Dart_method.h159 bool IsConstructor() { in IsConstructor() function
165 return IsConstructor() && IsStatic(); in IsClassInitializer()
Dart_method.cc624 DCHECK(IsProxyMethod() && !IsConstructor()); in GetOatQuickMethodHeader()
Dstack.cc732 DCHECK(!method->IsDirect() && !method->IsConstructor()) in GetCurrentQuickFrameInfo()
Dmethod_handles.cc684 if (target_method->IsConstructor() && target_method->GetDeclaringClass()->IsStringClass()) { in RefineTargetMethod()
Ddex_file_annotations.cc492 if (method->IsConstructor()) { in ProcessAnnotationValue()
/art/runtime/verifier/
Dmethod_verifier.h221 return IsConstructor() && !IsStatic(); in IsInstanceConstructor()
249 bool IsConstructor() const { in IsConstructor() function
Dmethod_verifier.cc755 if (IsConstructor()) { in Verify()
818 if (IsConstructor()) { in Verify()
838 if (!(IsConstructor() && IsStatic())) { in Verify()
1729 if (IsConstructor()) { in SetTypesFromSignature()
2943 is_constructor = called_method->IsConstructor(); in CodeFlowVerifyInstruction()
3367 if (IsConstructor() && !IsStatic()) { in CodeFlowVerifyInstruction()
3391 if (!IsConstructor()) { in CodeFlowVerifyInstruction()
3892 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) { in ResolveMethodAndCheckAccess()
4016 if (!res_method->IsConstructor()) { in VerifyInvocationArgsFromIterator()
4521 if (actual_arg_type.IsUninitializedTypes() && !res_method->IsConstructor()) { in VerifyInvokeVirtualQuickArgs()
[all …]
/art/compiler/dex/
Dinline_method_analyser.cc152 CHECK(target_method->IsConstructor()); in GetTargetConstructor()
292 DCHECK(method->IsConstructor()); in DoAnalyseConstructor()
478 if (method != nullptr && !method->IsStatic() && method->IsConstructor()) { in AnalyseMethodCode()
Ddex_to_dex_compiler.cc212 if (unit_.IsConstructor()) { in CompileReturnVoid()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h461 resolved_method->IsConstructor())) { in FindMethodFromCode()
739 if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) { in ResolveVerifyAndClinit()
/art/compiler/optimizing/
Dreference_type_propagation.cc536 DCHECK(method->IsConstructor()) in SetClassAsTypeInfo()
Dinstruction_builder.cc613 return cu->IsConstructor() in RequiresConstructorBarrier()
795 return method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in IsStringConstructor()
Dinliner.cc1578 DCHECK(referrer->IsConstructor()); in CreateInstanceFieldSet()
Dinstruction_simplifier.cc2033 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in NoEscapeForStringBufferReference()
/art/runtime/interpreter/
Dinterpreter_common.cc940 && called_method->IsConstructor())) { in DoCallCommon()
/art/compiler/
Dimage_writer.cc2552 if (quick_code != nullptr && (!method->IsStatic() || method->IsConstructor() || in GetQuickCode()

12