Home
last modified time | relevance | path

Searched refs:copyOf (Results 1 – 25 of 1026) sorted by relevance

12345678910>>...42

/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/
DSymbolTable.cpp336 TSymbol::TSymbol(const TSymbol& copyOf) in TSymbol() argument
338 name = NewPoolTString(copyOf.name->c_str()); in TSymbol()
339 uniqueId = copyOf.uniqueId; in TSymbol()
343 TVariable::TVariable(const TVariable& copyOf) : TSymbol(copyOf) in TVariable() argument
345 type.deepCopy(copyOf.type); in TVariable()
346 userType = copyOf.userType; in TVariable()
352 if (copyOf.getNumExtensions() > 0) in TVariable()
353 setExtensions(copyOf.getNumExtensions(), copyOf.getExtensions()); in TVariable()
354 if (copyOf.hasMemberExtensions()) { in TVariable()
355 for (int m = 0; m < (int)copyOf.type.getStruct()->size(); ++m) { in TVariable()
[all …]
/external/deqp-deps/glslang/glslang/MachineIndependent/
DSymbolTable.cpp335 TSymbol::TSymbol(const TSymbol& copyOf) in TSymbol() argument
337 name = NewPoolTString(copyOf.name->c_str()); in TSymbol()
338 uniqueId = copyOf.uniqueId; in TSymbol()
342 TVariable::TVariable(const TVariable& copyOf) : TSymbol(copyOf) in TVariable() argument
344 type.deepCopy(copyOf.type); in TVariable()
345 userType = copyOf.userType; in TVariable()
351 if (copyOf.getNumExtensions() > 0) in TVariable()
352 setExtensions(copyOf.getNumExtensions(), copyOf.getExtensions()); in TVariable()
353 if (copyOf.hasMemberExtensions()) { in TVariable()
354 for (int m = 0; m < (int)copyOf.type.getStruct()->size(); ++m) { in TVariable()
[all …]
/external/google-java-format/core/src/test/java/com/google/googlejavaformat/
DNewlinesTest.java32 assertThat(ImmutableList.copyOf(Newlines.lineOffsetIterator("foo\nbar\n"))) in offsets()
34 assertThat(ImmutableList.copyOf(Newlines.lineOffsetIterator("foo\nbar"))).containsExactly(0, 4); in offsets()
36 assertThat(ImmutableList.copyOf(Newlines.lineOffsetIterator("foo\rbar\r"))) in offsets()
38 assertThat(ImmutableList.copyOf(Newlines.lineOffsetIterator("foo\rbar"))).containsExactly(0, 4); in offsets()
40 assertThat(ImmutableList.copyOf(Newlines.lineOffsetIterator("foo\r\nbar\r\n"))) in offsets()
42 assertThat(ImmutableList.copyOf(Newlines.lineOffsetIterator("foo\r\nbar"))) in offsets()
48 assertThat(ImmutableList.copyOf(Newlines.lineIterator("foo\nbar\n"))) in lines()
50 assertThat(ImmutableList.copyOf(Newlines.lineIterator("foo\nbar"))) in lines()
53 assertThat(ImmutableList.copyOf(Newlines.lineIterator("foo\rbar\r"))) in lines()
55 assertThat(ImmutableList.copyOf(Newlines.lineIterator("foo\rbar"))) in lines()
[all …]
/external/guava/android/guava-tests/test/com/google/common/collect/
DAbstractImmutableSetTest.java62 protected abstract <E extends Comparable<? super E>> Set<E> copyOf(E[] elements); in copyOf() method in AbstractImmutableSetTest
64 protected abstract <E extends Comparable<? super E>> Set<E> copyOf( in copyOf() method in AbstractImmutableSetTest
67 protected abstract <E extends Comparable<? super E>> Set<E> copyOf( in copyOf() method in AbstractImmutableSetTest
70 protected abstract <E extends Comparable<? super E>> Set<E> copyOf( in copyOf() method in AbstractImmutableSetTest
121 Set<String> set = copyOf(array); in testCopyOf_emptyArray()
128 Set<String> set = copyOf(array); in testCopyOf_arrayOfOneElement()
134 copyOf((String[]) null); in testCopyOf_nullArray()
143 copyOf(array); in testCopyOf_arrayContainingOnlyNull()
152 Set<String> set = copyOf(c); in testCopyOf_collection_empty()
159 Set<String> set = copyOf(c); in testCopyOf_collection_oneElement()
[all …]
DImmutableMultisetTest.java66 return ImmutableMultiset.copyOf(elements); in suite()
81 return ImmutableMultiset.copyOf(elements).elementSet(); in suite()
96 return ImmutableMultiset.copyOf(elements).asList(); in suite()
189 Multiset<String> multiset = ImmutableMultiset.copyOf(array); in testCreation_emptyArray()
195 Multiset<String> multiset = ImmutableMultiset.copyOf(array); in testCreation_arrayOfOneElement()
210 ImmutableMultiset.copyOf(array); in testCreation_arrayContainingOnlyNull()
219 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_empty()
225 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_oneElement()
231 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_general()
238 ImmutableMultiset.copyOf(c); in testCopyOf_collectionContainingNull()
[all …]
DImmutableSortedSetTest.java212 protected <E extends Comparable<? super E>> SortedSet<E> copyOf(E[] elements) { in copyOf() method in ImmutableSortedSetTest
213 return ImmutableSortedSet.copyOf(elements); in copyOf()
217 protected <E extends Comparable<? super E>> SortedSet<E> copyOf( in copyOf() method in ImmutableSortedSetTest
219 return ImmutableSortedSet.copyOf(elements); in copyOf()
223 protected <E extends Comparable<? super E>> SortedSet<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSortedSetTest
224 return ImmutableSortedSet.copyOf(elements); in copyOf()
228 protected <E extends Comparable<? super E>> SortedSet<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSortedSetTest
229 return ImmutableSortedSet.copyOf(elements); in copyOf()
580 SortedSet<String> set = copyOf(asList("e", "a", "f", "b", "d", "c")); in testCopyOf_ordering()
585 SortedSet<String> set = copyOf(asList("e", "a", "e", "f", "b", "b", "d", "a", "c")); in testCopyOf_ordering_dupes()
[all …]
DImmutableSortedMultisetTest.java58 return ImmutableSortedMultiset.copyOf(elements); in suite()
78 return ImmutableSortedMultiset.copyOf(elements).asList(); in suite()
166 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(array); in testCreation_emptyArray()
172 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(array); in testCreation_arrayOfOneElement()
197 ImmutableSortedMultiset.copyOf(array); in testCreation_arrayContainingOnlyNull()
206 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_empty()
212 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_oneElement()
218 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_general()
225 ImmutableSortedMultiset.copyOf(c); in testCopyOf_collectionContainingNull()
233 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_multiset_empty()
[all …]
DImmutableListTest.java231 List<String> list = ImmutableList.copyOf(array); in testCopyOf_emptyArray()
237 List<String> list = ImmutableList.copyOf(array); in testCopyOf_arrayOfOneElement()
243 ImmutableList.copyOf((String[]) null); in testCopyOf_nullArray()
252 ImmutableList.copyOf(array); in testCopyOf_arrayContainingOnlyNull()
261 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_empty()
267 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_oneElement()
273 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_general()
276 list = ImmutableList.copyOf(mutableList); in testCopyOf_collection_general()
284 ImmutableList.copyOf(c); in testCopyOf_collectionContainingNull()
292 List<String> list = ImmutableList.copyOf(iterator); in testCopyOf_iterator_empty()
[all …]
DImmutableClassToInstanceMapTest.java85 ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_map_empty()
88 assertSame(map, ImmutableClassToInstanceMap.copyOf(map)); in testCopyOf_map_empty()
104 ClassToInstanceMap<Number> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_map_valid()
113 assertSame(map, ImmutableClassToInstanceMap.copyOf(map)); in testCopyOf_map_valid()
119 ImmutableClassToInstanceMap.copyOf(nullKey); in testCopyOf_map_nulls()
127 ImmutableClassToInstanceMap.copyOf(nullValue); in testCopyOf_map_nulls()
135 ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_imap_empty()
142 ClassToInstanceMap<Number> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_imap_valid()
/external/guava/guava-tests/test/com/google/common/collect/
DAbstractImmutableSetTest.java62 protected abstract <E extends Comparable<? super E>> Set<E> copyOf(E[] elements); in copyOf() method in AbstractImmutableSetTest
64 protected abstract <E extends Comparable<? super E>> Set<E> copyOf( in copyOf() method in AbstractImmutableSetTest
67 protected abstract <E extends Comparable<? super E>> Set<E> copyOf( in copyOf() method in AbstractImmutableSetTest
70 protected abstract <E extends Comparable<? super E>> Set<E> copyOf( in copyOf() method in AbstractImmutableSetTest
121 Set<String> set = copyOf(array); in testCopyOf_emptyArray()
128 Set<String> set = copyOf(array); in testCopyOf_arrayOfOneElement()
134 copyOf((String[]) null); in testCopyOf_nullArray()
143 copyOf(array); in testCopyOf_arrayContainingOnlyNull()
152 Set<String> set = copyOf(c); in testCopyOf_collection_empty()
159 Set<String> set = copyOf(c); in testCopyOf_collection_oneElement()
[all …]
DImmutableSortedSetTest.java216 protected <E extends Comparable<? super E>> SortedSet<E> copyOf(E[] elements) { in copyOf() method in ImmutableSortedSetTest
217 return ImmutableSortedSet.copyOf(elements); in copyOf()
221 protected <E extends Comparable<? super E>> SortedSet<E> copyOf( in copyOf() method in ImmutableSortedSetTest
223 return ImmutableSortedSet.copyOf(elements); in copyOf()
227 protected <E extends Comparable<? super E>> SortedSet<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSortedSetTest
228 return ImmutableSortedSet.copyOf(elements); in copyOf()
232 protected <E extends Comparable<? super E>> SortedSet<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSortedSetTest
233 return ImmutableSortedSet.copyOf(elements); in copyOf()
584 SortedSet<String> set = copyOf(asList("e", "a", "f", "b", "d", "c")); in testCopyOf_ordering()
589 SortedSet<String> set = copyOf(asList("e", "a", "e", "f", "b", "b", "d", "a", "c")); in testCopyOf_ordering_dupes()
[all …]
DImmutableMultisetTest.java72 return ImmutableMultiset.copyOf(elements); in suite()
102 return ImmutableMultiset.copyOf(elements).elementSet(); in suite()
117 return ImmutableMultiset.copyOf(elements).asList(); in suite()
210 Multiset<String> multiset = ImmutableMultiset.copyOf(array); in testCreation_emptyArray()
216 Multiset<String> multiset = ImmutableMultiset.copyOf(array); in testCreation_arrayOfOneElement()
231 ImmutableMultiset.copyOf(array); in testCreation_arrayContainingOnlyNull()
240 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_empty()
246 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_oneElement()
252 Multiset<String> multiset = ImmutableMultiset.copyOf(c); in testCopyOf_collection_general()
259 ImmutableMultiset.copyOf(c); in testCopyOf_collectionContainingNull()
[all …]
DImmutableSortedMultisetTest.java64 return ImmutableSortedMultiset.copyOf(elements); in suite()
84 return ImmutableSortedMultiset.copyOf(elements).asList(); in suite()
172 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(array); in testCreation_emptyArray()
178 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(array); in testCreation_arrayOfOneElement()
203 ImmutableSortedMultiset.copyOf(array); in testCreation_arrayContainingOnlyNull()
212 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_empty()
218 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_oneElement()
224 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_collection_general()
231 ImmutableSortedMultiset.copyOf(c); in testCopyOf_collectionContainingNull()
239 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(c); in testCopyOf_multiset_empty()
[all …]
DImmutableListTest.java232 List<String> list = ImmutableList.copyOf(array); in testCopyOf_emptyArray()
238 List<String> list = ImmutableList.copyOf(array); in testCopyOf_arrayOfOneElement()
244 ImmutableList.copyOf((String[]) null); in testCopyOf_nullArray()
253 ImmutableList.copyOf(array); in testCopyOf_arrayContainingOnlyNull()
262 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_empty()
268 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_oneElement()
274 List<String> list = ImmutableList.copyOf(c); in testCopyOf_collection_general()
277 list = ImmutableList.copyOf(mutableList); in testCopyOf_collection_general()
285 ImmutableList.copyOf(c); in testCopyOf_collectionContainingNull()
293 List<String> list = ImmutableList.copyOf(iterator); in testCopyOf_iterator_empty()
[all …]
DImmutableClassToInstanceMapTest.java85 ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_map_empty()
88 assertSame(map, ImmutableClassToInstanceMap.copyOf(map)); in testCopyOf_map_empty()
104 ClassToInstanceMap<Number> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_map_valid()
113 assertSame(map, ImmutableClassToInstanceMap.copyOf(map)); in testCopyOf_map_valid()
119 ImmutableClassToInstanceMap.copyOf(nullKey); in testCopyOf_map_nulls()
127 ImmutableClassToInstanceMap.copyOf(nullValue); in testCopyOf_map_nulls()
135 ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_imap_empty()
142 ClassToInstanceMap<Number> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_imap_valid()
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/
DModifierKeyCombination.java75 return ofOnAndDontCareKeys(ImmutableSet.copyOf(onKeys), ImmutableSet.<ModifierKey> of()); in ofOnKeys()
87 return ModifierKeySimplifier.simplifyInput(ImmutableSet.copyOf(onKeys), in ofOnAndDontCareKeys()
88 ImmutableSet.copyOf(dontCareKeys)); in ofOnAndDontCareKeys()
141 ImmutableSortedSet<ModifierKey> sortedOnKeys1 = ImmutableSortedSet.copyOf(onKeys); in compareTo()
142 ImmutableSortedSet<ModifierKey> sortedOnKeys2 = ImmutableSortedSet.copyOf(o.onKeys); in compareTo()
163 ImmutableSortedSet<ModifierKey> sortedOffKeys1 = ImmutableSortedSet.copyOf(offKeys); in compareTo()
164 ImmutableSortedSet<ModifierKey> sortedOffKeys2 = ImmutableSortedSet.copyOf(o.offKeys); in compareTo()
/external/turbine/java/com/google/turbine/options/
DTurbineOptions.java166 return setClassPath(ImmutableList.copyOf(sources)); in addClassPathEntries()
176 return setBootClassPath(ImmutableList.copyOf(sources)); in addBootClassPathEntries()
188 return setSources(ImmutableList.copyOf(sources)); in addSources()
194 return setProcessorPath(ImmutableList.copyOf(processorPath)); in addProcessorPathEntries()
202 return setProcessors(ImmutableList.copyOf(processors)); in addProcessors()
210 return setBuiltinProcessors(ImmutableList.copyOf(builtinProcessors)); in addBuiltinProcessors()
228 return setDepsArtifacts(ImmutableList.copyOf(depsArtifacts)); in addAllDepsArtifacts()
247 return setDirectJars(ImmutableList.copyOf(directJars)); in addDirectJars()
/external/guava/android/guava/src/com/google/common/collect/
DImmutableSortedMultiset.java76 return copyOf(Ordering.natural(), Arrays.asList(e1, e2)); in of()
87 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3)); in of()
99 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4)); in of()
111 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4, e5)); in of()
127 return copyOf(Ordering.natural(), all); in of()
136 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> copyOf(E[] elements) { in copyOf() method in ImmutableSortedMultiset
137 return copyOf(Ordering.natural(), Arrays.asList(elements)); in copyOf()
161 public static <E> ImmutableSortedMultiset<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSortedMultiset
166 return copyOf(naturalOrder, elements); in copyOf()
179 public static <E> ImmutableSortedMultiset<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSortedMultiset
[all …]
DImmutableSortedSet.java160 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> copyOf(E[] elements) { in copyOf() method in ImmutableSortedSet
185 public static <E> ImmutableSortedSet<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSortedSet
190 return copyOf(naturalOrder, elements); in copyOf()
217 public static <E> ImmutableSortedSet<E> copyOf(Collection<? extends E> elements) { in copyOf() method in ImmutableSortedSet
222 return copyOf(naturalOrder, elements); in copyOf()
236 public static <E> ImmutableSortedSet<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSortedSet
241 return copyOf(naturalOrder, elements); in copyOf()
251 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
267 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
299 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
[all …]
/external/guava/guava/src/com/google/common/collect/
DImmutableSortedMultiset.java120 return copyOf(Ordering.natural(), Arrays.asList(e1, e2)); in of()
131 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3)); in of()
143 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4)); in of()
155 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4, e5)); in of()
171 return copyOf(Ordering.natural(), all); in of()
180 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> copyOf(E[] elements) { in copyOf() method
181 return copyOf(Ordering.natural(), Arrays.asList(elements)); in copyOf()
205 public static <E> ImmutableSortedMultiset<E> copyOf(Iterable<? extends E> elements) { in copyOf() method
210 return copyOf(naturalOrder, elements); in copyOf()
223 public static <E> ImmutableSortedMultiset<E> copyOf(Iterator<? extends E> elements) { in copyOf() method
[all …]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/util/
DSuperclassChainTest.java69 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(objectClassProto))); in testGetSuperclassChain()
73 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(oneClassProto))); in testGetSuperclassChain()
77 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(twoClassProto))); in testGetSuperclassChain()
81 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(threeClassProto))); in testGetSuperclassChain()
100 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(twoClassProto))); in testGetSuperclassChain_Unresolved()
104 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(threeClassProto))); in testGetSuperclassChain_Unresolved()
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
DNettyServerStreamTest.java103 ImmutableListMultimap.copyOf(new DefaultHttp2Headers() in writeMessageShouldSendResponse()
114 assertThat(ImmutableListMultimap.copyOf(sendHeaders.headers())) in writeMessageShouldSendResponse()
131 ImmutableListMultimap.copyOf(Utils.convertServerHeaders(headers)); in writeHeadersShouldSendHeaders()
140 assertThat(ImmutableListMultimap.copyOf(sendHeaders.headers())) in writeHeadersShouldSendHeaders()
148 ImmutableListMultimap.copyOf(new DefaultHttp2Headers() in closeBeforeClientHalfCloseShouldSucceed()
160 assertThat(ImmutableListMultimap.copyOf(sendHeaders.headers())) in closeBeforeClientHalfCloseShouldSucceed()
175 ImmutableListMultimap.copyOf(new DefaultHttp2Headers() in closeWithErrorBeforeClientHalfCloseShouldSucceed()
188 assertThat(ImmutableListMultimap.copyOf(sendHeaders.headers())) in closeWithErrorBeforeClientHalfCloseShouldSucceed()
202 ImmutableListMultimap.copyOf(new DefaultHttp2Headers() in closeAfterClientHalfCloseShouldSucceed()
222 assertThat(ImmutableListMultimap.copyOf(cmd.headers())) in closeAfterClientHalfCloseShouldSucceed()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableSet.java83 return copyOf(all.iterator()); in of()
86 public static <E> ImmutableSet<E> copyOf(E[] elements) { in copyOf() method in ImmutableSet
98 public static <E> ImmutableSet<E> copyOf(Collection<? extends E> elements) { in copyOf() method in ImmutableSet
100 return copyOf(iterable); in copyOf()
103 public static <E> ImmutableSet<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSet
109 return copyOf(elements.iterator()); in copyOf()
112 public static <E> ImmutableSet<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSet
258 return copyOf(contents.iterator());
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
DListGenerators.java47 return ImmutableList.copyOf(elements); in create()
74 return ImmutableList.copyOf(list).reverse(); in create()
85 return ImmutableList.copyOf(all).subList(0, elements.length); in create()
96 return ImmutableList.copyOf(all).subList(2, elements.length + 2); in create()
111 return ImmutableList.copyOf(all).subList(2, elements.length + 2); in create()
140 return ImmutableList.copyOf(elements); in create()
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DListGenerators.java47 return ImmutableList.copyOf(elements); in create()
74 return ImmutableList.copyOf(list).reverse(); in create()
85 return ImmutableList.copyOf(all).subList(0, elements.length); in create()
96 return ImmutableList.copyOf(all).subList(2, elements.length + 2); in create()
111 return ImmutableList.copyOf(all).subList(2, elements.length + 2); in create()
140 return ImmutableList.copyOf(elements); in create()

12345678910>>...42