HomeSort by relevance Sort by last modified time
    Searched full:interfacemethodrefconstant (Results 1 - 16 of 16) sorted by null

  /external/proguard/src/proguard/classfile/constant/
InterfaceMethodrefConstant.java 31 public class InterfaceMethodrefConstant extends RefConstant
34 * Creates an uninitialized InterfaceMethodrefConstant.
36 public InterfaceMethodrefConstant()
42 * Creates a new InterfaceMethodrefConstant with the given name and type indices.
48 public InterfaceMethodrefConstant(int u2classIndex,
  /external/proguard/src/proguard/classfile/editor/
MemberReferenceFixer.java 149 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant)
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.getType(clazz))
    [all...]
ConstantAdder.java 147 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant)
150 clazz.constantPoolEntryAccept(interfaceMethodrefConstant.u2classIndex, this);
156 interfaceMethodrefConstant.getName(clazz),
157 interfaceMethodrefConstant.getType(clazz),
158 interfaceMethodrefConstant.referencedClass,
159 interfaceMethodrefConstant.referencedMember);
ConstantPoolEditor.java 309 * Finds or creates a InterfaceMethodrefConstant constant pool entry with the
311 * @return the constant pool index of the InterfaceMethodrefConstant.
327 * Finds or creates a InterfaceMethodrefConstant constant pool entry with the
329 * @return the constant pool index of the InterfaceMethodrefConstant.
344 * Finds or creates a InterfaceMethodrefConstant constant pool entry for the
346 * @return the constant pool index of the InterfaceMethodrefConstant.
360 * Finds or creates a InterfaceMethodrefConstant constant pool entry with the
362 * @return the constant pool index of the InterfaceMethodrefConstant.
378 * Finds or creates a InterfaceMethodrefConstant constant pool entry with the
381 * @return the constant pool index of the InterfaceMethodrefConstant
    [all...]
ConstantPoolRemapper.java 137 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant)
139 interfaceMethodrefConstant.u2classIndex =
140 remapConstantIndex(interfaceMethodrefConstant.u2classIndex);
141 interfaceMethodrefConstant.u2nameAndTypeIndex =
142 remapConstantIndex(interfaceMethodrefConstant.u2nameAndTypeIndex);
  /external/proguard/src/proguard/classfile/constant/visitor/
ConstantVisitor.java 42 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant);
  /external/proguard/src/proguard/obfuscate/
NameAndTypeUsageMarker.java 74 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant)
76 visitRefConstant(clazz, interfaceMethodrefConstant);
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 241 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant)
243 visitRefConstant(clazz, interfaceMethodrefConstant);
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 234 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant)
236 println(visitorInfo(interfaceMethodrefConstant) + " InterfaceMethodref [" +
237 clazz.getClassName(interfaceMethodrefConstant.u2classIndex) + "." +
238 clazz.getName(interfaceMethodrefConstant.u2nameAndTypeIndex) + " " +
239 clazz.getType(interfaceMethodrefConstant.u2nameAndTypeIndex) + "]");
    [all...]
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 184 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant)
186 visitAnyMethodrefConstant(clazz, interfaceMethodrefConstant);
  /external/proguard/src/proguard/optimize/peephole/
MethodInliner.java 439 public void visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) {}
  /external/proguard/src/proguard/classfile/io/
LibraryClassReader.java 336 case ClassConstants.CONSTANT_InterfaceMethodref: return new InterfaceMethodrefConstant();
ProgramClassReader.java 760 case ClassConstants.CONSTANT_InterfaceMethodref: return new InterfaceMethodrefConstant();
    [all...]
  /prebuilts/tools/common/proguard/
proguard4.7.zip 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 

Completed in 1968 milliseconds