Searched refs:indexMap (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DSnmpCachedData.java81 * @param indexMap The table indexed table data, sorted in ascending
85 public SnmpCachedData(long lastUpdated, TreeMap<SnmpOid, Object> indexMap) { argument
86 this(lastUpdated, indexMap, true);
93 * @param indexMap The table indexed table data, sorted in ascending
97 public SnmpCachedData(long lastUpdated, TreeMap<SnmpOid, Object> indexMap, argument
100 final int size = indexMap.size();
106 indexMap.keySet().toArray(this.indexes);
107 indexMap.values().toArray(this.datas);
109 indexMap.values().toArray(this.datas);
H A DSnmpLoadedClassData.java51 * @param indexMap The table indexed table data, sorted in ascending
55 public SnmpLoadedClassData(long lastUpdated, TreeMap<SnmpOid, Object> indexMap) { argument
56 super(lastUpdated, indexMap, false);
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiLine.java668 int[] indexMap = new int[levels.length];
671 indexMap[start] = start;
674 return indexMap;
684 int[] indexMap = prepareReorder(levels, aMinLevel, aMaxLevel);
685 if (indexMap == null) {
694 return indexMap;
726 temp = indexMap[start];
727 indexMap[start] = indexMap[end];
728 indexMap[en
[all...]
H A DBidiBase.java2982 * <code>indexMap[visualIndex]==logicalIndex</code>, where
2983 * <code>indexMap</code> represents the returned array.
3019 * <code>indexMap[visualIndex]==logicalIndex</code>, where
3020 * <code>indexMap</code> represents the returned array.
3401 int[] indexMap = reorderVisual(reorderLevels);
3405 objects[objectStart + i] = temp[indexMap[i]];
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJarIndex.java51 private HashMap indexMap; field in class:JarIndex
81 indexMap = new HashMap();
171 if ((jarFiles = (LinkedList)indexMap.get(fileName)) == null) {
175 jarFiles = (LinkedList)indexMap.get(fileName.substring(0, pos));
203 // add the mapping to indexMap
204 addToList(packageName, jarName, indexMap);
215 // add the mapping to indexMap
216 addToList(fileName, jarName, indexMap);
326 addToList(name, currentJar, indexMap);
345 Iterator itr = indexMap
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DTryBlockWriter.java83 indexMap = new HashMap<Exception_data, Integer>();
87 indexMap.put(entry, i);
114 print(indexMap.get(entry));
140 private Map<Exception_data, Integer> indexMap; field in class:TryBlockWriter
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java695 Map indexMap = new HashMap(flavors.length);
726 indexMap.put(lFormat, index);
746 indexMap.putAll(textPlainIndexMap);
750 new IndexOrderComparator(indexMap, IndexedComparator.SELECT_WORST);
2514 * @param indexMap the map which maps objects into Integer indexes.
2522 protected static int compareIndices(Map indexMap, argument
2525 Integer index1 = (Integer)indexMap.get(obj1);
2526 Integer index2 = (Integer)indexMap.get(obj2);
2543 * @param indexMap the map which maps objects into Long indexes.
2551 protected static int compareLongs(Map indexMap, argument
2996 private final Map indexMap; field in class:DataTransferer.IndexOrderComparator
3000 IndexOrderComparator(Map indexMap) argument
3005 IndexOrderComparator(Map indexMap, boolean order) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.cpp2487 static int indexMap[] = { local
2520 for (int i = 0; i < (sizeof indexMap)/(sizeof *indexMap) && i < colorLen; i++) {
2521 colorsPtr[i] = DesktopColor2RGB(indexMap[i]);

Completed in 93 milliseconds