Searched refs:addInterfaceMethodrefInfo (Results 1 – 5 of 5) sorted by relevance
/external/javassist/src/main/javassist/convert/ |
D | TransformCall.java | 121 newIndex = cp.addInterfaceMethodrefInfo(ci, nt); in match()
|
/external/javassist/src/test/javassist/bytecode/ |
D | BytecodeTest.java | 723 assertTrue(n5 != cp.addInterfaceMethodrefInfo(n0, n3)); in testConstInfoAdd() 724 assertTrue(cp.addInterfaceMethodrefInfo(n0, "test", "()B") in testConstInfoAdd() 725 == cp.addInterfaceMethodrefInfo(n0, "test", "()B")); in testConstInfoAdd() 726 assertTrue(cp.addInterfaceMethodrefInfo(n0, "test", "()B") in testConstInfoAdd() 727 != cp.addInterfaceMethodrefInfo(n0, "test", "()I")); in testConstInfoAdd()
|
/external/javassist/src/main/javassist/bytecode/ |
D | Bytecode.java | 987 index = constPool.addInterfaceMethodrefInfo(clazz, name, desc); in addInvokespecial() 1076 index = constPool.addInterfaceMethodrefInfo(clazz, name, desc); in addInvokestatic() 1218 addIndex(constPool.addInterfaceMethodrefInfo(clazz, name, desc)); in addInvokeinterface()
|
D | ConstPool.java | 1051 public int addInterfaceMethodrefInfo(int classInfo, in addInterfaceMethodrefInfo() method in ConstPool 1056 return addInterfaceMethodrefInfo(classInfo, nt); in addInterfaceMethodrefInfo() 1067 public int addInterfaceMethodrefInfo(int classInfo, in addInterfaceMethodrefInfo() method in ConstPool 1805 return dest.addInterfaceMethodrefInfo(cindex, ntindex); in copy2()
|
D | ClassFileWriter.java | 644 public int addInterfaceMethodrefInfo(int classInfo, in addInterfaceMethodrefInfo() method in ClassFileWriter.ConstPoolWriter
|