Home
last modified time | relevance | path

Searched refs:targetMethod (Results 1 – 12 of 12) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
DMemberAdder.java191 ProgramMethod targetMethod = (ProgramMethod)targetClass.findMethod(name, descriptor); in visitProgramMethod() local
192 if (targetMethod != null) in visitProgramMethod()
208 int targetAccessFlags = targetMethod.getAccessFlags(); in visitProgramMethod()
219 targetMethod.u2accessFlags = in visitProgramMethod()
225 targetMethod, in visitProgramMethod()
234 …rAdder: renaming method ["+targetClass.getName()+"."+targetMethod.getName(targetClass)+targetMetho… in visitProgramMethod()
/external/r8/src/main/java/com/android/tools/r8/optimize/
DBridgeMethodAnalysis.java50 DexEncodedMethod targetMethod = appInfo.lookupStaticTarget(target); in identifyBridgeMethods() local
51 if (targetMethod != null) { in identifyBridgeMethods()
52 addForwarding(method, targetMethod); in identifyBridgeMethods()
56 DexEncodedMethod targetMethod = appInfo.lookupSingleVirtualTarget(target); in identifyBridgeMethods() local
57 if (targetMethod != null) { in identifyBridgeMethods()
58 addForwarding(method, targetMethod); in identifyBridgeMethods()
DVisibilityBridgeRemover.java42 DexEncodedMethod targetMethod in identifyBridgeMethods() local
44 if (targetMethod != null && targetMethod.accessFlags.isPublic()) { in identifyBridgeMethods()
47 targetMethod.method); in identifyBridgeMethods()
/external/conscrypt/common/src/main/java/org/conscrypt/
DDuckTypedPSKKeyManager.java53 for (Method targetMethod : PSKKeyManager.class.getMethods()) { in getInstance()
54 if (targetMethod.isSynthetic()) { in getInstance()
59 sourceClass.getMethod(targetMethod.getName(), targetMethod.getParameterTypes()); in getInstance()
62 Class<?> targetReturnType = targetMethod.getReturnType(); in getInstance()
/external/r8/src/main/java/com/android/tools/r8/ir/desugar/
DLambdaDescriptor.java46 private final DexEncodedMethod targetMethod; field in LambdaDescriptor
55 targetMethod = null; in LambdaDescriptor()
78 this.targetMethod = lookupTargetMethod(rewriter); in LambdaDescriptor()
133 return targetMethod == null ? null : targetMethod.accessFlags; in getAccessibility()
137 return targetMethod != null && targetMethod.method.holder == type; in targetFoundInClass()
167 if (targetMethod == null) { in needsAccessor()
188 DexAccessFlags flags = targetMethod.accessFlags; in needsAccessor()
200 targetMethod.method.holder.getPackageDescriptor()); in needsAccessor()
/external/proguard/src/proguard/optimize/peephole/
DMethodInliner.java73 private ProgramMethod targetMethod; field in MethodInliner
151 …System.err.println(" Target method = ["+targetMethod.getName(targetClass)+targetMethod.getDescri… in visitCodeAttribute()
164 targetMethod.accept(targetClass, new ClassPrinter()); in visitCodeAttribute()
185 targetMethod = (ProgramMethod)method; in visitCodeAttribute0()
199 targetMethod = null; in visitCodeAttribute0()
228 …targetClass.getName()+"."+targetMethod.getName(targetClass)+targetMethod.getDescriptor(targetClass… in visitCodeAttribute0()
514 (!programMethod.equals(targetMethod) || in visitProgramMethod()
571 MethodOptimizationInfo.getMethodOptimizationInfo(targetMethod); in visitProgramMethod()
/external/mockito/src/test/java/org/mockitousage/bugs/
DConcurrentModificationExceptionOnMultiThreadedVerificationTest.java48 verify(target, timeout(expectedMaxTestLength).times(TIMES * nThreads)).targetMethod("arg"); in shouldSuccessfullyVerifyConcurrentInvocationsWithTimeout()
72 target.targetMethod("arg"); in call()
82 String targetMethod(String arg); in targetMethod() method
/external/proguard/src/proguard/optimize/
DTailRecursionSimplifier.java59 private Method targetMethod; field in TailRecursionSimplifier
107 targetMethod = method; in visitCodeAttribute()
258 recursive = targetMethod.equals(methodrefConstant.referencedMember); in visitAnyMethodrefConstant()
/external/javassist/src/test/test/javassist/proxy/
DProxyCacheGCTest.java70 … CtMethod targetMethod = CtNewMethod.make("public Object test() { return this; }", ctTargetClass); in createProxy() local
71 ctTargetClass.addMethod(targetMethod); in createProxy()
/external/r8/src/main/java/com/android/tools/r8/graph/
DAppInfoWithSubtyping.java193 DexEncodedMethod targetMethod = lookupVirtualTarget(type, method); in lookupInterfaceTargets() local
194 if (targetMethod != null) { in lookupInterfaceTargets()
195 result.add(targetMethod); in lookupInterfaceTargets()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java1742 MethodReference targetMethod;
1750 targetMethod = (MethodReference)instruction.getReference();
1753 targetMethod = (MethodReference)instruction.getReference();
1756 MethodReference replacementMethod = normalizeMethodReference(targetMethod);
1758 if (replacementMethod == null || replacementMethod.equals(targetMethod)) {
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DJarSourceCode.java2472 DexMethod targetMethod = method; in build()
2474 targetMethod = application.getMethod( in build()
2478 builder.addInvoke(invokeType, targetMethod, callSiteProto, types, registers); in build()