/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/ |
script.js | 41 depths = new Array(3); 56 var depths = new Array(3);
|
/external/chromium/chrome/common/extensions/docs/js/ |
sidebar.js | 16 * @param {NodeList|Node|Array.<Node>} Nodes to operate on. 20 list = Array(list);
|
/external/clang/test/Parser/ |
declarators.c | 24 // Hard case for array decl, not Array[*]. 25 int Array[*(int*)P+A];
|
/external/easymock/src/org/easymock/internal/ |
Invocation.java | 22 import java.lang.reflect.Array;
65 private static Object[] createObjectArray(Object array) {
66 if (array instanceof Object[]) {
67 return (Object[]) array;
69 Object[] result = new Object[Array.getLength(array)];
70 for (int i = 0; i < Array.getLength(array); i++) {
71 result[i] = Array.get(array, i); [all...] |
/external/javassist/src/main/javassist/bytecode/annotation/ |
MemberValue.java | 23 import java.lang.reflect.Array;
|
/external/llvm/lib/Transforms/Instrumentation/ |
ProfilingUtils.cpp | 25 GlobalValue *Array, 53 if (Array) { 54 Args[2] = ConstantExpr::getGetElementPtr(Array, GEPIndices); 56 cast<ArrayType>(Array->getType()->getElementType())->getNumElements(); 58 // If this profiling instrumentation doesn't have a constant array, just 133 // llvm.global_dtors is an array of type { i32, void ()* }. Prepare those 149 // delete it, to replace it with one that has a larger array type.
|
/external/skia/legacy/src/animator/ |
SkDisplayTypes.h | 89 DECLARE_DISPLAY_MEMBER_INFO(Array);
|
/external/skia/src/animator/ |
SkDisplayTypes.h | 89 DECLARE_DISPLAY_MEMBER_INFO(Array);
|
/external/v8/test/mjsunit/ |
array-concat.js | 36 var a = new Array(pos); 82 // Non-numeric properties on the prototype or the array shouldn't get 108 var a = new Array(pos); 128 Array.prototype["123"] = 'baz'; 140 Array.prototype["123"] = undefined; 146 Array.prototype[123] = 'baz'; 152 // Non-numeric properties on the prototype or the array shouldn't get 154 Array.prototype.moe = 'joe'; 165 Array.prototype.moe = undefined; 187 assertEquals(9, holey.length); // hole in embedded array is ignore [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1625.js | 28 // Test that overwriting Array.prototype.push does not make 31 Array.prototype.push = 1;
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4-1.js | 24 ECMA Section: 15.4 Array Objects 26 Description: Every Array object has a length property whose value 37 var TITLE = "Array Objects"; 45 var array = new Array(); 48 array[item++] = new TestCase( SECTION, 49 "var myarr = new Array(); myarr[Math.pow(2,32)-2]='hi'; myarr[Math.pow(2,32)-2]", 51 eval("var myarr = new Array(); myarr[Math.pow(2,32)-2]='hi'; myarr[Math.pow(2,32)-2]") 53 array[item++] = new TestCase( SECTION, 54 "var myarr = new Array(); myarr[Math.pow(2,32)-2]='hi'; myarr.length" [all...] |
15.4-2.js | 24 ECMA Section: 15.4 Array Objects 26 Description: Whenever a property is added whose name is an array 28 to be one more than the numeric value of that array 30 every property whose name is an array index whose value 32 deleted. This constraint applies only to the Array 33 object itself, and is unaffected by length or array 44 var TITLE = "Array Objects"; 52 var array = new Array(); 55 array[item++] = new TestCase( SECTION, "var arr=new Array(); arr[Math.pow(2,16)] = 'hi'; arr.length", (…) [all...] |
15.4.5.2-1.js | 24 ECMA Section: Array.length 27 The length property of this Array object is always numerically greater 28 than the name of every property whose name is an array index. 38 var TITLE = "Array.length"; 45 var array = new Array(); 48 array[item++] = new TestCase( SECTION, 49 "var A = new Array(); A.length", 51 eval("var A = new Array(); A.length") ); 53 array[item++] = new TestCase( SECTION [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.2.2-1.js | 45 // all tests must call a function that returns an array of TestCase objects. 49 var array = new Array(); 54 array[item++] = new TestCase( SECTION, "Date(1970,0,1,0,0,0)", (new Date()).toString(), Date(1970,0,1,0,0,0) ); 55 array[item++] = new TestCase( SECTION, "Date(1969,11,31,15,59,59)", (new Date()).toString(), Date(1969,11,31,15,59,59)) 56 array[item++] = new TestCase( SECTION, "Date(1969,11,31,16,0,0)", (new Date()).toString(), Date(1969,11,31,16,0,0)) 57 array[item++] = new TestCase( SECTION, "Date(1969,11,31,16,0,1)", (new Date()).toString(), Date(1969,11,31,16,0,1)) 60 array[item++] = new TestCase( SECTION, "Date(1999,11,15,59,59)", (new Date()).toString(), Date(1999,11,15,59,59)); 61 array[item++] = new TestCase( SECTION, "Date(1999,11,16,0,0,0)", (new Date()).toString(), Date(1999,11,16,0,0,0)); 62 array[item++] = new TestCase( SECTION, "Date(1999,11,31,23,59,59)", (new Date()).toString(), Date (…) [all...] |
15.9.2.2-2.js | 45 // all tests must call a function that returns an array of TestCase objects. 49 var array = new Array(); 53 array[item++] = new TestCase( SECTION, "Date(1999,11,15,59,59)", (new Date()).toString(), Date(1999,11,15,59,59)); 54 array[item++] = new TestCase( SECTION, "Date(1999,11,16,0,0,0)", (new Date()).toString(), Date(1999,11,16,0,0,0)); 55 array[item++] = new TestCase( SECTION, "Date(1999,11,31,23,59,59)", (new Date()).toString(), Date(1999,11,31,23,59,59) ); 56 array[item++] = new TestCase( SECTION, "Date(2000,0,1,0,0,0)", (new Date()).toString(), Date(2000,0,0,0,0,0) ); 57 array[item++] = new TestCase( SECTION, "Date(2000,0,1,0,0,1)", (new Date()).toString(), Date(2000,0,0,0,0,1) ); 62 array[item++] = new TestCase( SECTION, "Date(1899,11,31,23,59,59)", (new Date()).toString(), Date(1899,11,31,23,59,59)); 63 array[item++] = new TestCase( SECTION, "Date(1900,0,1,0,0,0)", (new Date()).toString(), Date (…) [all...] |
15.9.2.2-3.js | 45 // all tests must call a function that returns an array of TestCase objects. 49 var array = new Array(); 54 array[item++] = new TestCase( SECTION, "Date(1899,11,31,23,59,59)", (new Date()).toString(), Date(1899,11,31,23,59,59)); 55 array[item++] = new TestCase( SECTION, "Date(1900,0,1,0,0,0)", (new Date()).toString(), Date(1900,0,1,0,0,0) ); 56 array[item++] = new TestCase( SECTION, "Date(1900,0,1,0,0,1)", (new Date()).toString(), Date(1900,0,1,0,0,1) ); 57 array[item++] = new TestCase( SECTION, "Date(1899,11,31,16,0,0,0)", (new Date()).toString(), Date(1899,11,31,16,0,0,0)); 62 array[item++] = new TestCase( SECTION, "Date( 2000,1,29,0,0,0)", (new Date()).toString(), Date(2000,1,29,0,0,0)); 63 array[item++] = new TestCase( SECTION, "Date( 2000,1,28,23,59,59)", (new Date()).toString(), Date( 2000,1,28,23,59,59)); 64 array[item++] = new TestCase( SECTION, "Date( 2000,1,27,16,0,0)", (new Date()).toString(), Date (…) [all...] |
15.9.2.2-5.js | 45 // all tests must call a function that returns an array of TestCase objects. 49 var array = new Array(); 53 array[item++] = new TestCase( SECTION, "Date(2004,11,31,23,59,59)", (new Date()).toString(), Date(2004,11,31,23,59,59)); 54 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,0)", (new Date()).toString(), Date(2005,0,1,0,0,0) ); 55 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,1)", (new Date()).toString(), Date(2005,0,1,0,0,1) ); 56 array[item++] = new TestCase( SECTION, "Date(2004,11,31,16,0,0,0)", (new Date()).toString(), Date(2004,11,31,16,0,0,0)); 59 array[item++] = new TestCase( SECTION, "Date(2031,11,31,23,59,59)", (new Date()).toString(), Date(2031,11,31,23,59,59)); 60 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,0)", (new Date()).toString(), Date(2032,0,1,0,0,0) ); 61 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,1)", (new Date()).toString(), Date (…) [all...] |
15.9.2.2-6.js | 45 // all tests must call a function that returns an array of TestCase objects. 49 var array = new Array(); 53 array[item++] = new TestCase( SECTION, "Date(2031,11,31,23,59,59)", (new Date()).toString(), Date(2031,11,31,23,59,59)); 54 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,0)", (new Date()).toString(), Date(2032,0,1,0,0,0) ); 55 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,1)", (new Date()).toString(), Date(2032,0,1,0,0,1) ); 56 array[item++] = new TestCase( SECTION, "Date(2031,11,31,16,0,0,0)", (new Date()).toString(), Date(2031,11,31,16,0,0,0)); 58 return ( array );
|
15.9.5.10-1.js | 42 var testcases = new Array();
|
15.9.5.10-10.js | 42 var testcases = new Array();
|
15.9.5.10-11.js | 42 var testcases = new Array();
|
15.9.5.10-12.js | 42 var testcases = new Array();
|
15.9.5.10-13.js | 42 var testcases = new Array();
|
15.9.5.10-2.js | 42 var testcases = new Array();
|
15.9.5.10-3.js | 42 var testcases = new Array();
|