Home
last modified time | relevance | path

Searched refs:valueOne (Results 1 – 4 of 4) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java414 Object valueOne = new Object(); in testNewEntry() local
417 ValueReference<Object, Object> valueRefOne = map.newValueReference(entryOne, valueOne); in testNewEntry()
418 assertSame(valueOne, valueRefOne.get()); in testNewEntry()
446 Object valueOne = new Object(); in testCopyEntry() local
449 entryOne.setValueReference(map.newValueReference(entryOne, valueOne)); in testCopyEntry()
468 assertSame(valueOne, copyOne.getValueReference().get()); in testCopyEntry()
885 Object valueOne = new Object(); in testReclaimKey() local
887 DummyEntry<Object, Object> entryOne = createDummyEntry(keyOne, hashOne, valueOne, null); in testReclaimKey()
915 assertSame(valueOne, listener.getLastEvictedValue()); in testReclaimKey()
929 Object valueOne = new Object(); in testRemoveFromChain() local
[all …]
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java129 Object threeArgumentMethod(int valueOne, Object valueTwo, String valueThree); in threeArgumentMethod() argument
131 String threeArgumentMethodWithStrings(int valueOne, String valueTwo, String valueThree); in threeArgumentMethodWithStrings() argument
133 String fourArgumentMethod(int valueOne, String valueTwo, String valueThree, boolean[] array); in fourArgumentMethod() argument
DMethodsImpl.java244 public Object threeArgumentMethod(int valueOne, Object valueTwo, String valueThree) { in threeArgumentMethod() argument
248 public String threeArgumentMethodWithStrings(int valueOne, String valueTwo, String valueThree) { in threeArgumentMethodWithStrings() argument
252 …public String fourArgumentMethod(int valueOne, String valueTwo, String valueThree, boolean[] array… in fourArgumentMethod() argument
/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java927 Object valueOne = new Object(); in testNewEntry() local
930 ValueReference<Object, Object> valueRefOne = map.newValueReference(entryOne, valueOne, 1); in testNewEntry()
931 assertSame(valueOne, valueRefOne.get()); in testNewEntry()
959 Object valueOne = new Object(); in testCopyEntry() local
962 entryOne.setValueReference(map.newValueReference(entryOne, valueOne, 1)); in testCopyEntry()
981 assertSame(valueOne, copyOne.getValueReference().get()); in testCopyEntry()
1521 Object valueOne = new Object(); in testReclaimKey() local
1523 DummyEntry<Object, Object> entryOne = createDummyEntry(keyOne, hashOne, valueOne, null); in testReclaimKey()
1551 assertSame(valueOne, listener.getLastEvictedValue()); in testReclaimKey()
1565 Object valueOne = new Object(); in testRemoveEntryFromChain() local
[all …]