Searched
refs:copyOf (Results
301 -
325 of
566) sorted by null
<<11121314151617181920>>
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
Chars.java | 298 ? copyOf(array, minLength + padding) 302 // Arrays.copyOf() requires Java 6 303 private static char[] copyOf(char[] original, int length) {
|
Doubles.java | 323 ? copyOf(array, minLength + padding) 327 // Arrays.copyOf() requires Java 6 328 private static double[] copyOf(double[] original, int length) {
|
Floats.java | 320 ? copyOf(array, minLength + padding) 324 // Arrays.copyOf() requires Java 6 325 private static float[] copyOf(float[] original, int length) {
|
Shorts.java | 341 ? copyOf(array, minLength + padding) 345 // Arrays.copyOf() requires Java 6 346 private static short[] copyOf(short[] original, int length) {
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
ShadowNotificationManager.java | 111 return ImmutableList.copyOf(notificationChannelGroups.values()); 137 return ImmutableList.copyOf(notificationChannels.values());
|
/external/wycheproof/java/com/google/security/wycheproof/testcases/ |
CipherInputStreamTest.java | 164 byte[] ct = Arrays.copyOf(t.ct, t.ct.length); 198 byte[] ct = Arrays.copyOf(t.ct, t.ct.length);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableSetMultimapTest.java | 344 Multimap<String, Integer> multimap = ImmutableSetMultimap.copyOf(input); 356 = ImmutableSetMultimap.copyOf(input); 362 Multimap<String, Integer> multimap = ImmutableSetMultimap.copyOf(input); 369 assertSame(multimap, ImmutableSetMultimap.copyOf(multimap)); 376 ImmutableSetMultimap.copyOf(input); 385 ImmutableSetMultimap.copyOf(input);
|
MinMaxPriorityQueueTest.java | 593 List<Integer> expected = ImmutableList.copyOf(elements); 608 List<Integer> expected = ImmutableList.copyOf(elements); 623 List<Integer> expected = ImmutableList.copyOf(elements); 640 List<Integer> expected = ImmutableList.copyOf(elements); 655 List<Integer> expected = ImmutableList.copyOf(elements);
|
/external/guice/core/test/com/google/inject/ |
BinderTestSuite.java | 441 modules = ImmutableList.copyOf(builder.modules); 442 expectedValues = ImmutableList.copyOf(builder.expectedValues); 510 modules = ImmutableList.copyOf(builder.modules); 541 modules = ImmutableList.copyOf(builder.modules); 618 modules = ImmutableList.copyOf(builder.modules); 619 expectedValues = ImmutableList.copyOf(builder.expectedValues);
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
XLocaleDistance.java | 67 CONTAINER_TO_CONTAINED = ImmutableMultimap.copyOf(containerToContainedTemp); 100 final static private Set<String> ALL_FINAL_REGIONS = ImmutableSet.copyOf(CONTAINER_TO_CONTAINED_FINAL.get("001")); [all...] |
XLocaleMatcher.java | 162 exactSupportedLocales = ImmutableSet.copyOf(temp2.values()); 207 return ImmutableMultimap.copyOf(builder);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
Arrays.java | 809 public static byte[] copyOf(byte[] data, int newLength) 825 public static char[] copyOf(char[] data, int newLength) 841 public static int[] copyOf(int[] data, int newLength) 857 public static long[] copyOf(long[] data, int newLength) 873 public static BigInteger[] copyOf(BigInteger[] data, int newLength)
|