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 416 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null);
417 ValueReference<Object, Object> valueRefOne = map.newValueReference(entryOne, valueOne);
419 entryOne.setValueReference(valueRefOne);
421 assertSame(keyOne, entryOne.getKey());
422 assertEquals(hashOne, entryOne.getHash());
423 assertNull(entryOne.getNext());
424 assertSame(valueRefOne, entryOne.getValueReference());
429 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
436 assertSame(entryOne, entryTwo.getNext());
448 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null)
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 929 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null);
930 ValueReference<Object, Object> valueRefOne = map.newValueReference(entryOne, valueOne, 1);
932 entryOne.setValueReference(valueRefOne);
934 assertSame(keyOne, entryOne.getKey());
935 assertEquals(hashOne, entryOne.getHash());
936 assertNull(entryOne.getNext())
    [all...]

Completed in 51 milliseconds