HomeSort by relevance Sort by last modified time
    Searched refs:ObjectArrays (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/guava/guava-tests/test/com/google/common/collect/
ObjectArraysTest.java 32 * Unit test for {@code ObjectArrays}.
42 tester.testAllPublicStaticMethods(ObjectArrays.class);
45 @GwtIncompatible("ObjectArrays.newArray(Class, int)")
47 String[] empty = ObjectArrays.newArray(String.class, 0);
52 @GwtIncompatible("ObjectArrays.newArray(Class, int)")
54 String[] array = ObjectArrays.newArray(String.class, 2);
60 @GwtIncompatible("ObjectArrays.newArray(Class, int)")
62 String[][] array = ObjectArrays.newArray(String[].class, 1);
70 String[] empty = ObjectArrays.newArray(in, 0);
75 String[] array = ObjectArrays.newArray(new String[0], 2)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ObjectArraysTest.java 29 * Unit test for {@code ObjectArrays}.
38 String[] empty = ObjectArrays.newArray(in, 0);
43 String[] array = ObjectArrays.newArray(new String[0], 2);
50 String[][] array = ObjectArrays.newArray(new String[0][0], 1);
64 Object[] target = ObjectArrays.toArrayImpl(list);
84 Integer[] starting = ObjectArrays.arraysCopyOf(array1, array1.length);
85 Integer[] array2 = ObjectArrays.arraysCopyOf(array1, array1.length);
88 Object[] target = ObjectArrays.toArrayImpl(list, array2);
101 String[] result = ObjectArrays.concat("foo", new String[] {});
106 String[] result = ObjectArrays.concat("foo", new String[] { "bar" })
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableCollection.java 21 import static com.google.common.collect.ObjectArrays.checkElementsNotNull;
62 return ObjectArrays.EMPTY_ARRAY;
74 other = ObjectArrays.newArray(other, size);
332 this.contents = ObjectArrays.arraysCopyOf(
ObjectArrays.java 36 public final class ObjectArrays {
39 private ObjectArrays() {}
ForwardingCollection.java 253 return ObjectArrays.toArrayImpl(this, array);
Ordering.java 626 array = ObjectArrays.arraysCopyOf(array, k);
736 Arrays.asList(ObjectArrays.arraysCopyOf(buffer, bufferSize)));
750 ObjectArrays.swap(values, storeIndex, i);
754 ObjectArrays.swap(values, right, storeIndex);
    [all...]
ImmutableSet.java 20 import static com.google.common.collect.ObjectArrays.checkElementNotNull;
223 ? ObjectArrays.arraysCopyOf(elements, uniques)
ImmutableList.java 22 import static com.google.common.collect.ObjectArrays.arraysCopyOf;
23 import static com.google.common.collect.ObjectArrays.checkElementsNotNull;
67 new RegularImmutableList<Object>(ObjectArrays.EMPTY_ARRAY);
ImmutableMap.java 195 entries = ObjectArrays.arraysCopyOf(
ImmutableSortedSet.java 21 import static com.google.common.collect.ObjectArrays.checkElementsNotNull;
Iterables.java 316 T[] array = ObjectArrays.newArray(type, collection.size());
    [all...]
Synchronized.java 872 return ObjectArrays.toArrayImpl(delegate());
877 return ObjectArrays.toArrayImpl(delegate(), array);
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
SimpleTimeLimiter.java 23 import com.google.common.collect.ObjectArrays;
154 StackTraceElement[] combined = ObjectArrays.concat(cause.getStackTrace(),
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ObjectArrays.java 34 public final class ObjectArrays {
37 private ObjectArrays() {}
ImmutableSortedSet.java 275 return ObjectArrays.toArrayImpl(this);
280 return ObjectArrays.toArrayImpl(this, other);
Synchronized.java 856 return ObjectArrays.toArrayImpl(delegate());
861 return ObjectArrays.toArrayImpl(delegate(), array);
  /cts/tests/tests/keystore/src/android/keystore/cts/
SecretKeyFactoryTest.java 24 import com.google.common.collect.ObjectArrays;
60 EXPECTED_ALGORITHMS = ObjectArrays.concat(EXPECTED_ALGORITHMS, "DESede");
KeyGeneratorTest.java 24 import com.google.common.collect.ObjectArrays;
62 EXPECTED_ALGORITHMS = ObjectArrays.concat(EXPECTED_ALGORITHMS, "DESede");
CipherTest.java 30 import com.google.common.collect.ObjectArrays;
98 EXPECTED_ALGORITHMS = ObjectArrays
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
CaliperMain.java 17 import static com.google.common.collect.ObjectArrays.concat;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java 41 import com.google.common.collect.ObjectArrays;
121 choices = ObjectArrays.concat(choices, array, ElementDescriptor.class);
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBasedArrayBlockingQueue.java 19 import com.google.common.collect.ObjectArrays;
531 a = ObjectArrays.newArray(a, count);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 48 import com.google.common.collect.ObjectArrays;
246 return ObjectArrays.concat(
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.3/
haha-2.0.3.jar 
  /prebuilts/misc/common/android-support-test/espresso/
espresso_web_release_no_deps.jar 

Completed in 1550 milliseconds

1 2 3 4 5 6