Home
last modified time | relevance | path

Searched refs:copyOne (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java490 ReferenceEntry<Object, Object> copyOne = map.copyEntry(entryOne, null); in testCopyEntry() local
494 assertSame(valueOne, copyOne.getValueReference().get()); in testCopyEntry()
495 assertConnected(map, copyOne, entryTwo); in testCopyEntry()
497 ReferenceEntry<Object, Object> copyTwo = map.copyEntry(entryTwo, copyOne); in testCopyEntry()
500 assertSame(copyOne, copyTwo.getNext()); in testCopyEntry()
502 assertConnected(map, copyOne, copyTwo); in testCopyEntry()
/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java933 ReferenceEntry<Object, Object> copyOne = map.copyEntry(entryOne, null); in testCopyEntry() local
937 assertSame(valueOne, copyOne.getValueReference().get()); in testCopyEntry()
938 assertConnected(map, copyOne, entryTwo); in testCopyEntry()
940 ReferenceEntry<Object, Object> copyTwo = map.copyEntry(entryTwo, copyOne); in testCopyEntry()
943 assertSame(copyOne, copyTwo.getNext()); in testCopyEntry()
945 assertConnected(map, copyOne, copyTwo); in testCopyEntry()