HomeSort by relevance Sort by last modified time
    Searched refs:copyOf (Results 101 - 125 of 242) sorted by null

1 2 3 45 6 7 8 910

  /external/guava/guava/src/com/google/common/primitives/
Doubles.java 278 ? copyOf(array, minLength + padding)
282 // Arrays.copyOf() requires Java 6
283 private static double[] copyOf(double[] original, int length) {
Floats.java 275 ? copyOf(array, minLength + padding)
279 // Arrays.copyOf() requires Java 6
280 private static float[] copyOf(float[] original, int length) {
Ints.java 348 ? copyOf(array, minLength + padding)
352 // Arrays.copyOf() requires Java 6
353 private static int[] copyOf(int[] original, int length) {
Longs.java 332 ? copyOf(array, minLength + padding)
336 // Arrays.copyOf() requires Java 6
337 private static long[] copyOf(long[] original, int length) {
Shorts.java 345 ? copyOf(array, minLength + padding)
349 // Arrays.copyOf() requires Java 6
350 private static short[] copyOf(short[] original, int length) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableListMultimap.java 232 public static <K, V> ImmutableListMultimap<K, V> copyOf(
253 ImmutableList<V> list = ImmutableList.copyOf(entry.getValue());
Sets.java 102 EnumSet<E> enumSetClone = EnumSet.copyOf((EnumSet<E>) elements);
115 * Unlike {@link EnumSet#copyOf(Collection)}, this method does not produce an
163 * {@link ImmutableSet#copyOf(Object[])} (for an array) instead.
199 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
218 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
272 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
310 * ImmutableSortedSet#copyOf(Iterable)} instead.
537 return ImmutableSet.copyOf(this);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 288 ? copyOf(array, minLength + padding)
292 // Arrays.copyOf() requires Java 6
293 private static char[] copyOf(char[] original, int length) {
Ints.java 292 ? copyOf(array, minLength + padding)
296 // Arrays.copyOf() requires Java 6
297 private static int[] copyOf(int[] original, int length) {
Longs.java 265 ? copyOf(array, minLength + padding)
269 // Arrays.copyOf() requires Java 6
270 private static long[] copyOf(long[] original, int length) {
Shorts.java 293 ? copyOf(array, minLength + padding)
297 // Arrays.copyOf() requires Java 6
298 private static short[] copyOf(short[] original, int length) {
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 254 tmpBuf = Arrays.copyOf(buffer, bufferOffset);
286 output = Arrays.copyOf(output, resultSize);
  /packages/apps/Email/src/com/android/email/activity/setup/
MailboxSettings.java 229 entries = Arrays.copyOf(entries, size);
230 values = Arrays.copyOf(values, size);
  /external/guava/guava/src/com/google/common/collect/
Sets.java 105 EnumSet<E> enumSetClone = EnumSet.copyOf((EnumSet<E>) elements);
118 * Unlike {@link EnumSet#copyOf(Collection)}, this method does not produce an
166 * {@link ImmutableSet#copyOf(Object[])} (for an array) instead.
202 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
221 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
275 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
313 * ImmutableSortedSet#copyOf(Iterable)} instead.
549 return ImmutableSet.copyOf(this);
    [all...]
ImmutableTable.java 71 public static final <R, C, V> ImmutableTable<R, C, V> copyOf(
RegularImmutableSortedMultiset.java 66 return new RegularImmutableSortedMultiset<E>(comparator, ImmutableList.copyOf(newEntries));
  /external/guava/guava-tests/test/com/google/common/collect/
MinMaxPriorityQueueTest.java 582 List<Integer> expected = ImmutableList.copyOf(elements);
597 List<Integer> expected = ImmutableList.copyOf(elements);
612 List<Integer> expected = ImmutableList.copyOf(elements);
629 List<Integer> expected = ImmutableList.copyOf(elements);
644 List<Integer> expected = ImmutableList.copyOf(elements);
ConcurrentHashMultisetTest.java 260 assertEquals(ImmutableMultiset.copyOf(elements), multiset);
290 assertEquals(ImmutableSet.copyOf(elements), ImmutableSet.copyOf(multiset.entryIterator()));
Collections2Test.java 156 unfiltered.addAll(ImmutableList.copyOf(elements));
178 unfiltered.addAll(ImmutableList.copyOf(elements));
ImmutableTableTest.java 157 Table<R, C, V> copy = ImmutableTable.copyOf(original);
185 ASSERT.that(ImmutableTable.copyOf(table).row('b').keySet())
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumSetTest.java     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
PriorityBlockingQueue.java 228 a = Arrays.copyOf(a, n, Object[].class);
689 return Arrays.copyOf(queue, size);
814 return (T[]) Arrays.copyOf(queue, size, a.getClass());
  /libcore/luni/src/test/java/tests/api/java/util/
EnumSetTest.java 892 * java.util.EnumSet#copyOf(java.util.Collection)
897 EnumSet.copyOf((Collection) null);
905 EnumSet.copyOf(collection);
913 EnumSet.copyOf(collection);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 521 formats = EnumSet.copyOf(formats);
536 formats = EnumSet.copyOf(formats);
549 formats = EnumSet.copyOf(formats);
  /frameworks/opt/net/voip/src/java/android/net/sip/
SimpleSessionDescription.java 327 return Arrays.copyOf(types, length);
562 return Arrays.copyOf(names, length);

Completed in 767 milliseconds

1 2 3 45 6 7 8 910