Searched refs:entriesInCommon (Results 1 – 6 of 6) sorted by relevance
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | MapsTest.java | 291 assertEquals(EMPTY, diff.entriesInCommon()); in testMapDifferenceEmptyEmpty() 301 assertEquals(EMPTY, diff.entriesInCommon()); in testMapDifferenceEmptySingleton() 311 assertEquals(EMPTY, diff.entriesInCommon()); in testMapDifferenceSingletonEmpty() 326 assertEquals(ImmutableMap.of(1, "a"), diff1.entriesInCommon()); in testMapDifferenceTypical() 338 assertEquals(ImmutableMap.of(1, "a"), diff2.entriesInCommon()); in testMapDifferenceTypical() 386 assertEquals(ImmutableMap.of(1, "a"), diff1.entriesInCommon()); in testMapDifferencePredicateTypical() 399 assertEquals(ImmutableMap.of(1, "A"), diff2.entriesInCommon()); in testMapDifferencePredicateTypical() 424 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceEmptyEmpty() 435 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceEmptySingleton() 446 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceSingletonEmpty() [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapsTest.java | 357 assertEquals(EMPTY, diff.entriesInCommon()); in testMapDifferenceEmptyEmpty() 367 assertEquals(EMPTY, diff.entriesInCommon()); in testMapDifferenceEmptySingleton() 377 assertEquals(EMPTY, diff.entriesInCommon()); in testMapDifferenceSingletonEmpty() 392 assertEquals(ImmutableMap.of(1, "a"), diff1.entriesInCommon()); in testMapDifferenceTypical() 404 assertEquals(ImmutableMap.of(1, "a"), diff2.entriesInCommon()); in testMapDifferenceTypical() 452 assertEquals(ImmutableMap.of(1, "a"), diff1.entriesInCommon()); in testMapDifferencePredicateTypical() 465 assertEquals(ImmutableMap.of(1, "A"), diff2.entriesInCommon()); in testMapDifferencePredicateTypical() 490 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceEmptyEmpty() 501 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceEmptySingleton() 512 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceSingletonEmpty() [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | SortedMapDifference.java | 39 SortedMap<K, V> entriesInCommon(); in entriesInCommon() method
|
D | MapDifference.java | 55 Map<K, V> entriesInCommon(); in entriesInCommon() method
|
D | Maps.java | 484 public Map<K, V> entriesInCommon() { 501 && entriesInCommon().equals(other.entriesInCommon()) 509 entriesInCommon(), entriesDiffering()); 620 @Override public SortedMap<K, V> entriesInCommon() { 621 return (SortedMap<K, V>) super.entriesInCommon();
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | Maps.java | 479 public Map<K, V> entriesInCommon() { 496 && entriesInCommon().equals(other.entriesInCommon()) 504 entriesInCommon(), entriesDiffering()); 615 @Override public SortedMap<K, V> entriesInCommon() { 616 return (SortedMap<K, V>) super.entriesInCommon();
|