Home
last modified time | relevance | path

Searched refs:ImmutableList (Results 1 – 25 of 448) sorted by relevance

12345678910>>...18

/external/owasp/sanitizer/src/tests/org/owasp/html/
DTagBalancingHtmlStreamRendererTest.java31 import com.google.common.collect.ImmutableList;
61 balancer.openTag("html", ImmutableList.<String>of()); in testTagBalancing()
62 balancer.openTag("head", ImmutableList.<String>of()); in testTagBalancing()
63 balancer.openTag("title", ImmutableList.<String>of()); in testTagBalancing()
68 balancer.openTag("body", ImmutableList.<String>of()); in testTagBalancing()
69 balancer.openTag("p", ImmutableList.of("id", "p'0")); in testTagBalancing()
71 balancer.openTag("Br", ImmutableList.<String>of()); in testTagBalancing()
86 balancer.openTag("i", ImmutableList.<String>of()); in testTagSoupIronedOut()
88 balancer.openTag("b", ImmutableList.<String>of()); in testTagSoupIronedOut()
102 balancer.openTag("ul", ImmutableList.<String>of()); in testListInListDirectly()
[all …]
DHtmlStreamRendererTest.java34 import com.google.common.collect.ImmutableList;
100 renderer.openTag(":svg", ImmutableList.<String>of()); in testIllegalElementName()
101 renderer.openTag("svg:", ImmutableList.<String>of()); in testIllegalElementName()
102 renderer.openTag("-1", ImmutableList.<String>of()); in testIllegalElementName()
103 renderer.openTag("svg::svg", ImmutableList.<String>of()); in testIllegalElementName()
104 renderer.openTag("a@b", ImmutableList.<String>of()); in testIllegalElementName()
123 renderer.openTag("div", ImmutableList.of(":svg", "x")); in testIllegalAttributeName()
124 renderer.openTag("div", ImmutableList.of("svg:", "x")); in testIllegalAttributeName()
125 renderer.openTag("div", ImmutableList.of("-1", "x")); in testIllegalAttributeName()
126 renderer.openTag("div", ImmutableList.of("svg::svg", "x")); in testIllegalAttributeName()
[all …]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DImmutableListTest.java46 List<String> list = ImmutableList.of(); in testCreation_noArgs()
51 List<String> list = ImmutableList.of("a"); in testCreation_oneElement()
56 List<String> list = ImmutableList.of("a", "b"); in testCreation_twoElements()
61 List<String> list = ImmutableList.of("a", "b", "c"); in testCreation_threeElements()
66 List<String> list = ImmutableList.of("a", "b", "c", "d"); in testCreation_fourElements()
71 List<String> list = ImmutableList.of("a", "b", "c", "d", "e"); in testCreation_fiveElements()
76 List<String> list = ImmutableList.of("a", "b", "c", "d", "e", "f"); in testCreation_sixElements()
81 List<String> list = ImmutableList.of("a", "b", "c", "d", "e", "f", "g"); in testCreation_sevenElements()
86 List<String> list = ImmutableList.of( in testCreation_eightElements()
93 List<String> list = ImmutableList.of( in testCreation_nineElements()
[all …]
DImmutableMapTest.java501 .addEqualityGroup(ImmutableList.of(), ImmutableList.of()) in testEquals()
502 .addEqualityGroup(ImmutableList.of(1), ImmutableList.of(1)) in testEquals()
503 .addEqualityGroup(ImmutableList.of(1, 2), ImmutableList.of(1, 2)) in testEquals()
504 .addEqualityGroup(ImmutableList.of(1, 2, 3)) in testEquals()
505 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4)) in testEquals()
506 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5)) in testEquals()
507 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5, 6)) in testEquals()
508 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5, 6, 7)) in testEquals()
509 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5, 6, 7, 8)) in testEquals()
510 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5, 6, 7, 8, 9)) in testEquals()
[all …]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/util/
DTryListBuilderTest.java34 import com.google.common.collect.ImmutableList;
56 List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(0, 10, in testSingleCatchAll_Beginning()
57 ImmutableList.of(new ImmutableExceptionHandler(null, 5)))); in testSingleCatchAll_Beginning()
70 List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(5, 5, in testSingleCatchAll_Middle()
71 ImmutableList.of(new ImmutableExceptionHandler(null, 15)))); in testSingleCatchAll_Middle()
84 List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(0, 10, in testSingleCatch_Beginning()
85 ImmutableList.of(new ImmutableExceptionHandler("Ljava/lang/Exception;", 5)))); in testSingleCatch_Beginning()
98 List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(5, 5, in testSingleCatch_Middle()
99 ImmutableList.of(new ImmutableExceptionHandler("Ljava/lang/Exception;", 15)))); in testSingleCatch_Middle()
113 List<? extends TryBlock> expected = ImmutableList.of( in testOverlap_End_After()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableListTest.java129 List<String> list = ImmutableList.of(); in testCreation_noArgs()
134 List<String> list = ImmutableList.of("a"); in testCreation_oneElement()
139 List<String> list = ImmutableList.of("a", "b"); in testCreation_twoElements()
144 List<String> list = ImmutableList.of("a", "b", "c"); in testCreation_threeElements()
149 List<String> list = ImmutableList.of("a", "b", "c", "d"); in testCreation_fourElements()
154 List<String> list = ImmutableList.of("a", "b", "c", "d", "e"); in testCreation_fiveElements()
159 List<String> list = ImmutableList.of("a", "b", "c", "d", "e", "f"); in testCreation_sixElements()
164 List<String> list = ImmutableList.of("a", "b", "c", "d", "e", "f", "g"); in testCreation_sevenElements()
169 List<String> list = ImmutableList.of( in testCreation_eightElements()
176 List<String> list = ImmutableList.of( in testCreation_nineElements()
[all …]
DImmutableMapTest.java665 .addEqualityGroup(ImmutableList.of(), ImmutableList.of()) in testEquals()
666 .addEqualityGroup(ImmutableList.of(1), ImmutableList.of(1)) in testEquals()
667 .addEqualityGroup(ImmutableList.of(1, 2), ImmutableList.of(1, 2)) in testEquals()
668 .addEqualityGroup(ImmutableList.of(1, 2, 3)) in testEquals()
669 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4)) in testEquals()
670 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5)) in testEquals()
671 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5, 6)) in testEquals()
672 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5, 6, 7)) in testEquals()
673 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5, 6, 7, 8)) in testEquals()
674 .addEqualityGroup(ImmutableList.of(1, 2, 3, 4, 5, 6, 7, 8, 9)) in testEquals()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableList.java40 public abstract class ImmutableList<E> extends ImmutableCollection<E> class
42 static final ImmutableList<Object> EMPTY =
45 ImmutableList() {} in ImmutableList() method in ImmutableList
49 public static <E> ImmutableList<E> of() { in of()
50 return (ImmutableList<E>) EMPTY; in of()
53 public static <E> ImmutableList<E> of(E element) { in of()
57 public static <E> ImmutableList<E> of(E e1, E e2) { in of()
59 ImmutableList.<E>nullCheckedList(e1, e2)); in of()
62 public static <E> ImmutableList<E> of(E e1, E e2, E e3) { in of()
64 ImmutableList.<E>nullCheckedList(e1, e2, e3)); in of()
[all …]
/external/guava/guava/src/com/google/common/collect/
DImmutableList.java63 public abstract class ImmutableList<E> extends ImmutableCollection<E> class
66 private static final ImmutableList<Object> EMPTY =
76 public static <E> ImmutableList<E> of() { in of()
77 return (ImmutableList<E>) EMPTY; in of()
88 public static <E> ImmutableList<E> of(E element) { in of()
97 public static <E> ImmutableList<E> of(E e1, E e2) { in of()
106 public static <E> ImmutableList<E> of(E e1, E e2, E e3) { in of()
115 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { in of()
124 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { in of()
133 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) { in of()
[all …]
DImmutableRangeMap.java46 ImmutableList.<Range<Comparable<?>>>of(), ImmutableList.of());
61 return new ImmutableRangeMap<K, V>(ImmutableList.of(range), ImmutableList.of(value)); in of()
71 ImmutableList.Builder<Range<K>> rangesBuilder = new ImmutableList.Builder<Range<K>>(map.size()); in copyOf()
72 ImmutableList.Builder<V> valuesBuilder = new ImmutableList.Builder<V>(map.size()); in copyOf()
143 ImmutableList.Builder<Range<K>> rangesBuilder = in build()
144 new ImmutableList.Builder<Range<K>>(map.size()); in build()
145 ImmutableList.Builder<V> valuesBuilder = new ImmutableList.Builder<V>(map.size()); in build()
154 private final ImmutableList<Range<K>> ranges;
155 private final ImmutableList<V> values;
157 ImmutableRangeMap(ImmutableList<Range<K>> ranges, ImmutableList<V> values) { in ImmutableRangeMap()
[all …]
DCartesianList.java37 private transient final ImmutableList<List<E>> axes;
41 ImmutableList.Builder<List<E>> axesBuilder = in create()
42 new ImmutableList.Builder<List<E>>(lists.size()); in create()
44 List<E> copy = ImmutableList.copyOf(list); in create()
46 return ImmutableList.of(); in create()
53 CartesianList(ImmutableList<List<E>> axes) { in CartesianList()
74 public ImmutableList<E> get(final int index) { in get()
76 return new ImmutableList<E>() { in get()
/external/guava/guava-testlib/test/com/google/common/testing/
DAbstractPackageSanityTestsTest.java22 import com.google.common.collect.ImmutableList;
39 assertThat(findClassesToTest(ImmutableList.of(EmptyTest.class))) in testFindClassesToTest_testClass()
41 assertThat(findClassesToTest(ImmutableList.of(EmptyTests.class))) in testFindClassesToTest_testClass()
43 assertThat(findClassesToTest(ImmutableList.of(EmptyTestCase.class))) in testFindClassesToTest_testClass()
45 assertThat(findClassesToTest(ImmutableList.of(EmptyTestSuite.class))) in testFindClassesToTest_testClass()
50 assertThat(findClassesToTest(ImmutableList.of(Foo.class))) in testFindClassesToTest_noCorrespondingTestClass()
52 assertThat(findClassesToTest(ImmutableList.of(Foo.class, Foo2Test.class))) in testFindClassesToTest_noCorrespondingTestClass()
58 assertThat(findClassesToTest(ImmutableList.of(Foo.class))) in testFindClassesToTest_publicApiOnly()
60 assertThat(findClassesToTest(ImmutableList.of(PublicFoo.class))).has().item(PublicFoo.class); in testFindClassesToTest_publicApiOnly()
65 assertThat(findClassesToTest(ImmutableList.of(PublicFoo.class))) in testFindClassesToTest_ignoreClasses()
[all …]
/external/llvm/include/llvm/ADT/
DImmutableList.h63 class ImmutableList {
75 ImmutableList(const ImmutableListImpl<T>* x = nullptr) : X(x) {} in X()
85 iterator(ImmutableList l) : L(l.getInternalPointer()) {} in iterator()
91 ImmutableList getList() const { return L; } in getList()
118 bool isEqual(const ImmutableList& L) const { return X == L.X; } in isEqual()
120 bool operator==(const ImmutableList& L) const { return isEqual(L); }
130 ImmutableList getTail() { in getTail()
166 ImmutableList<T> concat(const T& Head, ImmutableList<T> Tail) { in concat()
188 ImmutableList<T> add(const T& D, ImmutableList<T> L) { in add()
192 ImmutableList<T> getEmptyList() const { in getEmptyList()
[all …]
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/
DSubcomponentBuilderValidationTest.java18 import com.google.common.collect.ImmutableList;
62 assertAbout(javaSources()).that(ImmutableList.of(componentFile, childComponentFile)) in testRefSubcomponentAndSubBuilderFails()
96 assertAbout(javaSources()).that(ImmutableList.of(componentFile, childComponentFile)) in testRefSubBuilderTwiceFails()
134 assertAbout(javaSources()).that(ImmutableList.of(componentFile, childComponentFile)) in testMoreThanOneBuilderFails()
167 assertAbout(javaSources()).that(ImmutableList.of(componentFile, childComponentFile)) in testBuilderGenericsFails()
213 assertAbout(javaSources()).that(ImmutableList.of(componentFile, childComponentFile)) in testBuilderMissingBuildMethodFails()
232 assertAbout(javaSources()).that(ImmutableList.of(childComponentFile)) in testPrivateBuilderFails()
251 assertAbout(javaSources()).that(ImmutableList.of(childComponentFile)) in testNonStaticBuilderFails()
270 assertAbout(javaSources()).that(ImmutableList.of(childComponentFile)) in testNonAbstractBuilderFails()
291 assertAbout(javaSources()).that(ImmutableList.of(childComponentFile)) in testBuilderOneCxtorWithArgsFails()
[all …]
DComponentProcessorTest.java19 import com.google.common.collect.ImmutableList;
120 assertAbout(javaSources()).that(ImmutableList.of(moduleFile, componentFile)) in checkCannotReferToModuleOfType()
178 assertAbout(javaSources()).that(ImmutableList.of(parent, child, another, componentFile)) in doubleBindingFromResolvedModules()
263 assertAbout(javaSources()).that(ImmutableList.of(injectableTypeFile, componentFile)) in simpleComponent()
352 assertAbout(javaSources()).that(ImmutableList.of(injectableTypeFile, componentFile)) in componentWithScope()
430 assertAbout(javaSources()).that(ImmutableList.of(nestedTypesFile)) in simpleComponentWithNesting()
540 .that(ImmutableList.of(aFile, bFile, cFile, moduleFile, componentFile)) in componentWithModule()
695 .that(ImmutableList.of(always, in transitiveModuleDeps()
726 .that(ImmutableList.of(rootModule, component)) in generatedTransitiveModule()
730 .that(ImmutableList.of(rootModule, component)) in generatedTransitiveModule()
[all …]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/util/
DSuperclassChainTest.java34 import com.google.common.collect.ImmutableList;
68 ImmutableList.<TypeProto>of(), in testGetSuperclassChain()
69 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(objectClassProto))); in testGetSuperclassChain()
72 ImmutableList.<TypeProto>of(objectClassProto), in testGetSuperclassChain()
73 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(oneClassProto))); in testGetSuperclassChain()
76 ImmutableList.<TypeProto>of(oneClassProto, objectClassProto), in testGetSuperclassChain()
77 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(twoClassProto))); in testGetSuperclassChain()
80 ImmutableList.<TypeProto>of(twoClassProto, oneClassProto, objectClassProto), in testGetSuperclassChain()
81 ImmutableList.copyOf(TypeProtoUtils.getSuperclassChain(threeClassProto))); in testGetSuperclassChain()
99 ImmutableList.<TypeProto>of(oneClassProto, unknownClassProto), in testGetSuperclassChain_Unresolved()
[all …]
/external/guava/guava-tests/test/com/google/common/reflect/
DImmutableTypeToInstanceMapTest.java21 import com.google.common.collect.ImmutableList;
95 TypeToken<ImmutableList<Integer>> type = new TypeToken<ImmutableList<Integer>>() {}; in testParameterizedType()
97 .put(type, ImmutableList.of(1)) in testParameterizedType()
100 assertEquals(ImmutableList.of(1), map.getInstance(type)); in testParameterizedType()
105 ImmutableList<Integer>[] array = new ImmutableList[] {ImmutableList.of(1)}; in testGeneriArrayType()
106 TypeToken<ImmutableList<Integer>[]> type = new TypeToken<ImmutableList<Integer>[]>() {}; in testGeneriArrayType()
116 TypeToken<ImmutableList<?>> type = new TypeToken<ImmutableList<?>>() {}; in testWildcardType()
118 .put(type, ImmutableList.of(1)) in testWildcardType()
121 assertEquals(ImmutableList.of(1), map.getInstance(type)); in testWildcardType()
136 builder.put(this.<Integer>anyIterableType(), ImmutableList.of(1)); in testPut_containsTypeVariable()
[all …]
DMutableTypeToInstanceMapTest.java21 import com.google.common.collect.ImmutableList;
191 TypeToken<ImmutableList<Integer>> type = new TypeToken<ImmutableList<Integer>>() {}; in testParameterizedType()
192 map.putInstance(type, ImmutableList.of(1)); in testParameterizedType()
194 assertEquals(ImmutableList.of(1), map.getInstance(type)); in testParameterizedType()
199 ImmutableList<Integer>[] array = new ImmutableList[] {ImmutableList.of(1)}; in testGenericArrayType()
200 TypeToken<ImmutableList<Integer>[]> type = new TypeToken<ImmutableList<Integer>[]>() {}; in testGenericArrayType()
207 TypeToken<ImmutableList<?>> type = new TypeToken<ImmutableList<?>>() {}; in testWildcardType()
208 map.putInstance(type, ImmutableList.of(1)); in testWildcardType()
210 assertEquals(ImmutableList.of(1), map.getInstance(type)); in testWildcardType()
222 map.putInstance(this.<Integer>anyIterableType(), ImmutableList.of(1)); in testPutInstance_withTypeVariable()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
DImmutableMethodImplementation.java34 import com.google.common.collect.ImmutableList;
50 @Nonnull protected final ImmutableList<? extends ImmutableInstruction> instructions;
51 @Nonnull protected final ImmutableList<? extends ImmutableTryBlock> tryBlocks;
52 @Nonnull protected final ImmutableList<? extends ImmutableDebugItem> debugItems;
65 … @Nullable ImmutableList<? extends ImmutableInstruction> instructions, in ImmutableMethodImplementation()
66 … @Nullable ImmutableList<? extends ImmutableTryBlock> tryBlocks, in ImmutableMethodImplementation()
67 … @Nullable ImmutableList<? extends ImmutableDebugItem> debugItems) { in ImmutableMethodImplementation()
90 …@Nonnull @Override public ImmutableList<? extends ImmutableInstruction> getInstructions() { return… in getInstructions()
91 …@Nonnull @Override public ImmutableList<? extends ImmutableTryBlock> getTryBlocks() { return tryBl… in getTryBlocks()
92 …@Nonnull @Override public ImmutableList<? extends ImmutableDebugItem> getDebugItems() { return deb… in getDebugItems()
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DParameter.java24 import com.google.common.collect.ImmutableList;
43 private final ImmutableList<String> defaults;
95 ImmutableList<String> defaults() { in defaults()
111 private static ImmutableList<String> findDefaults(Field field) { in findDefaults()
114 return ImmutableList.copyOf(defaultsAsStrings); in findDefaults()
123 ImmutableList.Builder<String> builder = ImmutableList.builder(); in findDefaults()
129 return ImmutableList.of(); in findDefaults()
132 private static final ImmutableList<String> ALL_BOOLEANS = ImmutableList.of("true", "false");
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DFuturesCombineBenchmark.java24 import com.google.common.collect.ImmutableList;
80 ImmutableList.Builder<ListenableFuture<?>> futuresBuilder = ImmutableList.builder();
84 ImmutableList<ListenableFuture<?>> futures = futuresBuilder.build();
95 ImmutableList.Builder<ListenableFuture<?>> futuresBuilder = ImmutableList.builder();
99 ImmutableList<ListenableFuture<?>> futures = futuresBuilder.build();
114 ImmutableList<SettableFuture<Integer>> futures = getSettableFutureList();
130 ImmutableList<SettableFuture<Integer>> futures = getSettableFutureList();
140 private ImmutableList<SettableFuture<Integer>> getSettableFutureList() {
141 ImmutableList.Builder<SettableFuture<Integer>> futuresBuilder = ImmutableList.builder();
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DCustomMethodInlineTableTest.java34 import com.google.common.collect.ImmutableList;
68 null, null, null, null, null, ImmutableList.of(method)); in testCustomMethodInlineTable_Virtual()
70 DexFile dexFile = new ImmutableDexFile(Opcodes.forApi(19), ImmutableList.of(classDef)); in testCustomMethodInlineTable_Virtual()
72 …ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of… in testCustomMethodInlineTable_Virtual()
95 null, null, null, null, ImmutableList.of(method), null); in testCustomMethodInlineTable_Static()
97 DexFile dexFile = new ImmutableDexFile(Opcodes.forApi(19), ImmutableList.of(classDef)); in testCustomMethodInlineTable_Static()
99 …ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of… in testCustomMethodInlineTable_Static()
122 null, null, null, null, ImmutableList.of(method), null); in testCustomMethodInlineTable_Direct()
124 DexFile dexFile = new ImmutableDexFile(Opcodes.forApi(19), ImmutableList.of(classDef)); in testCustomMethodInlineTable_Direct()
126 …ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of… in testCustomMethodInlineTable_Direct()
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DMethodSignature.java6 import com.google.common.collect.ImmutableList;
15 abstract ImmutableList<Equivalence.Wrapper<TypeMirror>> parameterTypes(); in parameterTypes()
16 abstract ImmutableList<Equivalence.Wrapper<TypeMirror>> thrownTypes(); in thrownTypes()
20 ImmutableList.Builder<Equivalence.Wrapper<TypeMirror>> parameters = ImmutableList.builder(); in fromExecutableType()
21 ImmutableList.Builder<Equivalence.Wrapper<TypeMirror>> thrownTypes = ImmutableList.builder(); in fromExecutableType()
/external/guice/extensions/grapher/src/com/google/inject/grapher/
DDefaultEdgeCreator.java19 import com.google.common.collect.ImmutableList;
67 ImmutableList.Builder<Edge> builder = ImmutableList.builder(); in newDependencyEdges()
89 return ImmutableList.<Edge>of(new BindingEdge(NodeId.newTypeId(binding.getKey()), in visit()
101 return new ImmutableList.Builder<Edge>() in visit()
115 return ImmutableList.<Edge>of(new BindingEdge(NodeId.newTypeId(binding.getKey()), in visit()
125 return ImmutableList.<Edge>of(new BindingEdge(NodeId.newTypeId(binding.getKey()), in visit()
134 return new ImmutableList.Builder<Edge>() in visit()
146 return ImmutableList.<Edge>of(new BindingEdge(NodeId.newTypeId(binding.getKey()), in visit()
151 return ImmutableList.of(); in visitOther()
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DListGenerators.java22 import com.google.common.collect.ImmutableList;
47 return ImmutableList.copyOf(elements); in create()
53 ImmutableList.Builder<String> builder = ImmutableList.<String>builder(); in create()
64 return ImmutableList.<String>builder() in create()
75 return ImmutableList.copyOf(list).reverse(); in create()
86 return ImmutableList.copyOf(all) in create()
98 return ImmutableList.copyOf(all) in create()
114 return ImmutableList.copyOf(all) in create()
146 return ImmutableList.copyOf(elements); in create()

12345678910>>...18