Searched refs:interfaceMethodrefConstant (Results 1 - 8 of 8) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
H A DConstantAdder.java185 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) argument
188 clazz.constantPoolEntryAccept(interfaceMethodrefConstant.u2classIndex, this);
194 interfaceMethodrefConstant.getName(clazz),
195 interfaceMethodrefConstant.getType(clazz),
196 interfaceMethodrefConstant.referencedClass,
197 interfaceMethodrefConstant.referencedMember);
H A DMemberReferenceFixer.java149 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) argument
152 Member referencedMember = interfaceMethodrefConstant.referencedMember;
155 Clazz referencedClass = interfaceMethodrefConstant.referencedClass;
161 if (!interfaceMethodrefConstant.getName(clazz).equals(newName) ||
162 !interfaceMethodrefConstant.getType(clazz).equals(newType))
166 debug(clazz, interfaceMethodrefConstant, referencedClass, referencedMember);
170 interfaceMethodrefConstant.u2nameAndTypeIndex =
180 clazz.constantPoolEntryAccept(interfaceMethodrefConstant.u2classIndex, this);
190 System.out.println(" Ref method = "+interfaceMethodrefConstant.getName(clazz)+interfaceMethodrefConstant
[all...]
H A DConstantPoolRemapper.java164 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) argument
166 interfaceMethodrefConstant.u2classIndex =
167 remapConstantIndex(interfaceMethodrefConstant.u2classIndex);
168 interfaceMethodrefConstant.u2nameAndTypeIndex =
169 remapConstantIndex(interfaceMethodrefConstant.u2nameAndTypeIndex);
/external/proguard/src/proguard/classfile/constant/visitor/
H A DConstantVisitor.java44 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant); argument
/external/proguard/src/proguard/classfile/instruction/
H A DConstantInstruction.java246 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) argument
248 clazz.constantPoolEntryAccept(interfaceMethodrefConstant.u2nameAndTypeIndex, this);
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java257 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) argument
259 println(visitorInfo(interfaceMethodrefConstant) + " InterfaceMethodref [" +
260 clazz.getClassName(interfaceMethodrefConstant.u2classIndex) + "." +
261 clazz.getName(interfaceMethodrefConstant.u2nameAndTypeIndex) + " " +
262 clazz.getType(interfaceMethodrefConstant.u2nameAndTypeIndex) + "]");
/external/proguard/src/proguard/optimize/peephole/
H A DMethodInliner.java474 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) {} argument
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java196 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) argument
198 visitAnyMethodrefConstant(clazz, interfaceMethodrefConstant);

Completed in 98 milliseconds