Searched refs:e2 (Results 126 - 150 of 384) sorted by path

1234567891011>>

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableList.java57 public static <E> ImmutableList<E> of(E e1, E e2) { argument
59 ImmutableList.<E>nullCheckedList(e1, e2));
62 public static <E> ImmutableList<E> of(E e1, E e2, E e3) { argument
64 ImmutableList.<E>nullCheckedList(e1, e2, e3));
67 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { argument
69 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4));
72 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { argument
74 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5));
77 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) { argument
79 ImmutableList.<E>nullCheckedList(e1, e2, e
82 of( E e1, E e2, E e3, E e4, E e5, E e6, E e7) argument
88 of( E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) argument
94 of( E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) argument
100 of( E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10) argument
106 of( E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11) argument
112 of( E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11, E e12, E... others) argument
[all...]
H A DImmutableMultiset.java83 public static <E> ImmutableMultiset<E> of(E e1, E e2) { argument
84 return copyOfInternal(e1, e2);
94 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3) { argument
95 return copyOfInternal(e1, e2, e3);
105 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4) { argument
106 return copyOfInternal(e1, e2, e3, e4);
116 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { argument
117 return copyOfInternal(e1, e2, e3, e4, e5);
128 E e1, E e2, E e3, E e4, E e5, E e6, E... others) {
131 .add(e2)
127 of( E e1, E e2, E e3, E e4, E e5, E e6, E... others) argument
[all...]
H A DImmutableSet.java54 public static <E> ImmutableSet<E> of(E e1, E e2) { argument
55 return create(e1, e2);
59 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) { argument
60 return create(e1, e2, e3);
64 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { argument
65 return create(e1, e2, e3, e4);
69 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { argument
70 return create(e1, e2, e3, e4, e5);
74 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) { argument
77 Collections.addAll(all, e1, e2, e
[all...]
H A DImmutableSortedSet.java86 E e1, E e2) {
87 return ofInternal(Ordering.natural(), e1, e2);
92 E e1, E e2, E e3) {
93 return ofInternal(Ordering.natural(), e1, e2, e3);
98 E e1, E e2, E e3, E e4) {
99 return ofInternal(Ordering.natural(), e1, e2, e3, e4);
104 E e1, E e2, E e3, E e4, E e5) {
105 return ofInternal(Ordering.natural(), e1, e2, e3, e4, e5);
110 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) {
113 Collections.addAll(all, e1, e2, e
85 of( E e1, E e2) argument
91 of( E e1, E e2, E e3) argument
97 of( E e1, E e2, E e3, E e4) argument
103 of( E e1, E e2, E e3, E e4, E e5) argument
109 of( E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) argument
[all...]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractImmutableSetTest.java45 protected abstract Set<String> of(String e1, String e2); argument
46 protected abstract Set<String> of(String e1, String e2, String e3); argument
47 protected abstract Set<String> of(String e1, String e2, String e3, String e4); argument
48 protected abstract Set<String> of(String e1, String e2, String e3, String e4, argument
50 protected abstract Set<String> of(String e1, String e2, String e3, String e4, argument
H A DImmutableMapTest.java124 colliders.e2, 2,
H A DImmutableSetTest.java48 @Override protected Set<String> of(String e1, String e2) { argument
49 return ImmutableSet.of(e1, e2);
52 @Override protected Set<String> of(String e1, String e2, String e3) { argument
53 return ImmutableSet.of(e1, e2, e3);
57 String e1, String e2, String e3, String e4) {
58 return ImmutableSet.of(e1, e2, e3, e4);
62 String e1, String e2, String e3, String e4, String e5) {
63 return ImmutableSet.of(e1, e2, e3, e4, e5);
66 @Override protected Set<String> of(String e1, String e2, String e3, argument
68 return ImmutableSet.of(e1, e2, e
56 of( String e1, String e2, String e3, String e4) argument
61 of( String e1, String e2, String e3, String e4, String e5) argument
[all...]
H A DImmutableSortedSetTest.java63 @Override protected SortedSet<String> of(String e1, String e2) { argument
64 return ImmutableSortedSet.of(e1, e2);
67 @Override protected SortedSet<String> of(String e1, String e2, String e3) { argument
68 return ImmutableSortedSet.of(e1, e2, e3);
72 String e1, String e2, String e3, String e4) {
73 return ImmutableSortedSet.of(e1, e2, e3, e4);
77 String e1, String e2, String e3, String e4, String e5) {
78 return ImmutableSortedSet.of(e1, e2, e3, e4, e5);
81 @Override protected SortedSet<String> of(String e1, String e2, String e3, argument
83 return ImmutableSortedSet.of(e1, e2, e
71 of( String e1, String e2, String e3, String e4) argument
76 of( String e1, String e2, String e3, String e4, String e5) argument
[all...]
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
H A DMultisetIteratorTester.java40 Arrays.asList(samples.e0, samples.e1, samples.e1, samples.e2)),
44 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2)
54 samples.e1, samples.e2), IteratorTester.KnownOrder.UNKNOWN_ORDER) {
57 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2)
67 Arrays.asList(samples.e0, samples.e1, samples.e1, samples.e2)),
71 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2)
81 samples.e1, samples.e2), IteratorTester.KnownOrder.UNKNOWN_ORDER) {
84 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2)
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
H A DListSubListTester.java140 subList.remove(samples.e2);
171 Arrays.asList(samples.e3, samples.e2), subList);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DDerivedCollectionGenerators.java112 mapSamples.e2.getKey(),
225 mapSamples.e2.getValue(),
487 samples.e0, samples.e1, samples.e2, samples.e3, samples.e4);
H A DOneSizeGenerator.java76 samples.e0, samples.e1, samples.e2, samples.e3, samples.e4);
H A DSampleElements.java36 public final E e2; field in class:SampleElements
40 public SampleElements(E e0, E e1, E e2, E e3, E e4) { argument
43 this.e2 = e2;
54 return Arrays.asList(e0, e1, e2, e3, e4);
97 Helpers.mapEntry(keys.e2, values.e2),
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DDerivedGoogleCollectionGenerators.java104 reverse(samples.e2), reverse(samples.e3), reverse(samples.e4));
163 mapSamples.e2.getValue(),
H A DListMultimapRemoveTester.java46 V v1 = sampleValues().e2;
60 V v1 = sampleValues().e2;
80 V v1 = sampleValues().e2;
101 V v1 = sampleValues().e2;
H A DMultimapAsMapGetTester.java49 Helpers.mapEntry(sampleKeys().e0, sampleValues().e2));
123 V v2 = sampleValues().e2;
H A DMultimapGetTester.java62 Helpers.mapEntry(sampleKeys().e0, sampleValues().e2));
66 sampleValues().e2);
79 Helpers.mapEntry(sampleKeys().e0, sampleValues().e2));
128 V v2 = sampleValues().e2;
H A DMultimapRemoveAllTester.java72 Helpers.mapEntry(sampleKeys().e0, sampleValues().e2));
75 .has().exactly(sampleValues().e0, sampleValues().e1, sampleValues().e2);
H A DMultimapReplaceValuesTester.java62 List<V> values = Arrays.asList(sampleValues().e0, sampleValues().e2, sampleValues().e3);
72 List<V> values = Arrays.asList(sampleValues().e0, sampleValues().e2, sampleValues().e3);
111 List<V> values = Arrays.asList(sampleValues().e0, sampleValues().e2, sampleValues().e3);
129 List<V> values = Arrays.asList(sampleValues().e0, sampleValues().e2, sampleValues().e3);
132 sampleValues().e0, sampleValues().e2, sampleValues().e3);
H A DMultimapSizeTester.java98 mapEntry(sampleKeys().e0, sampleValues().e2));
H A DMultimapTestSuiteBuilder.java337 mapEntry(sampleKeys.e2, createCollection(sampleValues.e2)),
H A DMultisetIteratorTester.java44 Arrays.asList(samples.e0, samples.e1, samples.e1, samples.e2)),
48 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2)
58 samples.e1, samples.e2), IteratorTester.KnownOrder.UNKNOWN_ORDER) {
61 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2)
71 Arrays.asList(samples.e0, samples.e1, samples.e1, samples.e2)),
75 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2)
85 samples.e1, samples.e2), IteratorTester.KnownOrder.UNKNOWN_ORDER) {
88 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2)
H A DMultisetTestSuiteBuilder.java210 Multisets.immutableEntry(samples.e2, 1),
H A DSetMultimapPutAllTester.java40 V v1 = sampleValues().e2;
H A DSetMultimapReplaceValuesTester.java39 V v1 = sampleValues().e2;

Completed in 418 milliseconds

1234567891011>>