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.java464 ReferenceEntry<Object, Object> copyOne = map.copyEntry(entryOne, null); in testCopyEntry() local
468 assertSame(valueOne, copyOne.getValueReference().get()); in testCopyEntry()
469 assertConnected(map, copyOne, entryTwo); in testCopyEntry()
471 ReferenceEntry<Object, Object> copyTwo = map.copyEntry(entryTwo, copyOne); in testCopyEntry()
474 assertSame(copyOne, copyTwo.getNext()); in testCopyEntry()
476 assertConnected(map, copyOne, copyTwo); in testCopyEntry()
/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java977 ReferenceEntry<Object, Object> copyOne = map.copyEntry(entryOne, null); in testCopyEntry() local
981 assertSame(valueOne, copyOne.getValueReference().get()); in testCopyEntry()
982 assertConnected(map, copyOne, entryTwo); in testCopyEntry()
984 ReferenceEntry<Object, Object> copyTwo = map.copyEntry(entryTwo, copyOne); in testCopyEntry()
987 assertSame(copyOne, copyTwo.getNext()); in testCopyEntry()
989 assertConnected(map, copyOne, copyTwo); in testCopyEntry()