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

  /external/proguard/src/proguard/classfile/editor/
ConstantAdder.java 163 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
166 clazz.constantPoolEntryAccept(methodrefConstant.u2classIndex, this);
172 methodrefConstant.getName(clazz),
173 methodrefConstant.getType(clazz),
174 methodrefConstant.referencedClass,
175 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 399 InterfaceMethodrefConstant methodrefConstant = (InterfaceMethodrefConstant)constant;
400 if (methodrefConstant.u2classIndex == classIndex &&
401 methodrefConstant.u2nameAndTypeIndex == nameAndTypeIndex)
416 * Finds or creates a MethodrefConstant constant pool entry for the given
418 * @return the constant pool index of the MethodrefConstant.
432 * Finds or creates a MethodrefConstant constant pool entry with the given
434 * @return the constant pool index of the MethodrefConstant.
450 * Finds or creates a MethodrefConstant constant pool entry with the given
452 * @return the constant pool index of the MethodrefConstant.
467 * Finds or creates a MethodrefConstant constant pool entry with the give
    [all...]
ConstantPoolRemapper.java 152 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
154 methodrefConstant.u2classIndex =
155 remapConstantIndex(methodrefConstant.u2classIndex);
156 methodrefConstant.u2nameAndTypeIndex =
157 remapConstantIndex(methodrefConstant.u2nameAndTypeIndex);
  /external/proguard/src/proguard/obfuscate/
NameAndTypeUsageMarker.java 80 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
82 visitRefConstant(clazz, methodrefConstant);
  /external/proguard/src/proguard/optimize/
DuplicateInitializerInvocationFixer.java 133 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
136 descriptor = methodrefConstant.getType(clazz);
137 methodrefConstant.referencedMemberAccept(this);
TailRecursionSimplifier.java 26 import proguard.classfile.constant.MethodrefConstant;
232 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
234 recursive = targetMethod.equals(methodrefConstant.referencedMember);
  /external/proguard/src/proguard/classfile/constant/visitor/
ConstantVisitor.java 43 public void visitMethodrefConstant( Clazz clazz, MethodrefConstant methodrefConstant);
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 247 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
249 visitRefConstant(clazz, methodrefConstant);
253 private void visitRefConstant(Clazz clazz, RefConstant methodrefConstant)
255 String type = methodrefConstant.getType(clazz);
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 208 public void visitAnyMethodrefConstant(Clazz clazz, RefConstant methodrefConstant)
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/
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),
333 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
335 String methodType = methodrefConstant.getType(clazz)
    [all...]
SimplifiedVisitor.java 190 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
192 visitAnyMethodrefConstant(clazz, methodrefConstant);
  /external/proguard/src/proguard/optimize/peephole/
BranchTargetFinder.java 593 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
595 isInitializer = methodrefConstant.getName(clazz).equals(ClassConstants.INTERNAL_METHOD_NAME_INIT);
MethodInliner.java 442 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
444 methodrefConstant.referencedMemberAccept(this);
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 243 public void visitMethodrefConstant(Clazz clazz, MethodrefConstant methodrefConstant)
245 println(visitorInfo(methodrefConstant) + " Methodref [" +
246 clazz.getClassName(methodrefConstant.u2classIndex) + "." +
247 clazz.getName(methodrefConstant.u2nameAndTypeIndex) + " " +
248 clazz.getType(methodrefConstant.u2nameAndTypeIndex) + "]");
    [all...]

Completed in 251 milliseconds