Searched refs:bootstrapMethodIndex (Results 1 – 2 of 2) sorted by relevance
30 private final int bootstrapMethodIndex; field in CstInvokeDynamic55 public static CstInvokeDynamic make(int bootstrapMethodIndex, CstNat nat) { in make() argument56 return new CstInvokeDynamic(bootstrapMethodIndex, nat); in make()65 private CstInvokeDynamic(int bootstrapMethodIndex, CstNat nat) { in CstInvokeDynamic() argument66 this.bootstrapMethodIndex = bootstrapMethodIndex; in CstInvokeDynamic()108 return "InvokeDynamic(" + klass + ":" + bootstrapMethodIndex + ", " + nat.toHuman() + ")"; in toHuman()121 int result = Integer.compare(bootstrapMethodIndex, otherInvoke.getBootstrapMethodIndex()); in compareTo0()145 return bootstrapMethodIndex; in getBootstrapMethodIndex()
381 int bootstrapMethodIndex = bytes.getUnsignedShort(at + 1); in parse0() local384 cst = CstInvokeDynamic.make(bootstrapMethodIndex, nat); in parse0()