Home
last modified time | relevance | path

Searched refs:UnhashableObject (Results 1 – 17 of 17) sorted by relevance

/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DTestUnhashableCollectionGenerator.java30 public abstract class TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
31 implements TestCollectionGenerator<UnhashableObject> {
33 public SampleElements<UnhashableObject> samples() { in samples()
39 UnhashableObject[] array = createArray(elements.length); in create()
42 array[i++] = (UnhashableObject) e; in create()
51 protected abstract T create(UnhashableObject[] elements); in create()
54 public UnhashableObject[] createArray(int length) { in createArray()
55 return new UnhashableObject[length]; in createArray()
59 public Iterable<UnhashableObject> order(List<UnhashableObject> insertionOrder) { in order()
DUnhashableObject.java27 public class UnhashableObject implements Comparable<UnhashableObject> { class
30 public UnhashableObject(int value) { in UnhashableObject() method in UnhashableObject
36 if (object instanceof UnhashableObject) { in equals()
37 UnhashableObject that = (UnhashableObject) object; in equals()
55 public int compareTo(UnhashableObject o) { in compareTo()
DSampleElements.java121 public static class Unhashables extends SampleElements<UnhashableObject> {
124 new UnhashableObject(1), in Unhashables()
125 new UnhashableObject(2), in Unhashables()
126 new UnhashableObject(3), in Unhashables()
127 new UnhashableObject(4), in Unhashables()
128 new UnhashableObject(5)); in Unhashables()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DTestUnhashableCollectionGenerator.java30 public abstract class TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
31 implements TestCollectionGenerator<UnhashableObject> {
33 public SampleElements<UnhashableObject> samples() { in samples()
39 UnhashableObject[] array = createArray(elements.length); in create()
42 array[i++] = (UnhashableObject) e; in create()
51 protected abstract T create(UnhashableObject[] elements); in create()
54 public UnhashableObject[] createArray(int length) { in createArray()
55 return new UnhashableObject[length]; in createArray()
59 public Iterable<UnhashableObject> order(List<UnhashableObject> insertionOrder) { in order()
DUnhashableObject.java27 public class UnhashableObject implements Comparable<UnhashableObject> { class
30 public UnhashableObject(int value) { in UnhashableObject() method in UnhashableObject
36 if (object instanceof UnhashableObject) { in equals()
37 UnhashableObject that = (UnhashableObject) object; in equals()
55 public int compareTo(UnhashableObject o) { in compareTo()
DSampleElements.java121 public static class Unhashables extends SampleElements<UnhashableObject> {
124 new UnhashableObject(1), in Unhashables()
125 new UnhashableObject(2), in Unhashables()
126 new UnhashableObject(3), in Unhashables()
127 new UnhashableObject(4), in Unhashables()
128 new UnhashableObject(5)); in Unhashables()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
DListGenerators.java28 import com.google.common.collect.testing.UnhashableObject;
134 extends TestUnhashableCollectionGenerator<List<UnhashableObject>>
135 implements TestListGenerator<UnhashableObject> {}
139 public List<UnhashableObject> create(UnhashableObject[] elements) { in create()
DMapGenerators.java35 import com.google.common.collect.testing.UnhashableObject;
80 extends TestUnhashableCollectionGenerator<Collection<UnhashableObject>> {
83 public Collection<UnhashableObject> create(UnhashableObject[] elements) { in create()
84 ImmutableMap.Builder<Integer, UnhashableObject> builder = ImmutableMap.builder(); in create()
86 for (UnhashableObject value : elements) { in create()
DSetGenerators.java46 import com.google.common.collect.testing.UnhashableObject;
233 public Set<UnhashableObject> create(UnhashableObject[] elements) { in create()
311 extends TestUnhashableCollectionGenerator<Set<UnhashableObject>>
312 implements TestSetGenerator<UnhashableObject> {}
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DListGenerators.java28 import com.google.common.collect.testing.UnhashableObject;
134 extends TestUnhashableCollectionGenerator<List<UnhashableObject>>
135 implements TestListGenerator<UnhashableObject> {}
139 public List<UnhashableObject> create(UnhashableObject[] elements) { in create()
DMapGenerators.java35 import com.google.common.collect.testing.UnhashableObject;
80 extends TestUnhashableCollectionGenerator<Collection<UnhashableObject>> {
83 public Collection<UnhashableObject> create(UnhashableObject[] elements) { in create()
84 ImmutableMap.Builder<Integer, UnhashableObject> builder = ImmutableMap.builder(); in create()
86 for (UnhashableObject value : elements) { in create()
DSetGenerators.java46 import com.google.common.collect.testing.UnhashableObject;
233 public Set<UnhashableObject> create(UnhashableObject[] elements) { in create()
311 extends TestUnhashableCollectionGenerator<Set<UnhashableObject>>
312 implements TestSetGenerator<UnhashableObject> {}
/external/guava/android/guava-tests/test/com/google/common/collect/
DImmutableMultimapTest.java23 import com.google.common.collect.testing.UnhashableObject;
102 SampleElements<UnhashableObject> unhashables = new Unhashables(); in testUnhashableSingletonValue()
103 Multimap<Integer, UnhashableObject> multimap = ImmutableMultimap.of(0, unhashables.e0()); in testUnhashableSingletonValue()
109 SampleElements<UnhashableObject> unhashables = new Unhashables(); in testUnhashableMixedValues()
DImmutableMapTest.java33 import com.google.common.collect.testing.UnhashableObject;
285 extends AbstractMapTests<Integer, UnhashableObject> {
287 protected Map<Integer, UnhashableObject> makeEmptyMap() { in makeEmptyMap()
292 protected Map<Integer, UnhashableObject> makePopulatedMap() { in makePopulatedMap()
303 protected UnhashableObject getValueNotInPopulatedMap() { in getValueNotInPopulatedMap()
311 protected Map<Integer, UnhashableObject> makePopulatedMap() { in makePopulatedMap()
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableMultimapTest.java23 import com.google.common.collect.testing.UnhashableObject;
102 SampleElements<UnhashableObject> unhashables = new Unhashables(); in testUnhashableSingletonValue()
103 Multimap<Integer, UnhashableObject> multimap = ImmutableMultimap.of(0, unhashables.e0()); in testUnhashableSingletonValue()
109 SampleElements<UnhashableObject> unhashables = new Unhashables(); in testUnhashableMixedValues()
DImmutableMapTest.java37 import com.google.common.collect.testing.UnhashableObject;
316 extends AbstractMapTests<Integer, UnhashableObject> {
318 protected Map<Integer, UnhashableObject> makeEmptyMap() { in makeEmptyMap()
323 protected Map<Integer, UnhashableObject> makePopulatedMap() { in makePopulatedMap()
334 protected UnhashableObject getValueNotInPopulatedMap() { in getValueNotInPopulatedMap()
342 protected Map<Integer, UnhashableObject> makePopulatedMap() { in makePopulatedMap()
/external/guice/lib/build/
Dguava-testlib-19.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...