/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.3.1.js | 63 var array = new Array(); 67 array[item++] = new TestCase( SECTION, "var MYVAR; MYVAR++", NaN, eval("var MYVAR; MYVAR++") ); 68 array[item++] = new TestCase( SECTION, "var MYVAR= void 0; MYVAR++", NaN, eval("var MYVAR=void 0; MYVAR++") ); 69 array[item++] = new TestCase( SECTION, "var MYVAR=null; MYVAR++", 0, eval("var MYVAR=null; MYVAR++") ); 70 array[item++] = new TestCase( SECTION, "var MYVAR=true; MYVAR++", 1, eval("var MYVAR=true; MYVAR++") ); 71 array[item++] = new TestCase( SECTION, "var MYVAR=false; MYVAR++", 0, eval("var MYVAR=false; MYVAR++") ); 75 array[item++] = new TestCase( SECTION, "var MYVAR=Number.POSITIVE_INFINITY;MYVAR++", Number.POSITIVE_INFINITY, eval("var MYVAR=Number.POSITIVE_INFINITY;MYVAR++") ); 76 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++", Number.NEGATIVE_INFINITY, eval("var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++") ); 77 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NaN;MYVAR++", Number.NaN, (…) [all...] |
11.3.2.js | 63 var array = new Array(); 67 array[item++] = new TestCase( SECTION, "var MYVAR; MYVAR--", NaN, eval("var MYVAR; MYVAR--") ); 68 array[item++] = new TestCase( SECTION, "var MYVAR= void 0; MYVAR--", NaN, eval("var MYVAR=void 0; MYVAR--") ); 69 array[item++] = new TestCase( SECTION, "var MYVAR=null; MYVAR--", 0, eval("var MYVAR=null; MYVAR--") ); 70 array[item++] = new TestCase( SECTION, "var MYVAR=true; MYVAR--", 1, eval("var MYVAR=true; MYVAR--") ); 71 array[item++] = new TestCase( SECTION, "var MYVAR=false; MYVAR--", 0, eval("var MYVAR=false; MYVAR--") ); 75 array[item++] = new TestCase( SECTION, "var MYVAR=Number.POSITIVE_INFINITY;MYVAR--", Number.POSITIVE_INFINITY, eval("var MYVAR=Number.POSITIVE_INFINITY;MYVAR--") ); 76 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NEGATIVE_INFINITY;MYVAR--", Number.NEGATIVE_INFINITY, eval("var MYVAR=Number.NEGATIVE_INFINITY;MYVAR--") ); 77 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NaN;MYVAR--", Number.NaN, (…) [all...] |
11.4.4.js | 62 var array = new Array(); 67 array[item++] = new TestCase( SECTION, "var MYVAR; ++MYVAR", NaN, eval("var MYVAR; ++MYVAR") ); 68 array[item++] = new TestCase( SECTION, "var MYVAR= void 0; ++MYVAR", NaN, eval("var MYVAR=void 0; ++MYVAR") ); 69 array[item++] = new TestCase( SECTION, "var MYVAR=null; ++MYVAR", 1, eval("var MYVAR=null; ++MYVAR") ); 70 array[item++] = new TestCase( SECTION, "var MYVAR=true; ++MYVAR", 2, eval("var MYVAR=true; ++MYVAR") ); 71 array[item++] = new TestCase( SECTION, "var MYVAR=false; ++MYVAR", 1, eval("var MYVAR=false; ++MYVAR") ); 76 array[item++] = new TestCase( SECTION, "var MYVAR=Number.POSITIVE_INFINITY;++MYVAR", Number.POSITIVE_INFINITY, eval("var MYVAR=Number.POSITIVE_INFINITY;++MYVAR") ); 77 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NEGATIVE_INFINITY;++MYVAR", Number.NEGATIVE_INFINITY, eval("var MYVAR=Number.NEGATIVE_INFINITY;++MYVAR") ); 78 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NaN;++MYVAR", Number.NaN, (…) [all...] |
11.4.5.js | 61 var array = new Array(); 65 array[item++] = new TestCase( SECTION, "var MYVAR; --MYVAR", NaN, eval("var MYVAR; --MYVAR") ); 66 array[item++] = new TestCase( SECTION, "var MYVAR= void 0; --MYVAR", NaN, eval("var MYVAR=void 0; --MYVAR") ); 67 array[item++] = new TestCase( SECTION, "var MYVAR=null; --MYVAR", -1, eval("var MYVAR=null; --MYVAR") ); 68 array[item++] = new TestCase( SECTION, "var MYVAR=true; --MYVAR", 0, eval("var MYVAR=true; --MYVAR") ); 69 array[item++] = new TestCase( SECTION, "var MYVAR=false; --MYVAR", -1, eval("var MYVAR=false; --MYVAR") ); 74 array[item++] = new TestCase( SECTION, "var MYVAR=Number.POSITIVE_INFINITY;--MYVAR", Number.POSITIVE_INFINITY, eval("var MYVAR=Number.POSITIVE_INFINITY;--MYVAR") ); 75 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NEGATIVE_INFINITY;--MYVAR", Number.NEGATIVE_INFINITY, eval("var MYVAR=Number.NEGATIVE_INFINITY;--MYVAR") ); 76 array[item++] = new TestCase( SECTION, "var MYVAR=Number.NaN;--MYVAR", Number.NaN, (…) [all...] |
11.13.2-2.js | 55 var array = new Array(); 60 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 /= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 /= VAR2") ); 61 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 /= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 /= VAR2; VAR1") ); 62 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=0; VAR1 /= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=0; VAR1 /= VAR2") ); 63 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=0; VAR1 /= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=0; VAR1 /= VAR2; VAR1") ); 64 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=NaN; VAR1 /= VAR2", Number.NaN, eval("VAR1 = 0; VAR2=Number.NaN; VAR1 /= VAR2") ); 65 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=NaN; VAR1 /= VAR2; VAR1", Number.NaN, eval("VAR1 = 0; VAR2=Number.NaN; VAR1 /= VAR2; VAR1") ); 68 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=1; VAR1 /= VAR2", 0, eval("VAR1 = 0; VAR2=1; VAR1 /= VAR2") ); 69 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=1; VAR1 /= VAR2;VAR1", 0, eval("VA (…) [all...] |
11.5.3.js | 79 var array = new Array(); 84 array[item++] = new TestCase( SECTION, "Number.NaN % Number.NaN", Number.NaN, Number.NaN % Number.NaN ); 85 array[item++] = new TestCase( SECTION, "Number.NaN % 1", Number.NaN, Number.NaN % 1 ); 86 array[item++] = new TestCase( SECTION, "1 % Number.NaN", Number.NaN, 1 % Number.NaN ); 88 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY % Number.NaN", Number.NaN, Number.POSITIVE_INFINITY % Number.NaN ); 89 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY % Number.NaN", Number.NaN, Number.NEGATIVE_INFINITY % Number.NaN ); 94 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY % Number.NEGATIVE_INFINITY", Number.NaN, Number.NEGATIVE_INFINITY % Number.NEGATIVE_INFINITY ); 95 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY % Number.NEGATIVE_INFINITY", Number.NaN, Number.POSITIVE_INFINITY % Number.NEGATIVE_INFINITY ); 96 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY % Number.POSITIVE_INFINITY", Numb (…) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.1-1.js | 45 var array = new Array(); 48 array[item++] = new TestCase( SECTION, "eval.length", 1, eval.length ); 49 array[item++] = new TestCase( SECTION, "delete eval.length", false, delete eval.length ); 50 array[item++] = new TestCase( SECTION, "var PROPS = ''; for ( p in eval ) { PROPS += p }; PROPS", "", eval("var PROPS = ''; for ( p in eval ) { PROPS += p }; PROPS") ); 51 array[item++] = new TestCase( SECTION, "eval.length = null; eval.length", 1, eval( "eval.length = null; eval.length") ); 52 // array[item++] = new TestCase( SECTION, "eval.__proto__", Function.prototype, eval.__proto__ ); 56 array[item++] = new TestCase( SECTION, "eval()", void 0, eval() ); 57 array[item++] = new TestCase( SECTION, "eval(void 0)", void 0, eval( void 0) ); 58 array[item++] = new TestCase( SECTION, "eval(null)", null, (…) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.9-1.js | 63 var array = new Array(); 66 array[item++] = new TestCase( SECTION, "String.prototype.substring.length", 2, String.prototype.substring.length ); 67 array[item++] = new TestCase( SECTION, "delete String.prototype.substring.length", false, delete String.prototype.substring.length ); 68 array[item++] = new TestCase( SECTION, "delete String.prototype.substring.length; String.prototype.substring.length", 2, eval("delete String.prototype.substring.length; String.prototype.substring.length") ); 74 array[item++] = new TestCase( SECTION, 79 array[item++] = new TestCase( SECTION, 85 array[item++] = new TestCase( SECTION, 90 array[item++] = new TestCase( SECTION, 96 array[item++] = new TestCase( SECTION [all...] |
15.5.2.js | 54 var array = new Array(); 57 array[item++] = new TestCase( SECTION, "typeof new String('string primitive')", "object", typeof new String('string primitive') ); 58 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String('string primitive'); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String('string primitive'); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") ); 59 array[item++] = new TestCase( SECTION, "(new String('string primitive')).valueOf()", 'string primitive', (new String('string primitive')).valueOf() ); 60 array[item++] = new TestCase( SECTION, "(new String('string primitive')).substring", String.prototype.substring, (new String('string primitive')).substring ); 62 array[item++] = new TestCase( SECTION, "typeof new String(void 0)", "object", typeof new String(void 0) ); 63 array[item++] = new TestCase( SECTION, "var TESTSTRING = new String(void 0); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()", "[object String]", eval("var TESTSTRING = new String(void 0); TESTSTRING.toString=Object.prototype.toString;TESTSTRING.toString()") ); 64 array[item++] = new TestCase( SECTION, "(new String(void 0)).valueOf()", "undefined", (new String(void 0)).valueOf() ); 65 array[item++] = new TestCase( SECTION, "(new String(void 0)).toString", String.prototype. (…) [all...] |
15.5.4.5-2.js | 66 var array = new Array(); 71 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)", 0x0074, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)") ); 72 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)") ); 73 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)", 0x0075, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)") ); 74 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)", 0x0065, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)") ); 75 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)") ); 76 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)") ); 78 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(true)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(true)") ); 79 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCod (…) [all...] |
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
WebKitPluginHostTypes.defs | 31 type plist_bytes_t = ^array [] of uint8_t; 32 type application_name_t = ^array [] of uint8_t; 33 type data_t = ^array [] of char;
|
/frameworks/rs/driver/linkloader/utils/ |
serialize.h | 36 inline void swap_byte_order(unsigned char (&array)[1]) { 40 inline void swap_byte_order(unsigned char (&array)[2]) { 41 std::swap(array[0], array[1]); 44 inline void swap_byte_order(unsigned char (&array)[4]) { 45 std::swap(array[0], array[3]); 46 std::swap(array[1], array[2]); 49 inline void swap_byte_order(unsigned char (&array)[8]) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.16.js | 42 var array = new Array(); 45 array[item++] = new TestCase( SECTION, "Math.sin.length", 1, Math.sin.length ); 47 array[item++] = new TestCase( SECTION, "Math.sin()", Number.NaN, Math.sin() ); 48 array[item++] = new TestCase( SECTION, "Math.sin(null)", 0, Math.sin(null) ); 49 array[item++] = new TestCase( SECTION, "Math.sin(void 0)", Number.NaN, Math.sin(void 0) ); 50 array[item++] = new TestCase( SECTION, "Math.sin(false)", 0, Math.sin(false) ); 51 array[item++] = new TestCase( SECTION, "Math.sin('2.356194490192')", 0.7071067811865, Math.sin('2.356194490192') ); 53 array[item++] = new TestCase( SECTION, "Math.sin(NaN)", Number.NaN, Math.sin(Number.NaN) ); 54 array[item++] = new TestCase( SECTION, "Math.sin(0)", 0, Math.sin(0) ) [all...] |
15.8.2.17.js | 47 var array = new Array(); 50 array[item++] = new TestCase( SECTION, "Math.sqrt.length", 1, Math.sqrt.length ); 52 array[item++] = new TestCase( SECTION, "Math.sqrt()", Number.NaN, Math.sqrt() ); 53 array[item++] = new TestCase( SECTION, "Math.sqrt(void 0)", Number.NaN, Math.sqrt(void 0) ); 54 array[item++] = new TestCase( SECTION, "Math.sqrt(null)", 0, Math.sqrt(null) ); 55 array[item++] = new TestCase( SECTION, "Math.sqrt(true)", 1, Math.sqrt(1) ); 56 array[item++] = new TestCase( SECTION, "Math.sqrt(false)", 0, Math.sqrt(false) ); 57 array[item++] = new TestCase( SECTION, "Math.sqrt('225')", 15, Math.sqrt('225') ); 59 array[item++] = new TestCase( SECTION, "Math.sqrt(NaN)", Number.NaN, Math.sqrt(Number.NaN) ) [all...] |
15.8.2.13.js | 43 var array = new Array(); 46 array[item++] = new TestCase( SECTION, "Math.pow.length", 2, Math.pow.length ); 48 array[item++] = new TestCase( SECTION, "Math.pow()", Number.NaN, Math.pow() ); 49 array[item++] = new TestCase( SECTION, "Math.pow(null, null)", 1, Math.pow(null,null) ); 50 array[item++] = new TestCase( SECTION, "Math.pow(void 0, void 0)", Number.NaN, Math.pow(void 0, void 0)); 51 array[item++] = new TestCase( SECTION, "Math.pow(true, false)", 1, Math.pow(true, false) ); 52 array[item++] = new TestCase( SECTION, "Math.pow(false,true)", 0, Math.pow(false,true) ); 53 array[item++] = new TestCase( SECTION, "Math.pow('2','32')", 4294967296, Math.pow('2','32') ); 55 array[item++] = new TestCase( SECTION, "Math.pow(1,NaN)", Number.NaN, (…) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.3.js | 66 var array = new Array(); 71 array[item++] = new TestCase( SECTION, "Number()", 0, Number() ); 72 array[item++] = new TestCase( SECTION, "Number(eval('var x'))", Number.NaN, Number(eval("var x")) ); 73 array[item++] = new TestCase( SECTION, "Number(void 0)", Number.NaN, Number(void 0) ); 74 array[item++] = new TestCase( SECTION, "Number(null)", 0, Number(null) ); 75 array[item++] = new TestCase( SECTION, "Number(true)", 1, Number(true) ); 76 array[item++] = new TestCase( SECTION, "Number(false)", 0, Number(false) ); 77 array[item++] = new TestCase( SECTION, "Number(0)", 0, Number(0) ); 78 array[item++] = new TestCase( SECTION, "Number(-0)", -0, Number(-0) ) [all...] |
/external/icu4c/layoutex/ |
LXUtilities.cpp | 53 le_int32 LXUtilities::search(le_int32 value, const le_int32 array[], le_int32 count) 60 if (value >= array[extra]) { 67 if (value >= array[index + probe]) { 75 void LXUtilities::reverse(le_int32 array[], le_int32 length) 80 le_int32 swap = array[front]; 82 array[front] = array[back]; 83 array[back] = swap; 87 void LXUtilities::reverse(float array[], le_int32 length) 92 float swap = array[front] [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
15.2.1.1.js | 60 var array = new Array(); 65 array[item++] = new TestCase( SECTION, "Object(null).valueOf()", NULL_OBJECT, (NULL_OBJECT).valueOf() ); 66 array[item++] = new TestCase( SECTION, "typeof Object(null)", "object", typeof (Object(null)) ); 67 array[item++] = new TestCase( SECTION, "Object(null).__proto__", Object.prototype, (Object(null)).__proto__ ); 71 array[item++] = new TestCase( SECTION, "Object(void 0).valueOf()", UNDEFINED_OBJECT, (UNDEFINED_OBJECT).valueOf() ); 72 array[item++] = new TestCase( SECTION, "typeof Object(void 0)", "object", typeof (Object(void 0)) ); 73 array[item++] = new TestCase( SECTION, "Object(void 0).__proto__", Object.prototype, (Object(void 0)).__proto__ ); 75 array[item++] = new TestCase( SECTION, "Object(true).valueOf()", true, (Object(true)).valueOf() ); 76 array[item++] = new TestCase( SECTION, "typeof Object(true)", "object", typeof Objec (…) [all...] |
/external/guava/guava/src/com/google/common/primitives/ |
Ints.java | 121 * {@code array}. 123 * @param array an array of {@code int} values, possibly empty 125 * @return {@code true} if {@code array[i] == target} for some value of {@code 128 public static boolean contains(int[] array, int target) { 129 for (int value : array) { 139 * {@code array}. 141 * @param array an array of {@code int} values, possibly empty 143 * @return the least index {@code i} for which {@code array[i] == target}, o 439 int[] array = new int[len]; local 471 final int[] array; field in class:Ints.IntArrayAsList [all...] |
Longs.java | 91 * {@code array}. 93 * @param array an array of {@code long} values, possibly empty 95 * @return {@code true} if {@code array[i] == target} for some value of {@code 98 public static boolean contains(long[] array, long target) { 99 for (long value : array) { 109 * {@code array}. 111 * @param array an array of {@code long} values, possibly empty 113 * @return the least index {@code i} for which {@code array[i] == target}, o 424 long[] array = new long[len]; local 456 final long[] array; field in class:Longs.LongArrayAsList [all...] |
Shorts.java | 119 * {@code array}. 121 * @param array an array of {@code short} values, possibly empty 123 * @return {@code true} if {@code array[i] == target} for some value of {@code 126 public static boolean contains(short[] array, short target) { 127 for (short value : array) { 137 * {@code array}. 139 * @param array an array of {@code short} values, possibly empty 141 * @return the least index {@code i} for which {@code array[i] == target}, o 437 short[] array = new short[len]; local 469 final short[] array; field in class:Shorts.ShortArrayAsList [all...] |
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
Ints.java | 116 * {@code array}. 118 * @param array an array of {@code int} values, possibly empty 120 * @return {@code true} if {@code array[i] == target} for some value of {@code 123 public static boolean contains(int[] array, int target) { 124 for (int value : array) { 134 * {@code array}. 136 * @param array an array of {@code int} values, possibly empty 138 * @return the least index {@code i} for which {@code array[i] == target}, o 383 int[] array = new int[len]; local 415 final int[] array; field in class:Ints.IntArrayAsList [all...] |
Longs.java | 89 * {@code array}. 91 * @param array an array of {@code long} values, possibly empty 93 * @return {@code true} if {@code array[i] == target} for some value of {@code 96 public static boolean contains(long[] array, long target) { 97 for (long value : array) { 107 * {@code array}. 109 * @param array an array of {@code long} values, possibly empty 111 * @return the least index {@code i} for which {@code array[i] == target}, o 357 long[] array = new long[len]; local 389 final long[] array; field in class:Longs.LongArrayAsList [all...] |
Shorts.java | 117 * {@code array}. 119 * @param array an array of {@code short} values, possibly empty 121 * @return {@code true} if {@code array[i] == target} for some value of {@code 124 public static boolean contains(short[] array, short target) { 125 for (short value : array) { 135 * {@code array}. 137 * @param array an array of {@code short} values, possibly empty 139 * @return the least index {@code i} for which {@code array[i] == target}, o 385 short[] array = new short[len]; local 417 final short[] array; field in class:Shorts.ShortArrayAsList [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
CollectionToArrayTester.java | 45 Object[] array = collection.toArray(); local 46 expectArrayContentsAnyOrder(createSamplesArray(), array); local 55 * element array of a type other than {@code Object[]}. 58 Object[] array = collection.toArray(); local 59 assertEquals(Object[].class, array.getClass()); 64 E[] array = collection.toArray(empty); local 65 assertEquals("toArray(emptyT[]) should return an array of type T", 66 empty.getClass(), array.getClass()); 67 assertEquals("toArray(emptyT[]).length:", getNumElements(), array.length); 68 expectArrayContentsAnyOrder(createSamplesArray(), array); local 74 E[] array = collection.toArray(empty); local 78 expectArrayContentsInOrder(getOrderedElements(), array); local 83 Object[] array = collection.toArray(in); local 88 expectArrayContentsAnyOrder(createSamplesArray(), array); local 92 E[] array = getSubjectGenerator().createArray(getNumElements()); local 95 expectArrayContentsAnyOrder(createSamplesArray(), array); local 100 E[] array = getSubjectGenerator().createArray(getNumElements()); local 103 expectArrayContentsInOrder(getOrderedElements(), array); local 107 Object[] array = new Object[getNumElements()]; local 110 expectArrayContentsAnyOrder(createSamplesArray(), array); local 115 Object[] array = new Object[getNumElements()]; local 118 expectArrayContentsInOrder(getOrderedElements(), array); local 122 E[] array = getSubjectGenerator().createArray(getNumElements() + 2); local 143 E[] array = getSubjectGenerator().createArray(getNumElements() + 2); local 151 assertEquals(expected.get(i), array[i]); local 162 WrongType[] array = new WrongType[0]; local 171 WrongType[] array = new WrongType[0]; local [all...] |