Searched refs:addMethodrefInfo (Results 1 – 11 of 11) sorted by relevance
/external/javassist/src/main/javassist/convert/ |
D | TransformNewClass.java | 72 newMethodIndex = cp.addMethodrefInfo(newClassIndex, nt); in transform()
|
D | TransformWriteField.java | 63 int methodref = cp.addMethodrefInfo(mi, methodName, type); in transform()
|
D | TransformNew.java | 99 return cp.addMethodrefInfo(classIndex, in computeMethodref()
|
D | TransformReadField.java | 86 int methodref = cp.addMethodrefInfo(mi, methodName, type); in transform()
|
D | TransformBefore.java | 59 newIndex = cp.addMethodrefInfo(ci, nt); in match()
|
D | TransformCall.java | 120 newIndex = cp.addMethodrefInfo(ci, nt); in match()
|
D | TransformAccessArrayField.java | 149 int methodref = cp.addMethodrefInfo(mi, methodName, signature); in replace()
|
/external/javassist/src/main/javassist/bytecode/ |
D | ClassFileWriter.java | 439 int method = constPool.addMethodrefInfo(target, nt); in addInvoke() 621 public int addMethodrefInfo(int classInfo, int nameAndTypeInfo) { in addMethodrefInfo() method in ClassFileWriter.ConstPoolWriter
|
D | Bytecode.java | 956 addIndex(constPool.addMethodrefInfo(clazz, name, desc)); in addInvokespecial() 1012 addIndex(constPool.addMethodrefInfo(clazz, name, desc)); in addInvokestatic() 1084 addIndex(constPool.addMethodrefInfo(clazz, name, desc)); in addInvokevirtual()
|
D | ConstPool.java | 825 public int addMethodrefInfo(int classInfo, String name, String type) { in addMethodrefInfo() method in ConstPool 827 return addMethodrefInfo(classInfo, nt); in addMethodrefInfo() 837 public int addMethodrefInfo(int classInfo, int nameAndTypeInfo) { in addMethodrefInfo() method in ConstPool 1372 return dest.addMethodrefInfo(cindex, ntindex); in copy2()
|
D | MethodInfo.java | 494 int mref2 = cp.addMethodrefInfo(sc, nt); in setSuperclass()
|