Home
last modified time | relevance | path

Searched defs:copyOf (Results 1 – 25 of 50) sorted by relevance

12

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DImmutableSetTest.java71 @Override protected Set<String> copyOf(String[] elements) { in copyOf() method in ImmutableSetTest
75 @Override protected Set<String> copyOf(Collection<String> elements) { in copyOf() method in ImmutableSetTest
79 @Override protected Set<String> copyOf(Iterable<String> elements) { in copyOf() method in ImmutableSetTest
83 @Override protected Set<String> copyOf(Iterator<String> elements) { in copyOf() method in ImmutableSetTest
DAbstractImmutableSetTest.java52 protected abstract Set<String> copyOf(String[] elements); in copyOf() method in AbstractImmutableSetTest
53 protected abstract Set<String> copyOf(Collection<String> elements); in copyOf() method in AbstractImmutableSetTest
54 protected abstract Set<String> copyOf(Iterable<String> elements); in copyOf() method in AbstractImmutableSetTest
55 protected abstract Set<String> copyOf(Iterator<String> elements); in copyOf() method in AbstractImmutableSetTest
DImmutableSortedSetTest.java86 @Override protected SortedSet<String> copyOf(String[] elements) { in copyOf() method in ImmutableSortedSetTest
90 @Override protected SortedSet<String> copyOf(Collection<String> elements) { in copyOf() method in ImmutableSortedSetTest
94 @Override protected SortedSet<String> copyOf(Iterable<String> elements) { in copyOf() method in ImmutableSortedSetTest
98 @Override protected SortedSet<String> copyOf(Iterator<String> elements) { in copyOf() method in ImmutableSortedSetTest
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableSetTest.java121 @Override protected Set<String> copyOf(String[] elements) { in copyOf() method in ImmutableSetTest
125 @Override protected Set<String> copyOf(Collection<String> elements) { in copyOf() method in ImmutableSetTest
129 @Override protected Set<String> copyOf(Iterable<String> elements) { in copyOf() method in ImmutableSetTest
133 @Override protected Set<String> copyOf(Iterator<String> elements) { in copyOf() method in ImmutableSetTest
DAbstractImmutableSetTest.java56 protected abstract Set<String> copyOf(String[] elements); in copyOf() method in AbstractImmutableSetTest
57 protected abstract Set<String> copyOf(Collection<String> elements); in copyOf() method in AbstractImmutableSetTest
58 protected abstract Set<String> copyOf(Iterable<String> elements); in copyOf() method in AbstractImmutableSetTest
59 protected abstract Set<String> copyOf(Iterator<String> elements); in copyOf() method in AbstractImmutableSetTest
DImmutableSortedSetTest.java193 @Override protected SortedSet<String> copyOf(String[] elements) { in copyOf() method in ImmutableSortedSetTest
197 @Override protected SortedSet<String> copyOf(Collection<String> elements) { in copyOf() method in ImmutableSortedSetTest
201 @Override protected SortedSet<String> copyOf(Iterable<String> elements) { in copyOf() method in ImmutableSortedSetTest
205 @Override protected SortedSet<String> copyOf(Iterator<String> elements) { in copyOf() method in ImmutableSortedSetTest
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableSet.java82 public static <E> ImmutableSet<E> copyOf(E[] elements) { in copyOf() method in ImmutableSet
94 public static <E> ImmutableSet<E> copyOf(Collection<? extends E> elements) { in copyOf() method in ImmutableSet
99 public static <E> ImmutableSet<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSet
108 public static <E> ImmutableSet<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSet
DImmutableSortedSet.java135 public static <E> ImmutableSortedSet<E> copyOf(Collection<? extends E> elements) { in copyOf() method in ImmutableSortedSet
139 public static <E> ImmutableSortedSet<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSortedSet
143 public static <E> ImmutableSortedSet<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSortedSet
147 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
152 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
158 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
164 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
DImmutableMultiset.java150 public static <E> ImmutableMultiset<E> copyOf(E[] elements) { in copyOf() method in ImmutableMultiset
171 public static <E> ImmutableMultiset<E> copyOf( in copyOf() method in ImmutableMultiset
228 public static <E> ImmutableMultiset<E> copyOf( in copyOf() method in ImmutableMultiset
DImmutableList.java126 public static <E> ImmutableList<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableList
133 public static <E> ImmutableList<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableList
137 public static <E> ImmutableList<E> copyOf(Collection<? extends E> elements) { in copyOf() method in ImmutableList
150 public static <E> ImmutableList<E> copyOf(E[] elements) { in copyOf() method in ImmutableList
DImmutableSetMultimap.java291 public static <K, V> ImmutableSetMultimap<K, V> copyOf( in copyOf() method in ImmutableSetMultimap
296 private static <K, V> ImmutableSetMultimap<K, V> copyOf( in copyOf() method in ImmutableSetMultimap
DImmutableSortedMap.java112 copyOf(Map<? extends K, ? extends V> map) { in copyOf() method in ImmutableSortedMap
116 public static <K, V> ImmutableSortedMap<K, V> copyOf( in copyOf() method in ImmutableSortedMap
/external/guava/guava/src/com/google/common/collect/
DImmutableSortedSet.java217 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
248 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
286 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
306 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
324 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
342 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
378 public static <E> ImmutableSortedSet<E> copyOf( in copyOf() method in ImmutableSortedSet
DImmutableSortedMultiset.java178 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> copyOf(E[] elements) { in copyOf() method in ImmutableSortedMultiset
204 public static <E> ImmutableSortedMultiset<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableSortedMultiset
222 public static <E> ImmutableSortedMultiset<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableSortedMultiset
236 public static <E> ImmutableSortedMultiset<E> copyOf( in copyOf() method in ImmutableSortedMultiset
252 public static <E> ImmutableSortedMultiset<E> copyOf( in copyOf() method in ImmutableSortedMultiset
DImmutableList.java224 public static <E> ImmutableList<E> copyOf(Iterable<? extends E> elements) { in copyOf() method in ImmutableList
250 public static <E> ImmutableList<E> copyOf(Collection<? extends E> elements) { in copyOf() method in ImmutableList
266 public static <E> ImmutableList<E> copyOf(Iterator<? extends E> elements) { in copyOf() method in ImmutableList
288 public static <E> ImmutableList<E> copyOf(E[] elements) { in copyOf() method in ImmutableList
DImmutableMultiset.java151 public static <E> ImmutableMultiset<E> copyOf(E[] elements) { in copyOf() method in ImmutableMultiset
172 public static <E> ImmutableMultiset<E> copyOf( in copyOf() method in ImmutableMultiset
229 public static <E> ImmutableMultiset<E> copyOf( in copyOf() method in ImmutableMultiset
DImmutableClassToInstanceMap.java124 public static <B, S extends B> ImmutableClassToInstanceMap<B> copyOf( in copyOf() method in ImmutableClassToInstanceMap
DImmutableSortedMultisetFauxverideShim.java151 public static <E> ImmutableSortedMultiset<E> copyOf(E[] elements) { in copyOf() method in ImmutableSortedMultisetFauxverideShim
DImmutableSortedSetFauxverideShim.java142 @Deprecated public static <E> ImmutableSortedSet<E> copyOf(E[] elements) { in copyOf() method in ImmutableSortedSetFauxverideShim
DImmutableRangeSet.java86 public static <C extends Comparable> ImmutableRangeSet<C> copyOf(RangeSet<C> rangeSet) { in copyOf() method in ImmutableRangeSet
DImmutableSetMultimap.java297 public static <K, V> ImmutableSetMultimap<K, V> copyOf( in copyOf() method in ImmutableSetMultimap
302 private static <K, V> ImmutableSetMultimap<K, V> copyOf( in copyOf() method in ImmutableSetMultimap
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DArrays.java730 public static byte[] copyOf(byte[] data, int newLength) in copyOf() method in Arrays
746 public static char[] copyOf(char[] data, int newLength) in copyOf() method in Arrays
762 public static int[] copyOf(int[] data, int newLength) in copyOf() method in Arrays
778 public static long[] copyOf(long[] data, int newLength) in copyOf() method in Arrays
794 public static BigInteger[] copyOf(BigInteger[] data, int newLength) in copyOf() method in Arrays
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DMultidimensionalCounter.java310 private int[] copyOf(int[] source, int newLen) { in copyOf() method in MultidimensionalCounter
/external/swiftshader/src/OpenGL/compiler/
DSymbolTable.cpp249 TSymbol::TSymbol(const TSymbol& copyOf) in TSymbol()
/external/r8/src/main/java/com/android/tools/r8/ir/code/
DConstNumber.java37 public static ConstNumber copyOf(IRCode code, ConstNumber original) { in copyOf() method in ConstNumber

12