/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingNavigableMapTest.java | 116 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { 364 forward().subMap("a", false, "b", true); 365 assertEquals("[subMap(Object,boolean,Object,boolean)]", getCalls());
|
ImmutableSortedMapTest.java | 253 .subMap("b", "d"); 743 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", false, "two", false); 750 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", true, "two", false); 758 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", false, "two", true); 766 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", true, "two", true);
|
MapsTest.java | 694 assertThat(map.subMap("one", "two").entrySet()).has().exactly( 740 map.subMap("a", "z").keySet().add("a"); 790 assertThat(map.subMap("one", "two").entrySet()).has().exactly( 799 map.subMap("one", false, "tr", true)); [all...] |
TreeBasedTableTest.java | 117 table.row("b").subMap("c", "x").clear(); 119 table.row("b").subMap("b", "y").clear(); 314 = sortedTable.rowMap().subMap("cat", "egg");
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
SortedMapTestBase.java | 215 checkSubMap(ref.subMap(key0, key1), map.subMap(key0, key1)); 220 map.subMap(0, 100); 222 map.subMap(100, 0);
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/ |
output_test_helper.cc | 23 using SubMap = std::vector<std::pair<std::string, std::string>>; 32 SubMap& GetSubstitutions() { 35 static SubMap map = { 54 SubMap const& subs = GetSubstitutions();
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
SortedMapNavigationTester.java | 142 .subMap(entries.get(i).getKey(), entries.get(j).getKey()) 152 navigableMap.subMap(c.getKey(), a.getKey());
|
/libcore/ojluni/src/main/java/java/util/ |
NavigableMap.java | 60 * {@link #subMap(Object, boolean, Object, boolean) subMap(K, boolean, K, boolean)}, 81 * {@link #subMap(Object, Object) subMap(K, K)}, 310 * submap either of whose endpoints lie outside its range. 333 NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, 397 * <p>Equivalent to {@code subMap(fromKey, true, toKey, false)}. 403 SortedMap<K,V> subMap(K fromKey, K toKey);
|
SortedMap.java | 87 * SortedMap<String, V> sub = m.subMap(low, high+"\0");</pre> 93 * SortedMap<String, V> sub = m.subMap(low+"\0", high);</pre> 154 SortedMap<K,V> subMap(K fromKey, K toKey);
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
ConcurrentNavigableMap.java | 62 ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, 84 ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey);
|
ConcurrentSkipListMap.java | [all...] |
/system/core/libbacktrace/ |
BacktraceMap.cpp | 113 char cmd[sizeof(pid_t)*3 + sizeof("vmmap -w -resident -submap -allSplitLibs -interleaved ") + 1]; 121 snprintf(cmd, sizeof(cmd), "vmmap -w -resident -submap -allSplitLibs -interleaved %d", pid_);
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
TreeSubMapTest.java | 48 return map.subMap(one, true, seven, false); 455 * subMap returns map with keys in requested range 459 SortedMap sm = map.subMap(two, four); 490 SortedMap sm = map.subMap(two, three); 982 * subMap returns map with keys in requested range 986 SortedMap sm = map.subMap(m2, m4); 1017 SortedMap sm = map.subMap(m2, m3);
|
ConcurrentSkipListMapTest.java | 823 * subMap returns map with keys in requested range 827 NavigableMap sm = map.subMap(two, true, four, false); 865 NavigableMap sm = map.subMap(two, true, three, false); 999 bashSubMap(map.subMap(0, true, mapSize, false), [all...] |
ConcurrentSkipListSubMapTest.java | 49 return map.subMap(one, true, seven, false); 620 * subMap returns map with keys in requested range 624 SortedMap sm = map.subMap(two, four); 655 SortedMap sm = map.subMap(two, three); [all...] |
TreeMapTest.java | 628 * subMap returns map with keys in requested range 632 NavigableMap sm = map.subMap(two, true, four, false); 670 NavigableMap sm = map.subMap(two, true, three, false); 804 bashSubMap(map.subMap(0, true, mapSize, false), 938 // subMap - pick direction and endpoint inclusion randomly 947 NavigableMap<Integer,Integer> sm = map.subMap( 956 NavigableMap<Integer,Integer> sm = map.subMap( [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSortedMap.java | 274 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) { 278 return newView(sortedDelegate.subMap(fromKey, toKey)); 281 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
MapTestSuiteBuilder.java | 172 // TODO(user): make this trigger only if the map is a submap 173 // currently, the KeySetGenerator won't work properly for a subset of a keyset of a submap
|
DerivedCollectionGenerators.java | 332 * Two bounds (from and to) define how to build a subMap. 522 * Calls the smallest subMap overload that filters out the extreme values. This method is 531 return map.subMap(firstInclusive, lastExclusive);
|
/packages/apps/Dialer/java/com/android/dialer/phonelookup/composite/ |
CompositePhoneLookup.java | 183 Map<DialerPhoneNumber, T> submap = local 189 phoneLookup.getMostRecentInfo(ImmutableMap.copyOf(submap));
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSortedMapTest.java | 176 .subMap("b", "d"); 644 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", false, "two", false); 651 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", true, "two", false); 659 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", false, "two", true); 667 ImmutableSortedMap.of("one", 1, "two", 2, "three", 3).subMap("one", true, "two", true);
|
TreeBasedTableTest.java | 80 table.row("b").subMap("c", "x").clear(); 82 table.row("b").subMap("b", "y").clear(); 271 = sortedTable.rowMap().subMap("cat", "egg");
|
/external/guava/guava/src/com/google/common/collect/ |
Maps.java | 864 public SortedMap<K, V> subMap(K fromKey, K toKey) { 906 public NavigableMap<K, V> subMap( [all...] |
Synchronized.java | 1088 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) { 1090 return sortedMap(delegate().subMap(fromKey, toKey), mutex); [all...] |
/prebuilts/misc/common/robolectric/android-all/ |
android-all-7.0.0_r1-robolectric-0.jar | |