Searched refs:testArray (Results 1 - 25 of 28) sorted by relevance

12

/external/llvm/unittests/ADT/
H A DTinyPtrVectorTest.cpp54 ArrayRef<PtrT> testArray(size_t N) { function in class:__anon9246::TinyPtrVectorTest
87 this->expectValues(this->V, this->testArray(0));
92 this->expectValues(this->V, this->testArray(1));
94 this->expectValues(this->V, this->testArray(2));
96 this->expectValues(this->V, this->testArray(3));
98 this->expectValues(this->V, this->testArray(4));
100 this->expectValues(this->V, this->testArray(5));
104 this->expectValues(this->V, this->testArray(4));
106 this->expectValues(this->V, this->testArray(3));
110 this->expectValues(this->V, this->testArray(
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/
H A Dsplice1.js43 function mySplice(testArray, splicedArray, first, len, elements)
49 if (adjustedFirst < 0) adjustedFirst = testArray.length + first;
54 for (i = 0; (i < adjustedFirst)&&(i < testArray.length); ++i)
55 splicedArray.push(testArray[i]);
57 if (adjustedFirst < testArray.length)
59 (i < testArray.length); ++i)
61 removedArray.push(testArray[i]);
66 for (i = adjustedFirst + adjustedLen; i < testArray.length; i++)
67 splicedArray.push(testArray[i]);
72 function exhaustiveSpliceTest(testname, testArray)
[all...]
H A Dsplice2.js43 function mySplice(testArray, splicedArray, first, len, elements)
49 if (adjustedFirst < 0) adjustedFirst = testArray.length + first;
54 for (i = 0; (i < adjustedFirst)&&(i < testArray.length); ++i)
55 splicedArray.push(testArray[i]);
57 if (adjustedFirst < testArray.length)
58 for (i = adjustedFirst; (i < adjustedFirst + adjustedLen) && (i < testArray.length); ++i)
59 removedArray.push(testArray[i]);
63 for (i = adjustedFirst + adjustedLen; i < testArray.length; i++)
64 splicedArray.push(testArray[i]);
69 function exhaustiveSpliceTestWithArgs(testname, testArray)
[all...]
/external/v8/test/mjsunit/
H A Dindexed-accessors.js70 function testArray() { function
76 testArray();
77 testArray();
80 testArray();
82 testArray();
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DDirectCharBufferTest.java38 public void testArray() { method in class:DirectCharBufferTest
H A DDirectDoubleBufferTest.java37 public void testArray() { method in class:DirectDoubleBufferTest
H A DDirectFloatBufferTest.java37 public void testArray() { method in class:DirectFloatBufferTest
H A DDirectIntBufferTest.java37 public void testArray() { method in class:DirectIntBufferTest
H A DDirectLongBufferTest.java38 public void testArray() { method in class:DirectLongBufferTest
H A DDirectShortBufferTest.java37 public void testArray() { method in class:DirectShortBufferTest
H A DReadOnlyDoubleBufferTest.java41 public void testArray() { method in class:ReadOnlyDoubleBufferTest
H A DReadOnlyFloatBufferTest.java40 public void testArray() { method in class:ReadOnlyFloatBufferTest
H A DReadOnlyIntBufferTest.java40 public void testArray() { method in class:ReadOnlyIntBufferTest
H A DReadOnlyLongBufferTest.java40 public void testArray() { method in class:ReadOnlyLongBufferTest
H A DReadOnlyShortBufferTest.java40 public void testArray() { method in class:ReadOnlyShortBufferTest
H A DWrappedCharBufferTest2.java72 public void testArray() { method in class:WrappedCharBufferTest2
H A DReadOnlyCharBufferTest.java44 public void testArray() { method in class:ReadOnlyCharBufferTest
H A DDoubleBufferTest.java74 public void testArray() { method in class:DoubleBufferTest
H A DFloatBufferTest.java50 public void testArray() { method in class:FloatBufferTest
H A DIntBufferTest.java50 public void testArray() { method in class:IntBufferTest
H A DLongBufferTest.java50 public void testArray() { method in class:LongBufferTest
H A DShortBufferTest.java49 public void testArray() { method in class:ShortBufferTest
/external/icu4c/test/intltest/
H A Dcanittst.cpp108 static const char * const testArray[][2] = { local
151 for (i = 0; i < ARRAY_LENGTH(testArray); ++i) {
152 //logln("Results for: " + name.transliterate(testArray[i]));
153 UnicodeString testStr = CharsToUnicodeString(testArray[i][0]);
166 expectEqual(i + ": ", testStr, collectionToString(set), CharsToUnicodeString(testArray[i][1]));
/external/webkit/Tools/DumpRenderTree/mac/
H A DObjCController.m79 || aSelector == @selector(testArray)
108 if (aSelector == @selector(testArray))
109 return @"testArray";
256 - (NSArray *)testArray
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java1018 TestArray testArray = (TestArray) oin.readObject();
1020 assertTrue(java.util.Arrays.equals(strings, testArray.array));
1024 testArray = (TestArray) oin.readObject();
1026 assertTrue(java.util.Arrays.equals(integers, testArray.array));

Completed in 3215 milliseconds

12