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

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegateTest.java 32 String[][] testArray = {
46 assertEqualsArrays(expectedArray, JUnitLaunchConfigDelegate.fixBootpathExt(testArray));
50 String[][] testArray = {
62 assertEqualsArrays(expectedArray, JUnitLaunchConfigDelegate.fixBootpathExt(testArray));
66 String[] testArray = {
75 JUnitLaunchConfigDelegate.fixClasspath(testArray, "test"));
79 String[] testArray = {
89 JUnitLaunchConfigDelegate.fixClasspath(testArray, "test"));
94 String[] testArray = {
102 JUnitLaunchConfigDelegate.fixClasspath(testArray, "test"))
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/Array/
splice1.js 43 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...]
splice2.js 43 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...]
  /system/core/libacc/tests/data/
addressOf.c 18 void testArray() {
24 printf("testArray: %d %d %d\n", a[0], *p, *p2);
29 testArray();
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 33 public void testArray() throws Exception {
  /external/v8/test/mjsunit/
indexed-accessors.js 70 function testArray() {
76 testArray();
77 testArray();
80 testArray();
82 testArray();
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ObjCController.m 69 || aSelector == @selector(testArray)
95 if (aSelector == @selector(testArray))
96 return @"testArray";
235 - (NSArray *)testArray
  /external/chromium/third_party/icu/source/test/intltest/
canittst.cpp 104 static const char * const testArray[][2] = {
147 for (i = 0; i < ARRAY_LENGTH(testArray); ++i) {
148 //logln("Results for: " + name.transliterate(testArray[i]));
149 UnicodeString testStr = CharsToUnicodeString(testArray[i][0]);
162 expectEqual(i + ": ", testStr, collectionToString(set), CharsToUnicodeString(testArray[i][1]));
  /external/icu4c/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 + ": ", testStr, collectionToString(set), CharsToUnicodeString(testArray[i][1]));
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
DirectByteBufferTest.java 64 public void testArray() {
DirectCharBufferTest.java 56 public void testArray() {
DirectDoubleBufferTest.java 55 public void testArray() {
DirectFloatBufferTest.java 55 public void testArray() {
DirectLongBufferTest.java 55 public void testArray() {
ReadOnlyHeapByteBufferTest.java 44 public void testArray() {
ReadOnlyWrappedByteBufferTest.java 44 public void testArray() {
DirectIntBufferTest.java 81 public void testArray() {
DirectShortBufferTest.java 82 public void testArray() {
WrappedCharBufferTest2.java 91 public void testArray() {
ReadOnlyCharBufferTest.java 64 public void testArray() {
ReadOnlyDoubleBufferTest.java 64 public void testArray() {
ReadOnlyFloatBufferTest.java 63 public void testArray() {
ReadOnlyIntBufferTest.java 63 public void testArray() {
ReadOnlyLongBufferTest.java 63 public void testArray() {
ReadOnlyShortBufferTest.java 63 public void testArray() {

Completed in 1067 milliseconds

1 2