Home
last modified time | relevance | path

Searched refs:MethodrefInfo (Results 1 – 3 of 3) sorted by relevance

/external/javassist/src/test/javassist/bytecode/
DBytecodeTest.java625 MethodrefInfo mi1 = new MethodrefInfo(ui1.index, ui3.index, n++); in testConstInfos()
626 MethodrefInfo mi2 = new MethodrefInfo(ui1.index, ui3.index, n++); in testConstInfos()
627 MethodrefInfo mi3 = new MethodrefInfo(ui1.index, ui1.index, n++); in testConstInfos()
628 MethodrefInfo mi4 = new MethodrefInfo(ui2.index, ui3.index, n++); in testConstInfos()
/external/javassist/src/main/javassist/bytecode/
DConstPool.java54 public static final int CONST_Methodref = MethodrefInfo.tag;
1033 return addItem(new MethodrefInfo(classInfo, in addMethodrefInfo()
1330 case MethodrefInfo.tag : // 10 in readOne()
1331 info = new MethodrefInfo(in, numOfItems); in readOne()
1753 class MethodrefInfo extends MemberrefInfo class
1757 public MethodrefInfo(int cindex, int ntindex, int thisIndex) in MethodrefInfo() method in MethodrefInfo
1762 public MethodrefInfo(DataInputStream in, int thisIndex) in MethodrefInfo() method in MethodrefInfo
DClassFileWriter.java630 output.write(MethodrefInfo.tag); in addMethodrefInfo()