Searched refs:copyOne (Results 1 – 2 of 2) sorted by relevance
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapMakerInternalMapTest.java | 490 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/ |
D | LocalCacheTest.java | 933 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()
|