Searched refs:ntindex (Results 1 – 1 of 1) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | ConstPool.java | 1300 public MemberrefInfo(int cindex, int ntindex) { in MemberrefInfo() argument 1302 nameAndTypeIndex = ntindex; in MemberrefInfo() 1318 abstract protected int copy2(ConstPool dest, int cindex, int ntindex); in copy2() argument 1339 public FieldrefInfo(int cindex, int ntindex) { in FieldrefInfo() argument 1340 super(cindex, ntindex); in FieldrefInfo() 1351 protected int copy2(ConstPool dest, int cindex, int ntindex) { in copy2() argument 1352 return dest.addFieldrefInfo(cindex, ntindex); in copy2() 1359 public MethodrefInfo(int cindex, int ntindex) { in MethodrefInfo() argument 1360 super(cindex, ntindex); in MethodrefInfo() 1371 protected int copy2(ConstPool dest, int cindex, int ntindex) { in copy2() argument [all …]
|