• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/

Lines Matching refs:index

59      * The type of instructions with a local variable index argument.
64 * The type of instructions with an implicit local variable index argument.
201 int index;
267 * The index of the constant pool item that contains the name of the source
477 index = 1;
734 out.putShort(index).putByteArray(pool.data, 0, pool.length);
863 * @return the index of a new or already existing constant item with the
867 return newConstItem(cst).index;
877 * @return the index of a new or already existing UTF8 item.
884 result = new Item(index++, key);
887 return result.index;
897 * @return the index of a new or already existing class reference item.
900 return newClassItem(value).index;
917 result = new Item(index++, key2);
932 * @return the index of a new or already existing field reference item.
940 result = new Item(index++, key3);
943 return result.index;
967 result = new Item(index++, key3);
983 * @return the index of a new or already existing method reference item.
991 return newMethodItem(owner, name, desc, itf).index;
1006 result = new Item(index++, key);
1024 result = new Item(index++, key);
1042 result = new Item(index, key);
1044 index += 2;
1061 result = new Item(index, key);
1063 index += 2;
1080 result = new Item(index++, key2);
1094 * @return the index of a new or already existing name and type item.
1101 result = new Item(index++, key2);
1104 return result.index;
1130 if (index > threshold) {
1137 int index = j.hashCode % newItems.length;
1139 j.next = newItems[index];
1140 newItems[index] = j;
1147 int index = i.hashCode % items.length;
1148 i.next = items[index];
1149 items[index] = i;