HomeSort by relevance Sort by last modified time
    Searched refs:testArray (Results 1 - 18 of 18) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
TinyPtrVectorTest.cpp 46 ArrayRef<PtrT> testArray(size_t N) {
79 this->expectValues(this->V, this->testArray(0));
84 this->expectValues(this->V, this->testArray(1));
86 this->expectValues(this->V, this->testArray(2));
88 this->expectValues(this->V, this->testArray(3));
90 this->expectValues(this->V, this->testArray(4));
92 this->expectValues(this->V, this->testArray(5));
96 this->expectValues(this->V, this->testArray(4));
98 this->expectValues(this->V, this->testArray(3));
102 this->expectValues(this->V, this->testArray(4))
    [all...]
  /external/llvm/unittests/ADT/
TinyPtrVectorTest.cpp 52 ArrayRef<PtrT> testArray(size_t N) {
85 this->expectValues(this->V, this->testArray(0));
90 this->expectValues(this->V, this->testArray(1));
92 this->expectValues(this->V, this->testArray(2));
94 this->expectValues(this->V, this->testArray(3));
96 this->expectValues(this->V, this->testArray(4));
98 this->expectValues(this->V, this->testArray(5));
102 this->expectValues(this->V, this->testArray(4));
104 this->expectValues(this->V, this->testArray(3));
108 this->expectValues(this->V, this->testArray(4))
    [all...]
  /external/junit-params/src/test/java/junitparams/custom/combined/
CartesianTest.java 24 Object[] testArray = new String[]{"AAA", "BBB"};
25 List<Object[]> list = singletonList(testArray);
31 assertThat(result).isEqualTo(testArray);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/
ComplexMovementTest.java 90 ArrayList<Ring> testArray = ((ComplexMovementPath) mTestPath).getRings();
92 for (int i = 0; i < testArray.size(); i++) {
93 if (!testArray.get(i).isEntered()) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestCanonicalIterator.java 39 static final String testArray[][] = {
147 for (int i = 0; i < testArray.length; ++i) {
148 //logln("Results for: " + name.transliterate(testArray[i]));
149 CanonicalIterator it = new CanonicalIterator(testArray[i][0]);
163 expectEqual(i + ": ", testArray[i][0], collectionToString(set), testArray[i][1]);
168 if(!it.getSource().equals(Normalizer.normalize(testArray[i][0],Normalizer.NFD))){
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestCanonicalIterator.java 36 static final String testArray[][] = {
144 for (int i = 0; i < testArray.length; ++i) {
145 //logln("Results for: " + name.transliterate(testArray[i]));
146 CanonicalIterator it = new CanonicalIterator(testArray[i][0]);
160 expectEqual(i + ": ", testArray[i][0], collectionToString(set), testArray[i][1]);
165 if(!it.getSource().equals(Normalizer.normalize(testArray[i][0],Normalizer.NFD))){
  /external/skia/tests/
TDPQueueTest.cpp 161 SkTDArray<Dummy> testArray;
162 testArray.setReserve(count);
164 Dummy *dummy = testArray.append();
168 pqTest.insert(&testArray[i]);
176 dummy->fPriority = testArray[i].fPriority;
177 dummy->fValue = testArray[i].fValue;
  /external/skqp/tests/
TDPQueueTest.cpp 161 SkTDArray<Dummy> testArray;
162 testArray.setReserve(count);
164 Dummy *dummy = testArray.append();
168 pqTest.insert(&testArray[i]);
176 dummy->fPriority = testArray[i].fPriority;
177 dummy->fValue = testArray[i].fValue;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
TestBoilerplate.java 47 T[] testArray = (T[]) list.toArray();
48 for (int i = 0; i < testArray.length; ++i) {
50 T a = testArray[i];
72 for (int j = i; j < testArray.length; ++j) {
73 b = testArray[j];
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestBoilerplate.java 46 T[] testArray = (T[]) list.toArray();
47 for (int i = 0; i < testArray.length; ++i) {
49 T a = testArray[i];
71 for (int j = i; j < testArray.length; ++j) {
72 b = testArray[j];
  /external/icu/icu4c/source/test/intltest/
canittst.cpp 109 static const char * const testArray[][2] = {
152 for (i = 0; i < UPRV_LENGTHOF(testArray); ++i) {
153 //logln("Results for: " + name.transliterate(testArray[i]));
154 UnicodeString testStr = CharsToUnicodeString(testArray[i][0]);
167 expectEqual(i + UnicodeString(": "), testStr, collectionToString(set), CharsToUnicodeString(testArray[i][1]));
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
SeqTagTest.java 79 public void testArray() {
  /frameworks/av/camera/tests/
VendorTagDescriptorTests.cpp 194 uint32_t* testArray = tagArray;
196 EXPECT_EQ(testArray, tagArray);
  /cts/tests/tests/media/src/android/media/cts/
MediaDrmMockTest.java 117 byte testArray[] = {0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x10, 0x11, 0x12};
118 md.setPropertyByteArray("test-array", testArray);
119 assertTrue(Arrays.equals(md.getPropertyByteArray("test-array"), testArray));
    [all...]
  /external/guice/extensions/testlib/test/com/google/inject/testing/fieldbinder/
BoundFieldModuleTest.java 538 final Integer[] testArray = new Integer[] {1024, 2048};
541 @Bind private Integer[] anIntArray = testArray;
547 assertEquals(testArray, injector.getInstance(Integer[].class));
  /external/tensorflow/tensorflow/python/lib/core/
bfloat16_test.py 188 def testArray(self):
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java     [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
py_func_test.py 106 def testArray(self):

Completed in 672 milliseconds