Searched defs:firstValue (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DInheritableThreadLocal.java78 * @param firstValue value for the initial entry of the table.
81 void createMap(Thread t, T firstValue) { argument
82 t.inheritableThreadLocals = new ThreadLocalMap(this, firstValue);
H A DThreadLocal.java221 * @param firstValue value for the initial entry of the map
224 void createMap(Thread t, T firstValue) { argument
225 t.threadLocals = new ThreadLocalMap(this, firstValue);
324 * Construct a new map initially containing (firstKey, firstValue).
328 ThreadLocalMap(ThreadLocal firstKey, Object firstValue) { argument
331 table[i] = new Entry(firstKey, firstValue);
/openjdk7/jdk/test/java/util/WeakHashMap/
H A DGCDuringIteration.java81 <K,V> V firstValue(Map<K,V> map) { method in class:GCDuringIteration
101 int first = firstValue(map);
109 equal(firstValue(map), first-1);
113 int first = firstValue(map);
126 equal(firstValue(map), first-1);
130 int first = firstValue(map);
137 equal(firstValue(map), first);
144 equal(firstValue(map), first-2);
148 int first = firstValue(map);
155 equal(firstValue(ma
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaScrollBarUI.java330 int getValueFromOffset(final int xOffset, final int yOffset, final int firstValue) { argument
353 int newValue = firstValue + changeByValue;

Completed in 66 milliseconds