| /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/ |
| shell.js | 99 testcases = new Array(); 187 var properties = new Array(); 189 properties[ properties.length ] = new Array( p, o[p] );
|
| /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Array/ |
| regress-130451.js | 38 * SUMMARY: Array.prototype.sort() should not (re-)define .length 44 * its |this| value be an Array object. Therefore, it can be transferred to 49 * Brendan's test below, when applied to Array objects vs. non-Array objects. 55 var summary = 'Array.prototype.sort() should not (re-)define .length'; 67 * First: test Array.prototype.sort() on Array objects 124 * Now test Array.prototype.sort() on non-Array objects 128 obj.sort = Array.prototype.sort [all...] |
| /external/webkit/SunSpider/tests/sunspider-0.9/ |
| 3d-raytrace.js | 27 return new Array(x,y,z); 68 return new Array(v1[0] + v2[0], v1[1] + v2[1], v1[2] + v2[2]); 72 return new Array(v1[0] - v2[0], v1[1] - v2[1], v1[2] - v2[2]); 76 return new Array(v1[0] * v2[0], v1[1] * v2[1], v1[2] * v2[2]); 108 var temp = new Array(16); 187 var zero = new Array(0,0,0); 265 var m = new Array(16); 272 this.directions = new Array(4); 284 rays = new Array(new Object(), new Object()); 317 var triangles = new Array();//numTriangles) [all...] |
| /external/webkit/SunSpider/tests/sunspider-0.9.1/ |
| 3d-raytrace.js | 27 return new Array(x,y,z); 68 return new Array(v1[0] + v2[0], v1[1] + v2[1], v1[2] + v2[2]); 72 return new Array(v1[0] - v2[0], v1[1] - v2[1], v1[2] - v2[2]); 76 return new Array(v1[0] * v2[0], v1[1] * v2[1], v1[2] * v2[2]); 108 var temp = new Array(16); 187 var zero = new Array(0,0,0); 265 var m = new Array(16); 272 this.directions = new Array(4); 284 rays = new Array(new Object(), new Object()); 317 var triangles = new Array();//numTriangles) [all...] |
| /external/webkit/WebCore/bindings/v8/custom/ |
| V8StorageCustom.cpp | 42 // Get an array containing the names of indexed properties in a collection. 43 v8::Handle<v8::Array> V8Storage::namedPropertyEnumerator(const v8::AccessorInfo& info) 47 v8::Handle<v8::Array> properties = v8::Array::New(length);
|
| V8MessagePortCustom.cpp | 106 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(value); local 107 length = array->Length();
|
| /hardware/ril/mock-ril/src/cpp/ |
| protobuf_v8.cpp | 59 using v8::Array; 105 self->SetInternalField(1, Array::New()); 141 // and an array in descriptor order: 244 Handle<Array> properties = Array::New(descriptor->field_count()); 266 Handle<Array> array = Array::New(size); local 269 array->Set(index, ToJs(instance, reflection, field, child_type, j)); 271 value = array; 420 Handle<Array> array = Handle<Array>::Cast(value); local [all...] |
| /external/v8/test/mjsunit/ |
| array-join.js | 28 // Test that array join calls toString on subarrays. 36 // Replace array.prototype.toString. 37 Array.prototype.toString = function() { return "array"; } 38 assertEquals('array*3*4*array*array', a.join('*')); 40 Array.prototype.toString = function() { throw 42; } 43 Array.prototype.toString = function() { return "array"; } [all...] |
| /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/ |
| 15.9.5.23-4.js | 44 var testcases = new Array(); 60 test_times = new Array( now, TIME_YEAR_0, TIME_1970, TIME_1900, TIME_2000,
|
| 15.9.5.23-5.js | 44 var testcases = new Array(); 60 test_times = new Array( now, TIME_YEAR_0, TIME_1970, TIME_1900, TIME_2000,
|
| 15.9.5.23-6.js | 44 var testcases = new Array(); 60 test_times = new Array( now, TIME_YEAR_0, TIME_1970, TIME_1900, TIME_2000,
|
| 15.9.5.23-7.js | 44 var testcases = new Array(); 60 test_times = new Array( now, TIME_YEAR_0, TIME_1970, TIME_1900, TIME_2000,
|
| /external/webkit/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...] |
| 15.1.2.5-2.js | 82 var array = new Array(); 88 array[item++] = new TestCase( SECTION, 97 array[item++] = new TestCase( SECTION, 107 array[item++] = new TestCase 116 return ( array ); 129 var hex = new Array();
|
| /external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
| 15.2.4.3.js | 49 var array = new Array(); 52 var myarray = new Array(); 69 array[item++] = new TestCase( SECTION, "Object.prototype.valueOf.length", 0, Object.prototype.valueOf.length ); 71 array[item++] = new TestCase( SECTION, 72 "myarray = new Array(); myarray.valueOf = Object.prototype.valueOf; myarray.valueOf()", 75 array[item++] = new TestCase( SECTION, 79 array[item++] = new TestCase( SECTION, 83 array[item++] = new TestCase( SECTION, 87 array[item++] = new TestCase( SECTION [all...] |
| /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/ |
| lexical-048.js | 18 var testcases = new Array();
|
| lexical-049.js | 17 var testcases = new Array();
|
| /external/webkit/JavaScriptCore/tests/mozilla/js1_3/inherit/ |
| proto_1.js | 46 var testcases = new Array(); 58 this.projects = new Array();
|
| proto_10.js | 46 var testcases = new Array(); 70 this.projects = projs || new Array();
|
| proto_6.js | 48 var testcases = new Array(); 62 this.projects = projs || new Array();
|
| /external/webkit/LayoutTests/storage/domstorage/events/resources/ |
| eventTestHarness.js | 11 storageEventList = new Array();
|
| /external/webkit/LayoutTests/storage/domstorage/events/script-tests/ |
| case-sensitive.js | 27 evalAndLog("storageEventList = new Array()");
|
| documentURI.js | 23 evalAndLog("storageEventList = new Array()");
|
| /hardware/ril/mock-ril/src/js/ |
| ctrl_server.js | 86 this.ctrlDispatchTable = new Array(); 150 * and contains an array of components this request 155 * ctrlServerDispatchTable[CTRL_CMD_xxx].components = Array of components 158 var ctrlServerDispatchTable = new Array();
|
| /libcore/luni/src/main/java/java/security/cert/ |
| TrustAnchor.java | 23 import org.apache.harmony.security.utils.Array; 35 * representation of a so called "Name Constraints" extension as a byte array. 257 sb.append(Array.toString(nameConstraints, " "));
|