Searched refs:buildFromSorted (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DTreeMap.java195 buildFromSorted(m.size(), m.entrySet().iterator(), null, null);
314 buildFromSorted(mapSize, map.entrySet().iterator(),
638 clone.buildFromSorted(size, entrySet().iterator(), null, null);
2290 buildFromSorted(size, null, s, null);
2296 buildFromSorted(size, null, s, defaultVal);
2302 buildFromSorted(set.size(), set.iterator(), null, defaultVal);
2339 private void buildFromSorted(int size, Iterator it, method in class:TreeMap
2344 root = buildFromSorted(0, 0, size-1, computeRedLevel(size),
2362 private final Entry<K,V> buildFromSorted(int level, int lo, int hi, method in class:TreeMap
2386 left = buildFromSorted(leve
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListMap.java1429 buildFromSorted(m);
1447 clone.buildFromSorted(this);
1456 private void buildFromSorted(SortedMap<K, ? extends V> map) { method in class:ConcurrentSkipListMap
1545 * This is nearly identical to buildFromSorted, but is
1547 * as the kind of iterator needed by buildFromSorted. (They

Completed in 3800 milliseconds