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

1 2

  /external/llvm/unittests/ADT/
TinyPtrVectorTest.cpp 54 ArrayRef<PtrT> testArray(size_t N) {
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(4))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegateTest.java 32 String[][] testArray = {
48 assertEqualsArrays(expectedArray, JUnitLaunchConfigDelegate.fixBootpathExt(testArray));
52 String[][] testArray = {
64 assertEqualsArrays(expectedArray, JUnitLaunchConfigDelegate.fixBootpathExt(testArray));
68 String[] testArray = {
77 JUnitLaunchConfigDelegate.fixClasspath(testArray, "test"));
81 String[] testArray = {
91 JUnitLaunchConfigDelegate.fixClasspath(testArray, "test"));
96 String[] testArray = {
104 JUnitLaunchConfigDelegate.fixClasspath(testArray, "test"))
    [all...]
  /external/v8/test/webkit/
array-lastIndexOf.js 29 var testArray = [2, 5, 9, 2];
32 lastIndex = testArray.lastIndexOf(2,-500);
34 lastIndex = testArray.lastIndexOf(9,500);
36 lastIndex = testArray.lastIndexOf(2);
38 lastIndex = testArray.lastIndexOf(7);
40 lastIndex = testArray.lastIndexOf(2, 3);
42 lastIndex = testArray.lastIndexOf(2, 2);
44 lastIndex = testArray.lastIndexOf(2, -2);
46 lastIndex = testArray.lastIndexOf(2, -1);
49 delete testArray[1]
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
WbxmlResponseLoggerTests.java 35 private static final byte testArray[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,
69 final ByteArrayInputStream bis = new ByteArrayInputStream(testArray);
71 testArray.length);
72 assertEquals(true, Arrays.equals(testArray, outputBytes));
76 final ByteArrayInputStream bis = new ByteArrayInputStream(testArray);
77 // If we cut the batch size to be half the length of testArray, we force
80 testArray.length / 2);
81 assertEquals(true, Arrays.equals(testArray, outputBytes));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DirectCharBufferTest.java 38 public void testArray() {
DirectDoubleBufferTest.java 37 public void testArray() {
DirectFloatBufferTest.java 37 public void testArray() {
DirectIntBufferTest.java 37 public void testArray() {
DirectLongBufferTest.java 38 public void testArray() {
DirectShortBufferTest.java 37 public void testArray() {
ReadOnlyDoubleBufferTest.java 41 public void testArray() {
ReadOnlyFloatBufferTest.java 40 public void testArray() {
ReadOnlyIntBufferTest.java 40 public void testArray() {
ReadOnlyLongBufferTest.java 40 public void testArray() {
ReadOnlyShortBufferTest.java 40 public void testArray() {
WrappedCharBufferTest2.java 72 public void testArray() {
ReadOnlyCharBufferTest.java 44 public void testArray() {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestCanonicalIterator.java 33 static final String testArray[][] = {
139 for (int i = 0; i < testArray.length; ++i) {
140 //logln("Results for: " + name.transliterate(testArray[i]));
141 CanonicalIterator it = new CanonicalIterator(testArray[i][0]);
155 expectEqual(i + ": ", testArray[i][0], collectionToString(set), testArray[i][1]);
160 if(!it.getSource().equals(Normalizer.normalize(testArray[i][0],Normalizer.NFD))){
  /external/v8/test/mjsunit/
indexed-accessors.js 70 function testArray() {
76 testArray();
77 testArray();
80 testArray();
82 testArray();
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestBoilerplate.java 41 Object[] testArray = list.toArray();
42 for (int i = 0; i < testArray.length; ++i) {
44 Object a = testArray[i];
66 for (int j = i; j < testArray.length; ++j) {
67 b = testArray[j];
  /external/icu/icu4c/source/test/intltest/
canittst.cpp 108 static const char * const testArray[][2] = {
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 + UnicodeString(": "), testStr, collectionToString(set), CharsToUnicodeString(testArray[i][1]));
  /frameworks/av/camera/tests/
VendorTagDescriptorTests.cpp 192 uint32_t* testArray = tagArray;
194 EXPECT_EQ(testArray, tagArray);
  /system/media/audio_utils/tests/
primitives_tests.cpp 107 static const float testArray[] = {
115 for (size_t i = 0; i < ARRAY_SIZE(testArray); ++i) {
116 testClamp8(testArray[i]);
118 for (size_t i = 0; i < ARRAY_SIZE(testArray); ++i) {
119 testClamp16(testArray[i]);
121 for (size_t i = 0; i < ARRAY_SIZE(testArray); ++i) {
122 testClamp24(testArray[i]);
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 33 public void testArray() throws Exception {
  /libcore/json/src/test/java/org/json/
JSONStringerTest.java 53 public void testArray() throws JSONException {

Completed in 721 milliseconds

1 2