HomeSort by relevance Sort by last modified time
    Searched defs:Arrays (Results 76 - 100 of 1378) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/test/927-timers/src/art/
Test927.java 19 import java.util.Arrays;
35 System.out.println(Arrays.toString(info));
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
BusinessLogicDeviceExecutor.java 23 import java.util.Arrays;
84 rm.addArg(Arrays.copyOfRange(args, argsUsed, args.length));
98 Arrays.toString(args)));
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/userrestrictions/
SecondaryProfileOwnerUserRestrictionsTest.java 20 import java.util.Arrays;
85 assertRestrictions(new HashSet<>(Arrays.asList(DO_GLOBAL_RESTRICTIONS)));
96 expected.addAll(Arrays.asList(DO_GLOBAL_RESTRICTIONS));
99 expected.addAll(Arrays.asList(ALLOWED));
110 assertRestrictions(new HashSet<>(Arrays.asList(ALLOWED)));
  /cts/tests/libcore/wycheproof-bc/src/android/libcore/cts/wycheproof/
BouncyCastleTest.java 46 import java.util.Arrays;
77 previousProviders.addAll(Arrays.asList(Security.getProviders()));
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureComparator.java 22 import java.util.Arrays;
56 Assert.assertTrue(Arrays.equals(expectedStroke.points, observedStroke.points));
  /cts/tools/utils/
VogarUtils.java 27 import java.util.Arrays;
83 expectSet.addAll(Arrays.asList(files));
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
LookupSwitchInsnNode.java 38 import java.util.Arrays;
86 this.labels.addAll(Arrays.asList(labels));
  /external/guava/guava-tests/benchmark/com/google/common/collect/
ComparatorDelegationOverheadBenchmark.java 21 import java.util.Arrays;
27 * {@link Ordering#natural()}, as opposed to using the inlined {@link Arrays#sort(Object[])}
54 Arrays.sort(copy);
64 Arrays.sort(copy, Ordering.natural());
81 Arrays.sort(copy, Ordering.from(NATURAL_INTEGER));
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
NodeComparatorTest.java 18 import java.util.Arrays;
39 Arrays.asList(d3, d5, d1, d4, d2));
40 assertEquals(Arrays.asList(d1, d2, d3, d4, d5), result);
  /external/junit-params/src/main/java/junitparams/internal/parameters/
ParametersFromExternalClassProvideMethod.java 9 import java.util.Arrays;
70 Arrays.asList(paramsFromMethodCommon.getDataFromMethod(prividerMethod)));
  /external/mockito/src/test/java/org/mockito/internal/invocation/
InvocationMarkerTest.java 13 import java.util.Arrays;
28 InvocationMarker.markVerified(Arrays.asList(i), im);
45 InvocationMarker.markVerified(Arrays.asList(i), c);
62 InvocationMarker.markVerifiedInOrder(Arrays.asList(i), im, context);
  /external/mockito/src/test/java/org/mockitousage/examples/use/
ExampleTest.java 16 import java.util.Arrays;
68 when(mockDatabase.getArticlesFor("Guardian")).thenReturn(Arrays.asList(articleOne, articleTwo, articleThree));
85 when(mockDatabase.getArticlesFor("Guardian")).thenReturn(Arrays.asList(articleOne, articleTwo));
  /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/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
HuffmanTest.java 21 import java.util.Arrays;
53 assertTrue(Arrays.equals(buf, decodedBytes));
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
FakeDns.java 22 import java.util.Arrays;
55 assertEquals(Arrays.asList(expectedHosts), requestedHosts);
RecordingProxySelector.java 25 import java.util.Arrays;
41 assertEquals(Arrays.asList(expectedUris), requestedUris);
  /external/okhttp/okio/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...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
ByteBufferWriterTest.java 38 import java.util.Arrays;
63 assertTrue(Arrays.equals(toArray(buffer), os.toByteArray()));
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
BubbleSortTest.java 27 import java.util.Arrays;
96 Arrays.sort(witness);
97 assertTrue(Arrays.equals(witness, a));
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
SkipBeanTest.java 18 import java.util.Arrays;
94 bean.setListInt(Arrays.asList(new Integer[] { null, 1, 2, 3 }));
95 bean.setListStr(Arrays.asList(new String[] { "bar", null, "foo", null }));

Completed in 658 milliseconds

1 2 34 5 6 7 8 91011>>