Searched defs:indexes (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DSnmpCachedData.java63 * @param indexes The table entry indexes, sorted in ascending order.
65 * order in <code>indexes</code>: <code>datas[i]</code>
67 * <code>indexes[i]</code>
69 public SnmpCachedData(long lastUpdated, SnmpOid indexes[], argument
72 this.indexes = indexes;
102 this.indexes = new SnmpOid[size];
106 indexMap.keySet().toArray(this.indexes);
119 * The table entry indexes, sorte
121 public final SnmpOid indexes[]; field in class:SnmpCachedData
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUBiDiProps.java73 // read indexes[]
77 throw new IOException("indexes[0] too small in "+DATA_FILE_NAME);
79 indexes=new int[count];
81 indexes[0]=count;
83 indexes[i]=inputStream.readInt();
90 count=indexes[IX_MIRROR_LENGTH];
99 count=indexes[IX_JG_LIMIT]-indexes[IX_JG_START];
129 indexes=new int[IX_TOP];
130 indexes[
152 private int indexes[]; field in class:UBiDiProps
[all...]
H A DNormalizerImpl.java108 /* indexes[] value names */
152 * data the index array offset of the indexes for that lead surrogate.
169 * data the index array offset of the indexes for that lead surrogate.
184 * data the index array offset of the indexes for that lead surrogate.
201 private static int[] indexes; field in class:NormalizerImpl
245 return indexes[index];
263 // read the indexes
264 indexes = reader.readIndexes(NormalizerImpl.INDEX_TOP);
266 byte[] normBytes = new byte[indexes[NormalizerImpl.INDEX_TRIE_SIZE]];
268 int combiningTableTop = indexes[NormalizerImp
[all...]
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableSorter.java74 int indexes[]; field in class:TableSorter
80 indexes = new int[0]; // For consistency.
201 // Set up a new array of indexes with the right number of elements
203 indexes = new int[rowCount];
207 indexes[row] = row;
220 if (indexes.length != model.getRowCount()) {
230 // qsort(0, indexes.length-1);
231 shuttlesort(indexes.clone(), indexes, 0, indexes
[all...]
/openjdk7/jdk/src/share/classes/sun/net/idn/
H A DStringPrep.java124 /* indexes[] value names */
146 * data the index array offset of the indexes for that lead surrogate.
159 private int[] indexes; field in class:StringPrep
208 // read the indexes
209 indexes = reader.readIndexes(INDEX_TOP);
211 byte[] sprepBytes = new byte[indexes[INDEX_TRIE_SIZE]];
214 //indexes[INDEX_MAPPING_DATA_SIZE] store the size of mappingData in bytes
215 mappingData = new char[indexes[INDEX_MAPPING_DATA_SIZE]/2];
226 doNFKC = ((indexes[OPTIONS] & NORMALIZATION_ON) > 0);
227 checkBiDi = ((indexes[OPTION
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java209 * array contains the indexes of the constant pool items that contain the
1731 * particular, it converts type table indexes to constant pool indexes.
2100 int u, v, label; // indexes in b
2101 int i, j; // loop indexes
2113 * instruction, adds an entry in (a copy of) the indexes and sizes
2127 int[] allIndexes = new int[0]; // copy of indexes
2567 * to have several entries for the same instruction in the <tt>indexes</tt>
2571 * @param indexes current positions of the instructions to be resized. Each
2578 * instruction designated by <tt>indexes</t
2586 getNewOffset( final int[] indexes, final int[] sizes, final int begin, final int end) argument
2621 getNewOffset( final int[] indexes, final int[] sizes, final Label label) argument
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp592 int *indexes = NEW_RESOURCE_ARRAY(int, num_options); local
594 indexes[i] = exc_handler(i)->catch_klass_index();
599 indexes,
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c1178 static int indexes[NLUT] = INDEXES; local
1232 ((lookup->table[srcPixel[indexes[0]]] << 24) |
1233 (lookup->table[srcPixel[indexes[1]]] << 16) |
1234 (lookup->table[srcPixel[indexes[2]]] << 8) |
1235 lookup->table[srcPixel[indexes[3]]]);
1237 ((lookup->table[srcPixel[indexes[4]]] << 24) |
1238 (lookup->table[srcPixel[indexes[5]]] << 16) |
1239 (lookup->table[srcPixel[indexes[6]]] << 8) |
1240 lookup->table[srcPixel[indexes[7]]]);
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java1383 String[] getStrings(Short[] indexes) { argument
1384 String[] res = new String[indexes.length];
1385 for (int i = 0; i < indexes.length; i++)
1386 res[i] = getString(indexes[i]);

Completed in 91 milliseconds