Searched refs:methodrefConstant (Results 1 - 15 of 15) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
H A DConstantAdder.java163 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
166 clazz.constantPoolEntryAccept(methodrefConstant.u2classIndex, this);
172 methodrefConstant.getName(clazz),
173 methodrefConstant.getType(clazz),
174 methodrefConstant.referencedClass,
175 methodrefConstant.referencedMember);
H A DMemberReferenceFixer.java205 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
208 Member referencedMember = methodrefConstant.referencedMember;
211 Clazz referencedClass = methodrefConstant.referencedClass;
217 if (!methodrefConstant.getName(clazz).equals(newName) ||
218 !methodrefConstant.getType(clazz).equals(newType))
222 debug(clazz, methodrefConstant, referencedClass, referencedMember);
226 methodrefConstant.u2nameAndTypeIndex =
236 clazz.constantPoolEntryAccept(methodrefConstant.u2classIndex, this);
246 System.out.println(" Ref method = "+methodrefConstant.getName(clazz)+methodrefConstant
[all...]
H A DConstantPoolEditor.java399 InterfaceMethodrefConstant methodrefConstant = (InterfaceMethodrefConstant)constant;
400 if (methodrefConstant.u2classIndex == classIndex &&
401 methodrefConstant.u2nameAndTypeIndex == nameAndTypeIndex)
506 MethodrefConstant methodrefConstant = (MethodrefConstant)constant;
507 if (methodrefConstant.u2classIndex == classIndex &&
508 methodrefConstant.u2nameAndTypeIndex == nameAndTypeIndex)
H A DConstantPoolRemapper.java152 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
154 methodrefConstant.u2classIndex =
155 remapConstantIndex(methodrefConstant.u2classIndex);
156 methodrefConstant.u2nameAndTypeIndex =
157 remapConstantIndex(methodrefConstant.u2nameAndTypeIndex);
/external/proguard/src/proguard/obfuscate/
H A DNameAndTypeUsageMarker.java80 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
82 visitRefConstant(clazz, methodrefConstant);
/external/proguard/src/proguard/optimize/
H A DDuplicateInitializerInvocationFixer.java133 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
136 descriptor = methodrefConstant.getType(clazz);
137 methodrefConstant.referencedMemberAccept(this);
H A DTailRecursionSimplifier.java232 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
234 recursive = targetMethod.equals(methodrefConstant.referencedMember);
/external/proguard/src/proguard/classfile/constant/visitor/
H A DConstantVisitor.java43 public void visitMethodrefConstant( Clazz clazz, MethodrefConstant methodrefConstant); argument
/external/proguard/src/proguard/classfile/instruction/
H A DConstantInstruction.java247 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
249 visitRefConstant(clazz, methodrefConstant);
253 private void visitRefConstant(Clazz clazz, RefConstant methodrefConstant) argument
255 String type = methodrefConstant.getType(clazz);
/external/proguard/src/proguard/evaluation/
H A DBasicInvocationUnit.java208 public void visitAnyMethodrefConstant(Clazz clazz, RefConstant methodrefConstant) argument
210 String type = methodrefConstant.getType(clazz);
222 setMethodParameterValue(clazz, methodrefConstant, parameterIndex, stack.pop());
229 stack.push(getMethodReturnValue(clazz, methodrefConstant, returnType));
/external/proguard/src/proguard/classfile/util/
H A DDynamicClassReferenceInitializer.java333 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
335 String methodType = methodrefConstant.getType(clazz);
341 String methodName = methodrefConstant.getName(clazz);
353 String className = methodrefConstant.getClassName(clazz);
H A DSimplifiedVisitor.java190 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
192 visitAnyMethodrefConstant(clazz, methodrefConstant);
/external/proguard/src/proguard/optimize/peephole/
H A DBranchTargetFinder.java593 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
595 isInitializer = methodrefConstant.getName(clazz).equals(ClassConstants.INTERNAL_METHOD_NAME_INIT);
H A DMethodInliner.java442 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
444 methodrefConstant.referencedMemberAccept(this);
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java243 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant) argument
245 println(visitorInfo(methodrefConstant) + " Methodref [" +
246 clazz.getClassName(methodrefConstant.u2classIndex) + "." +
247 clazz.getName(methodrefConstant.u2nameAndTypeIndex) + " " +
248 clazz.getType(methodrefConstant.u2nameAndTypeIndex) + "]");

Completed in 390 milliseconds