HomeSort by relevance Sort by last modified time
    Searched refs:methodrefConstant (Results 1 - 24 of 24) sorted by null

  /external/proguard/src/proguard/
GetEnclosingClassChecker.java 55 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
57 String className = methodrefConstant.getClassName(clazz);
61 String methodName = methodrefConstant.getName(clazz);
GetEnclosingMethodChecker.java 55 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
57 String className = methodrefConstant.getClassName(clazz);
61 String methodName = methodrefConstant.getName(clazz);
GetSignatureChecker.java 55 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
57 String className = methodrefConstant.getClassName(clazz);
63 String methodName = methodrefConstant.getName(clazz);
GetAnnotationChecker.java 55 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
57 String className = methodrefConstant.getClassName(clazz);
63 String methodName = methodrefConstant.getName(clazz);
  /external/proguard/src/proguard/classfile/editor/
ConstantAdder.java 217 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
220 clazz.constantPoolEntryAccept(methodrefConstant.u2classIndex, this);
226 methodrefConstant.getName(clazz),
227 methodrefConstant.getType(clazz),
228 methodrefConstant.referencedClass,
229 methodrefConstant.referencedMember);
MemberReferenceFixer.java 196 new MethodrefConstant(interfaceMethodrefConstant.u2classIndex,
205 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
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)
    [all...]
ConstantPoolEditor.java 486 InterfaceMethodrefConstant methodrefConstant = (InterfaceMethodrefConstant)constant;
487 if (methodrefConstant.u2classIndex == classIndex &&
488 methodrefConstant.u2nameAndTypeIndex == nameAndTypeIndex)
503 * Finds or creates a MethodrefConstant constant pool entry for the given
505 * @return the constant pool index of the MethodrefConstant.
519 * Finds or creates a MethodrefConstant constant pool entry with the given
521 * @return the constant pool index of the MethodrefConstant.
537 * Finds or creates a MethodrefConstant constant pool entry with the given
539 * @return the constant pool index of the MethodrefConstant.
554 * Finds or creates a MethodrefConstant constant pool entry with the give
    [all...]
ConstantPoolRemapper.java 174 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
176 methodrefConstant.u2classIndex =
177 remapConstantIndex(methodrefConstant.u2classIndex);
178 methodrefConstant.u2nameAndTypeIndex =
179 remapConstantIndex(methodrefConstant.u2nameAndTypeIndex);
  /external/proguard/src/proguard/classfile/constant/visitor/
ConstantVisitor.java 45 public void visitMethodrefConstant( Clazz clazz, MethodrefConstant methodrefConstant);
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 209 public void visitAnyMethodrefConstant(Clazz clazz, RefConstant methodrefConstant)
211 String type = methodrefConstant.getType(clazz);
223 setMethodParameterValue(clazz, methodrefConstant, parameterIndex, stack.pop());
230 stack.push(getMethodReturnValue(clazz, methodrefConstant, returnType));
  /external/proguard/src/proguard/classfile/util/
DynamicClassReferenceInitializer.java 66 new MethodrefConstant(1, 2, null, null),
74 new MethodrefConstant(1, 7, null, null),
80 new MethodrefConstant(1, 11, null, null),
104 // new MethodrefConstant(A, 1, null, null),
112 new MethodrefConstant(A, 1, null, null),
127 // new MethodrefConstant(A, 1, null, null),
135 new MethodrefConstant(A, 1, null, null),
335 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
337 String methodType = methodrefConstant.getType(clazz)
    [all...]
SimplifiedVisitor.java 203 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
205 visitAnyMethodrefConstant(clazz, methodrefConstant);
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 252 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
254 clazz.constantPoolEntryAccept(methodrefConstant.u2nameAndTypeIndex, this);
  /external/proguard/src/proguard/optimize/
TailRecursionSimplifier.java 256 public void visitAnyMethodrefConstant(Clazz clazz, RefConstant methodrefConstant)
258 recursive = targetMethod.equals(methodrefConstant.referencedMember);
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 273 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
275 println(visitorInfo(methodrefConstant) + " Methodref [" +
276 clazz.getClassName(methodrefConstant.u2classIndex) + "." +
277 clazz.getName(methodrefConstant.u2nameAndTypeIndex) + " " +
278 clazz.getType(methodrefConstant.u2nameAndTypeIndex) + "]");
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
BranchTargetFinder.java 618 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
621 isInitializer = methodrefConstant.getName(clazz).equals(ClassConstants.METHOD_NAME_INIT);
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.1/
proguard-base-5.3.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.2/
proguard-base-5.3.2.jar 
  /prebuilts/tools/common/offline-m2/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 

Completed in 1872 milliseconds