/external/webkit/JavaScriptCore/tests/mozilla/ecma/Statements/ |
12.6.2-5.js | 46 var array = new Array(); 47 array[0] = new TestCase( SECTION, "for statement", 99, "" ); 48 return ( array );
|
12.6.2-6.js | 46 var array = new Array(); 47 array[0] = new TestCase( "12.6.2-6", "for statement", 256, "" ); 48 return ( array );
|
12.6.2-7.js | 46 var array = new Array(); 47 array[0] = new TestCase( SECTION, "for statement", 256, "" ); 48 return ( array );
|
12.6.2-8.js | 46 var array = new Array(); 47 array[0] = new TestCase( SECTION, "for statement", 256, "" ); 48 return ( array );
|
/packages/apps/Gallery3D/src/com/cooliris/app/ |
Res.java | 23 public static final R.array array = new R.array(); field in class:Res
|
/external/v8/test/mjsunit/ |
array-shift.js | 28 // Check that shifting array of holes keeps it as array of holes 30 var array = new Array(10); 31 array.shift(); 32 assertFalse(0 in array); 35 // Now check the case with array of holes and some elements on prototype. 38 var array = new Array(len); 39 Array.prototype[3] = "@3" [all...] |
/dalvik/libcore/support/src/test/java/tests/support/ |
Support_Proxy_I1.java | 23 int[] array(long[] f); method in interface:Support_Proxy_I1
|
/external/embunit/inc/ |
HelperMacro.h | 41 #define EMB_UNIT_TESTSUITE(su,name,array) \ 42 static const TestSuite su = new_TestSuite(name,(Test**)array,sizeof(array)/sizeof(array[0]))
|
/external/icu4c/common/ |
uarrsort.c | 57 doInsertionSort(char *array, int32_t start, int32_t limit, int32_t itemSize, 62 /* v=array[j] */ 63 uprv_memcpy(pv, array+j*itemSize, itemSize); 66 if(/* v>=array[i-1] */ cmp(context, pv, array+(i-1)*itemSize)>=0) { 70 /* array[i]=array[i-1]; */ 71 uprv_memcpy(array+i*itemSize, array+(i-1)*itemSize, itemSize); 75 /* array[i]=v; * [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.2.1-2.js | 24 ECMA Section: 15.4.2.1 new Array( item0, item1, ... ) 29 object is set to the original Array prototype object, 30 the one that is the initial value of Array.prototype 34 is set to "Array". 52 var TITLE = "The Array Constructor: new Array( item0, item1, ...)"; 61 var array = new Array(); 63 var TEST_STRING = "new Array("; 77 array[item] = new TestCase( SECTION, "["+item+"]", item, TEST_ARRAY[item] ) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/ |
15.6.3.1-4.js | 48 var array = new Array(); 53 array[item++] = new TestCase( SECTION, 58 array[item++] = new TestCase( SECTION, 63 return ( array );
|
15.6.3.1.js | 51 var array = new Array(); 54 array[item++] = new TestCase( SECTION, "Boolean.prototype.valueOf()", false, Boolean.prototype.valueOf() ); 55 array[item++] = new TestCase( SECTION, "Boolean.length", 1, Boolean.length ); 57 return ( array );
|
15.6.3.js | 47 var array = new Array(); 50 array[item++] = new TestCase( SECTION, "Boolean.__proto__ == Function.prototype", true, Boolean.__proto__ == Function.prototype ); 51 array[item++] = new TestCase( SECTION, "Boolean.length", 1, Boolean.length ); 53 return ( array );
|
15.6.4.2-3.js | 47 var array = new Array(); 50 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=true; x.toString=tostr;x.toString()", "true", eval("tostr=Boolean.prototype.toString; x=true; x.toString=tostr;x.toString()") ); 51 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()", "false", eval("tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()") ); 53 return ( array );
|
15.6.4.3-2.js | 47 var array = new Array(); 50 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()", false, eval("valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()") ); 51 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()", true, eval("valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()") ); 52 return ( array );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
15.3.3.1-2.js | 50 var array = new Array(); 52 array[item++] = new TestCase( SECTION, 57 return ( array ); 59 function test( array ) {
|
15.3.4.1.js | 44 var array = new Array(); 47 array[item++] = new TestCase( SECTION, "Function.prototype.constructor", Function, Function.prototype.constructor ); 49 return ( array ); 51 function test( array ) {
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
7.2-6.js | 50 var array = new Array(); 53 array[item++] = new TestCase( SECTION, "var a\u000Ab = 5; ab=10;ab;", 10, eval("var a\nb = 5; ab=10;ab") ); 54 array[item++] = new TestCase( SECTION, "var a\u000Db = 5; ab=10;b;", 5, eval("var a\nb = 5; ab=10;b") ); 55 return ( array );
|
7.5-1.js | 44 var array = new Array(); 47 array[item++] = new TestCase( SECTION, "var $123 = 5", 5, eval("var $123 = 5;$123") ); 48 array[item++] = new TestCase( SECTION, "var _123 = 5", 5, eval("var _123 = 5;_123") ); 50 return ( array );
|
7.5-10-n.js | 44 var array = new Array(); 47 array[item] = new TestCase( SECTION, "var 123=\"hi\"", "error", "" ); 51 array[item] = 123; 53 return ( array );
|
7.5-9-n.js | 44 var array = new Array(); 47 array[item] = new TestCase( SECTION, "var 123=\"hi\"", "error", "" ); 51 array[item] = 123; 53 return ( array );
|
7.7.2.js | 51 var array = new Array(); 56 array[item++] = new TestCase( SECTION, "true", Boolean(true), true ); 57 array[item++] = new TestCase( SECTION, "false", Boolean(false), false ); 59 return ( array );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8-1.js | 59 var array = new Array(); 61 array[item++] = new TestCase( SECTION, 66 array[item++] = new TestCase( SECTION, 70 return ( array );
|
15.8.1.1-2.js | 44 var array = new Array(); 48 array[item++] = new TestCase( SECTION, "delete(Math.E)", false, "delete Math.E" ); 49 array[item++] = new TestCase( SECTION, "delete(Math.E); Math.E", MATH_E, "delete Math.E; Math.E" ); 50 return ( array );
|
15.8.1.2-2.js | 44 var array = new Array(); 46 array[item++] = new TestCase( SECTION, "delete( Math.LN10 ); Math.LN10", 2.302585092994046, "delete(Math.LN10); Math.LN10" ); 47 array[item++] = new TestCase( SECTION, "delete( Math.LN10 ); ", false, "delete(Math.LN10)" ); 48 return ( array );
|