HomeSort by relevance Sort by last modified time
    Searched refs:headMap (Results 1 - 25 of 28) sorted by null

1 2

  /external/guava/src/com/google/common/collect/
ForwardingSortedMap.java 48 public SortedMap<K, V> headMap(K toKey) {
49 return delegate().headMap(toKey);
TreeMultiset.java 164 return new SortedMapBasedElementSet(sortedMap().headMap(toElement));
AbstractMultimap.java 924 return new SortedKeySet(sortedMap().headMap(toElement));
    [all...]
ImmutableSortedMap.java 606 * <p>The {@link SortedMap#headMap} documentation states that a submap of a
612 public ImmutableSortedMap<K, V> headMap(K toKey) {
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentNavigableMap.java 39 ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive);
61 ConcurrentNavigableMap<K,V> headMap(K toKey);
ConcurrentSkipListSet.java 387 return new ConcurrentSkipListSet<E>(m.headMap(toElement, inclusive));
ConcurrentSkipListMap.java     [all...]
  /libcore/luni/src/main/java/java/util/
SortedMap.java 64 public SortedMap<K,V> headMap(K endKey);
NavigableMap.java 31 * ones. Methods {@code subMap}, {@code headMap},
52 * {@link #headMap headMap(K)}, and
333 NavigableMap<K,V> headMap(K toKey, boolean inclusive);
378 * <p>Equivalent to {@code headMap(toKey, false)}.
384 SortedMap<K,V> headMap(K toKey);
TreeMap.java 707 public NavigableMap<K, V> headMap(K to, boolean inclusive) {
712 public SortedMap<K, V> headMap(K toExclusive) {
    [all...]
TreeSet.java 382 return new TreeSet<E>(backingMap.headMap(end, endInclusive));
Collections.java 825 @Override public SortedMap<K, V> headMap(K endKey) {
827 return new SynchronizedSortedMap<K, V>(sm.headMap(endKey),
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapTest.java 298 * @tests java.util.TreeMap#headMap(java.lang.Object)
302 // java.util.TreeMap.headMap(java.lang.Object)
303 Map head = tm.headMap("100");
318 SortedMap<Integer, Double> smap = map.headMap(null);
355 assertEquals(0, treemap.headMap(null).size());
358 SortedMap<String, String> headMap = treemap.headMap("100");
359 headMap.headMap("100");
367 sub = intMap.headMap(-1)
    [all...]
TreeMapExtendTest.java 601 subMap_default.headMap(endKey);
608 subMap_startExcluded_endExcluded.headMap(endKey);
615 subMap_startExcluded_endIncluded.headMap(endKey);
622 subMap_startIncluded_endExcluded.headMap(endKey);
629 subMap_startIncluded_endIncluded.headMap(endKey);
635 SortedMap headMap = null;
637 headMap = subMap_default.headMap(endKey);
638 assertEquals(0, headMap.size());
640 headMap = subMap_startExcluded_endExcluded.headMap(endKey)
    [all...]
SortedMapTestBase.java 195 checkSubMap(ref.headMap(key), map.headMap(key));
197 checkSubMap(ref.headMap(-1), map.headMap(-1));
RefSortedMap.java 188 public SortedMap<K, V> headMap(K key) {
278 public SortedMap<K, V> headMap(K key) {
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeMapTest.java 212 // java.util.TreeMap.headMap(java.lang.Object)
213 Map head = tm.headMap("100");
218 SortedMap sort = tm.headMap("100");
220 sort.headMap("50");
227 tm.headMap(this);
234 tm.headMap(null);
249 SortedMap<Integer, Double> smap = map.headMap(null);
286 assertEquals(0, treemap.headMap(null).size());
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMergeAlbum.java 92 SortedMap<Integer, int[]> head = mIndex.headMap(start + 1);
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 3042 milliseconds

1 2