HomeSort by relevance Sort by last modified time
    Searched refs:entryOne (Results 1 - 2 of 2) sorted by null

  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java 442 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null);
443 ValueReference<Object, Object> valueRefOne = map.newValueReference(entryOne, valueOne);
445 entryOne.setValueReference(valueRefOne);
447 assertSame(keyOne, entryOne.getKey());
448 assertEquals(hashOne, entryOne.getHash());
449 assertNull(entryOne.getNext());
450 assertSame(valueRefOne, entryOne.getValueReference());
455 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
462 assertSame(entryOne, entryTwo.getNext());
474 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null)
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 885 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null);
886 ValueReference<Object, Object> valueRefOne = map.newValueReference(entryOne, valueOne, 1);
888 entryOne.setValueReference(valueRefOne);
890 assertSame(keyOne, entryOne.getKey());
891 assertEquals(hashOne, entryOne.getHash());
892 assertNull(entryOne.getNext());
893 assertSame(valueRefOne, entryOne.getValueReference());
898 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
905 assertSame(entryOne, entryTwo.getNext());
917 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null)
    [all...]

Completed in 207 milliseconds