Searched refs:interfaceMethodrefConstant (Results 1 – 7 of 7) sorted by relevance
/external/proguard/src/proguard/classfile/editor/ |
D | MemberReferenceFixer.java | 149 …visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) in visitInterfaceMethodrefConstant() argument 152 Member referencedMember = interfaceMethodrefConstant.referencedMember; in visitInterfaceMethodrefConstant() 155 Clazz referencedClass = interfaceMethodrefConstant.referencedClass; in visitInterfaceMethodrefConstant() 161 if (!interfaceMethodrefConstant.getName(clazz).equals(newName) || in visitInterfaceMethodrefConstant() 162 !interfaceMethodrefConstant.getType(clazz).equals(newType)) in visitInterfaceMethodrefConstant() 166 debug(clazz, interfaceMethodrefConstant, referencedClass, referencedMember); in visitInterfaceMethodrefConstant() 170 interfaceMethodrefConstant.u2nameAndTypeIndex = in visitInterfaceMethodrefConstant() 180 clazz.constantPoolEntryAccept(interfaceMethodrefConstant.u2classIndex, this); in visitInterfaceMethodrefConstant() 190 …System.out.println(" Ref method = "+interfaceMethodrefConstant.getName(clazz)+interfaceMethod… in visitInterfaceMethodrefConstant() 196 new MethodrefConstant(interfaceMethodrefConstant.u2classIndex, in visitInterfaceMethodrefConstant() [all …]
|
D | ConstantAdder.java | 201 …visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) in visitInterfaceMethodrefConstant() argument 204 clazz.constantPoolEntryAccept(interfaceMethodrefConstant.u2classIndex, this); in visitInterfaceMethodrefConstant() 210 … interfaceMethodrefConstant.getName(clazz), in visitInterfaceMethodrefConstant() 211 … interfaceMethodrefConstant.getType(clazz), in visitInterfaceMethodrefConstant() 212 … interfaceMethodrefConstant.referencedClass, in visitInterfaceMethodrefConstant() 213 … interfaceMethodrefConstant.referencedMember); in visitInterfaceMethodrefConstant()
|
D | ConstantPoolRemapper.java | 165 …visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) in visitInterfaceMethodrefConstant() argument 167 interfaceMethodrefConstant.u2classIndex = in visitInterfaceMethodrefConstant() 168 remapConstantIndex(interfaceMethodrefConstant.u2classIndex); in visitInterfaceMethodrefConstant() 169 interfaceMethodrefConstant.u2nameAndTypeIndex = in visitInterfaceMethodrefConstant() 170 remapConstantIndex(interfaceMethodrefConstant.u2nameAndTypeIndex); in visitInterfaceMethodrefConstant()
|
/external/proguard/src/proguard/classfile/instruction/ |
D | ConstantInstruction.java | 246 …visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) in visitInterfaceMethodrefConstant() argument 248 clazz.constantPoolEntryAccept(interfaceMethodrefConstant.u2nameAndTypeIndex, this); in visitInterfaceMethodrefConstant()
|
/external/proguard/src/proguard/classfile/constant/visitor/ |
D | ConstantVisitor.java | 44 …isitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant); in visitInterfaceMethodrefConstant() argument
|
/external/proguard/src/proguard/classfile/visitor/ |
D | ClassPrinter.java | 264 …visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) in visitInterfaceMethodrefConstant() argument 266 println(visitorInfo(interfaceMethodrefConstant) + " InterfaceMethodref [" + in visitInterfaceMethodrefConstant() 267 clazz.getClassName(interfaceMethodrefConstant.u2classIndex) + "." + in visitInterfaceMethodrefConstant() 268 clazz.getName(interfaceMethodrefConstant.u2nameAndTypeIndex) + " " + in visitInterfaceMethodrefConstant() 269 clazz.getType(interfaceMethodrefConstant.u2nameAndTypeIndex) + "]"); in visitInterfaceMethodrefConstant()
|
/external/proguard/src/proguard/classfile/util/ |
D | SimplifiedVisitor.java | 197 …visitInterfaceMethodrefConstant(Clazz clazz, InterfaceMethodrefConstant interfaceMethodrefConstant) in visitInterfaceMethodrefConstant() argument 199 visitAnyMethodrefConstant(clazz, interfaceMethodrefConstant); in visitInterfaceMethodrefConstant()
|