Home | History | Annotate | Download | only in dex

Lines Matching refs:target_method

150   ArtMethod* target_method = Runtime::Current()->GetClassLinker()->LookupResolvedMethod(
152 if (kIsDebugBuild && target_method != nullptr) {
153 CHECK(!target_method->IsStatic());
154 CHECK(target_method->IsConstructor());
155 CHECK(target_method->GetDeclaringClass() == method->GetDeclaringClass() ||
156 target_method->GetDeclaringClass() == method->GetDeclaringClass()->GetSuperClass());
158 return target_method;
312 ArtMethod* target_method = GetTargetConstructor(method, &instruction);
313 if (target_method == nullptr) {
318 if (target_method->GetDeclaringClass() == method->GetDeclaringClass() &&
326 if (target_method->GetDeclaringClass()->IsObjectClass()) {
327 DCHECK_EQ(target_method->DexInstructionData().begin()->Opcode(), Instruction::RETURN_VOID);
329 CodeItemDataAccessor target_code_item(target_method->DexInstructionData());
333 if (!DoAnalyseConstructor(&target_code_item, target_method, iputs)) {
347 target_method->GetDexCache() != method->GetDexCache()) {