Searched defs:SortedMap (Results 1 - 18 of 18) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DPlatform.java30 import java.util.SortedMap;
71 static <K, V1, V2> SortedMap<K, V2> mapsTransformEntriesSortedMap( argument
72 SortedMap<K, V1> fromMap,
79 static <K, V> SortedMap<K, V> mapsAsMapSortedSet(SortedSet<K> set,
93 static <K, V> SortedMap<K, V> mapsFilterSortedMap(SortedMap<K, V> map,
H A DImmutableSortedMap.java30 import java.util.SortedMap;
36 * An immutable {@link SortedMap}. Does not permit null keys or values.
238 SortedMap<K, ? extends V> map) {
251 if (map instanceof SortedMap) {
252 SortedMap<?, ?> sortedMap = (SortedMap<?, ?>) map;
317 * such as creating a {@code SortedMap<Integer, String>} with a {@code
476 * <p>The {@link SortedMap#headMap} documentation states that a submap of a
491 * <p>The {@link SortedMap#headMap} documentation states that a submap of a
507 * <p>The {@link SortedMap#subMa
237 copyOfSorted( SortedMap<K, ? extends V> map) argument
[all...]
H A DMaps.java59 import java.util.SortedMap;
68 * {@link SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts
299 * ImmutableSortedMap#copyOfSorted(SortedMap)} instead.
306 public static <K, V> TreeMap<K, V> newTreeMap(SortedMap<K, ? extends V> map) {
382 if (left instanceof SortedMap) {
383 SortedMap<K, ? extends V> sortedLeft = (SortedMap<K, ? extends V>) left;
446 if (map instanceof SortedMap) {
447 return Collections.unmodifiableSortedMap((SortedMap<K, ? extends V>) map);
594 SortedMap<
593 difference( SortedMap<K, ? extends V> left, Map<? extends K, ? extends V> right) argument
1536 transformValues( SortedMap<K, V1> fromMap, Function<? super V1, V2> function) argument
1700 transformEntries( SortedMap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1766 transformEntriesIgnoreNavigable( SortedMap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
2163 filterKeys( SortedMap<K, V> unfiltered, final Predicate<? super K> keyPredicate) argument
2309 filterValues( SortedMap<K, V> unfiltered, final Predicate<? super V> valuePredicate) argument
2457 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2463 filterSortedIgnoreNavigable( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DSynchronized.java41 import java.util.SortedMap;
1048 static <K, V> SortedMap<K, V> sortedMap( argument
1049 SortedMap<K, V> sortedMap, @Nullable Object mutex) {
1054 implements SortedMap<K, V> {
1056 SynchronizedSortedMap(SortedMap<K, V> delegate, @Nullable Object mutex) {
1060 @Override SortedMap<K, V> delegate() {
1061 return (SortedMap<K, V>) super.delegate();
1076 @Override public SortedMap<K, V> headMap(K toKey) {
1088 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
1094 @Override public SortedMap<
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedMap.java29 import java.util.SortedMap;
38 extends ForwardingImmutableMap<K, V> implements SortedMap<K, V> {
49 private final transient SortedMap<K, V> sortedDelegate;
59 ImmutableSortedMap(SortedMap<K, V> delegate, Comparator<? super K> comparator) {
69 SortedMap<K, V> delegate = newModifiableDelegate(comparator);
122 SortedMap<K, ? extends V> map) {
148 SortedMap<K, V> delegate = newModifiableDelegate(comparator);
156 SortedMap<K, V> map, Entry<? extends K, ? extends V> entry) {
209 SortedMap<K, V> delegate = newModifiableDelegate(comparator);
304 private ImmutableSortedMap<K, V> newView(SortedMap<
121 copyOfSorted( SortedMap<K, ? extends V> map) argument
155 putEntryWithChecks( SortedMap<K, V> map, Entry<? extends K, ? extends V> entry) argument
308 newView( SortedMap<K, V> delegate, Comparator<? super K> comparator) argument
[all...]
H A DPlatform.java31 import java.util.SortedMap;
123 static <K, V1, V2> SortedMap<K, V2> mapsTransformEntriesSortedMap( argument
124 SortedMap<K, V1> fromMap,
129 static <K, V> SortedMap<K, V> mapsAsMapSortedSet(
139 static <K, V> SortedMap<K, V> mapsFilterSortedMap( argument
140 SortedMap<K, V> unfiltered, Predicate<? super Map.Entry<K, V>> predicate) {
H A DSynchronized.java35 import java.util.SortedMap;
1032 static <K, V> SortedMap<K, V> sortedMap( argument
1033 SortedMap<K, V> sortedMap, @Nullable Object mutex) {
1038 implements SortedMap<K, V> {
1040 SynchronizedSortedMap(SortedMap<K, V> delegate, @Nullable Object mutex) {
1044 @Override SortedMap<K, V> delegate() {
1045 return (SortedMap<K, V>) super.delegate();
1060 @Override public SortedMap<K, V> headMap(K toKey) {
1072 @Override public SortedMap<K, V> subMap(K fromKey, K toKey) {
1078 @Override public SortedMap<
[all...]
H A DMaps.java54 import java.util.SortedMap;
63 * {@link SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts
294 * ImmutableSortedMap#copyOfSorted(SortedMap)} instead.
301 public static <K, V> TreeMap<K, V> newTreeMap(SortedMap<K, ? extends V> map) {
377 if (left instanceof SortedMap) {
378 SortedMap<K, ? extends V> sortedLeft = (SortedMap<K, ? extends V>) left;
441 if (map instanceof SortedMap) {
442 return Collections.unmodifiableSortedMap((SortedMap<K, ? extends V>) map);
589 SortedMap<
588 difference( SortedMap<K, ? extends V> left, Map<? extends K, ? extends V> right) argument
1334 transformValues( SortedMap<K, V1> fromMap, Function<? super V1, V2> function) argument
1451 transformEntries( SortedMap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1457 transformEntriesIgnoreNavigable( SortedMap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1746 filterKeys( SortedMap<K, V> unfiltered, final Predicate<? super K> keyPredicate) argument
1854 filterValues( SortedMap<K, V> unfiltered, final Predicate<? super V> valuePredicate) argument
1965 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1971 filterSortedIgnoreNavigable( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java38 import java.util.SortedMap;
194 SortedMap<Integer, AtomicInteger> replica = Maps.newTreeMap();
838 SortedMap<Integer, AtomicInteger> replica,
846 SortedMap<Integer, AtomicInteger> replica,
837 removeMinFromReplica( SortedMap<Integer, AtomicInteger> replica, int minValue) argument
845 removeMaxFromReplica( SortedMap<Integer, AtomicInteger> replica, int maxValue) argument
H A DMapsTest.java63 import java.util.SortedMap;
271 SortedMap<Integer, Integer> map = Maps.newTreeMap();
474 private static final SortedMap<Integer, Integer> SORTED_EMPTY = Maps.newTreeMap();
475 private static final SortedMap<Integer, Integer> SORTED_SINGLETON =
518 SortedMap<Integer, String> left =
523 SortedMap<Integer, String> right =
559 SortedMap<Integer, String> left = Maps.newTreeMap(
561 SortedMap<Integer, String> right =
595 SortedMap<Integer, String> left =
597 SortedMap<Intege
1757 sortedNotNavigable( final SortedMap<K, V> map) argument
[all...]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DMapsTest.java51 import java.util.SortedMap;
210 SortedMap<Integer, Integer> map = Maps.newTreeMap();
408 private static final SortedMap<Integer, Integer> SORTED_EMPTY = Maps.newTreeMap();
409 private static final SortedMap<Integer, Integer> SORTED_SINGLETON =
452 SortedMap<Integer, String> left =
457 SortedMap<Integer, String> right =
493 SortedMap<Integer, String> left = Maps.newTreeMap(
495 SortedMap<Integer, String> right =
529 SortedMap<Integer, String> left =
531 SortedMap<Intege
1413 sortedNotNavigable( final SortedMap<K, V> map) argument
[all...]
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 282 milliseconds