HomeSort by relevance Sort by last modified time
    Searched defs:Arrays (Results 51 - 75 of 643) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
UiAutomatorJarTest.java 27 import java.util.Arrays;
86 setTestJarPaths(Arrays.asList(fullJarPath));
  /cts/tools/utils/
VogarUtils.java 26 import java.util.Arrays;
82 expectSet.addAll(Arrays.asList(files));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
PKCS8EncodedKeySpecTest.java 26 import java.util.Arrays;
72 assertTrue(Arrays.equals(encodedKey, ek));
108 assertTrue(Arrays.equals(encodedKey, ek));
134 assertTrue(Arrays.equals(encodedKey, ek1));
X509EncodedKeySpecTest.java 26 import java.util.Arrays;
72 assertTrue(Arrays.equals(encodedKey, ek));
108 assertTrue(Arrays.equals(encodedKey, ek));
134 assertTrue(Arrays.equals(encodedKey, ek1));
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ImplicitTest.java 26 import java.util.Arrays;
180 assertTrue("Test case: " + i, Arrays.equals(
213 assertTrue(Arrays.equals(array, (byte[]) type2
217 assertTrue(Arrays.equals(primitiveEncoding, type2.encode(array)));
  /external/guava/guava-tests/test/com/google/common/collect/
SetsTest.java 60 import java.util.Arrays;
92 = Arrays.<Integer>asList();
95 = Arrays.asList(0, 1, 1);
106 = Arrays.asList(8, 6, 7, 5, 3, 0, 9);
122 Arrays.asList(elements).subList(0, size - 1))
127 Arrays.asList(elements).subList(1, size))
187 unfiltered.addAll(Arrays.asList(elements));
360 verifySetContents(set, Arrays.asList(0, 1));
452 Arrays.asList(new Derived("foo"), new Derived("bar"));
460 Arrays.asList(new LegacyComparable("foo"), new LegacyComparable("bar"))
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
LookupSwitchInsnNode.java 38 import java.util.Arrays;
87 this.labels.addAll(Arrays.asList(labels));
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
TwoSecondIntersectionFinder.java 22 import java.util.Arrays;
59 Arrays.fill(fragments, -1);
  /external/nist-sip/java/gov/nist/javax/sip/header/
Indentation.java 98 java.util.Arrays.fill(chars, ' ');
  /external/okhttp/okio/src/test/java/okio/
MockSink.java 20 import java.util.Arrays;
34 assertEquals(Arrays.asList(messages), log);
  /external/proguard/src/proguard/classfile/editor/
AttributeSorter.java 46 Arrays.sort(programClass.attributes, 0, programClass.u2attributesCount, this);
59 Arrays.sort(programMember.attributes, 0, programMember.u2attributesCount, this);
74 Arrays.sort(codeAttribute.attributes, 0, codeAttribute.u2attributesCount, this);
VariableEditor.java 28 import java.util.Arrays;
64 Arrays.fill(deleted, 0, maxLocals, false);
  /external/proguard/src/proguard/obfuscate/
AttributeShrinker.java 29 import java.util.Arrays;
116 Arrays.fill(array, counter, length, null);
  /external/proguard/src/proguard/util/
ArrayUtil.java 24 import java.util.Arrays;
27 * This class contains utility methods operating on arrays.
32 * Returns whether the elements of the two given arrays are the same.
35 * @param size the size of the arrays to be checked.
53 * Returns whether the elements of the two given arrays are the same.
56 * @param size the size of the arrays to be checked.
74 * Returns whether the elements of the two given arrays are the same.
77 * @param size the size of the arrays to be checked.
95 * Returns whether the elements of the two given arrays are the same.
98 * @param size the size of the arrays to be checked
    [all...]
  /libcore/benchmarks/src/benchmarks/
DeepArrayOpsBenchmark.java 24 import java.util.Arrays;
84 Arrays.deepHashCode(array);
90 Arrays.deepEquals(array, array2);
  /libcore/luni/src/main/java/java/io/
BufferedOutputStream.java 20 import java.util.Arrays;
135 Arrays.checkOffsetAndCount(buffer.length, offset, length);
LineNumberInputStream.java 20 import java.util.Arrays;
160 Arrays.checkOffsetAndCount(buffer.length, byteOffset, byteCount);
StringWriter.java 20 import java.util.Arrays;
119 Arrays.checkOffsetAndCount(chars.length, offset, count);
  /libcore/luni/src/main/java/java/math/
Primality.java 20 import java.util.Arrays;
121 Arrays.fill(isDivisible, false);
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEKeySpec.java 21 import java.util.Arrays;
142 Arrays.fill(password, '?');
  /libcore/luni/src/main/java/javax/security/auth/callback/
PasswordCallback.java 21 import java.util.Arrays;
118 Arrays.fill(inputPassword, '\u0000');
  /libcore/luni/src/test/java/tests/security/interfaces/
Util.java 100 java.util.Arrays.fill(bytes, (byte) 0);
  /libcore/support/src/test/java/tests/security/
AlgorithmParameterAsymmetricHelper.java 25 import java.util.Arrays;
99 Assert.assertTrue(Arrays.equals(plainData.getBytes(), decrypted));
AlgorithmParameterSymmetricHelper.java 24 import java.util.Arrays;
112 Assert.assertTrue(Arrays.equals(plainData.getBytes(), decrypted));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegateTest.java 22 import java.util.Arrays;
108 assertTrue(Arrays.deepEquals(a1, a2));
112 assertTrue(Arrays.deepEquals(a1, a2));

Completed in 1714 milliseconds

1 23 4 5 6 7 8 91011>>