Home
last modified time | relevance | path

Searched refs:entriesOnlyOnRight (Results 1 – 6 of 6) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DMapsTest.java290 assertEquals(EMPTY, diff.entriesOnlyOnRight()); in testMapDifferenceEmptyEmpty()
300 assertEquals(SINGLETON, diff.entriesOnlyOnRight()); in testMapDifferenceEmptySingleton()
310 assertEquals(EMPTY, diff.entriesOnlyOnRight()); in testMapDifferenceSingletonEmpty()
325 assertEquals(ImmutableMap.of(6, "z"), diff1.entriesOnlyOnRight()); in testMapDifferenceTypical()
337 assertEquals(ImmutableMap.of(2, "b", 4, "d"), diff2.entriesOnlyOnRight()); in testMapDifferenceTypical()
385 assertEquals(ImmutableMap.of(6, "Z"), diff1.entriesOnlyOnRight()); in testMapDifferencePredicateTypical()
398 assertEquals(ImmutableMap.of(2, "b", 4, "d"), diff2.entriesOnlyOnRight()); in testMapDifferencePredicateTypical()
423 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnRight()); in testSortedMapDifferenceEmptyEmpty()
434 assertEquals(SORTED_SINGLETON, diff.entriesOnlyOnRight()); in testSortedMapDifferenceEmptySingleton()
445 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnRight()); in testSortedMapDifferenceSingletonEmpty()
[all …]
/external/guava/guava/src/com/google/common/collect/
DSortedMapDifference.java36 SortedMap<K, V> entriesOnlyOnRight(); in entriesOnlyOnRight() method
DMapDifference.java49 Map<K, V> entriesOnlyOnRight(); in entriesOnlyOnRight() method
DMaps.java479 public Map<K, V> entriesOnlyOnRight() {
500 && entriesOnlyOnRight().equals(other.entriesOnlyOnRight())
508 return Objects.hashCode(entriesOnlyOnLeft(), entriesOnlyOnRight(),
628 @Override public SortedMap<K, V> entriesOnlyOnRight() {
629 return (SortedMap<K, V>) super.entriesOnlyOnRight();
/external/guava/guava-tests/test/com/google/common/collect/
DMapsTest.java356 assertEquals(EMPTY, diff.entriesOnlyOnRight()); in testMapDifferenceEmptyEmpty()
366 assertEquals(SINGLETON, diff.entriesOnlyOnRight()); in testMapDifferenceEmptySingleton()
376 assertEquals(EMPTY, diff.entriesOnlyOnRight()); in testMapDifferenceSingletonEmpty()
391 assertEquals(ImmutableMap.of(6, "z"), diff1.entriesOnlyOnRight()); in testMapDifferenceTypical()
403 assertEquals(ImmutableMap.of(2, "b", 4, "d"), diff2.entriesOnlyOnRight()); in testMapDifferenceTypical()
451 assertEquals(ImmutableMap.of(6, "Z"), diff1.entriesOnlyOnRight()); in testMapDifferencePredicateTypical()
464 assertEquals(ImmutableMap.of(2, "b", 4, "d"), diff2.entriesOnlyOnRight()); in testMapDifferencePredicateTypical()
489 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnRight()); in testSortedMapDifferenceEmptyEmpty()
500 assertEquals(SORTED_SINGLETON, diff.entriesOnlyOnRight()); in testSortedMapDifferenceEmptySingleton()
511 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnRight()); in testSortedMapDifferenceSingletonEmpty()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DMaps.java474 public Map<K, V> entriesOnlyOnRight() {
495 && entriesOnlyOnRight().equals(other.entriesOnlyOnRight())
503 return Objects.hashCode(entriesOnlyOnLeft(), entriesOnlyOnRight(),
623 @Override public SortedMap<K, V> entriesOnlyOnRight() {
624 return (SortedMap<K, V>) super.entriesOnlyOnRight();