/external/autotest/client/deps/webgl_mpd/src/ |
cros_fps.js | 13 this.frameDataBuf = new Array(); 29 this.frameDataBuf = new Array();
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
ICUTestCase.java | 17 import java.lang.reflect.Array; 180 * be the same length, and each element in the left array must compare 181 * equal to the corresponding element of the right array. 182 * Also fails if one of the objects is not an array. 183 * @param lhs the left array 184 * @param rhs the right array 200 * argument is not an array. 201 * @param lhs the left array 202 * @param rhs the right array 218 int lhsl = Array.getLength(lhsa) [all...] |
/external/javassist/src/main/javassist/bytecode/annotation/ |
ArrayMemberValue.java | 20 import java.lang.reflect.Array; 24 * Array member. 34 * Constructs an array. The initial value or type are not specified. 43 * Constructs an array. The initial value is not specified. 45 * @param t the type of the array elements. 58 "no array elements found: " + method.getName()); 65 throw new ClassNotFoundException("broken array type: " 71 Object a = Array.newInstance(clazz, size); 73 Array.set(a, i, values[i].getValue(cl, cp, method)); 80 throw new ClassNotFoundException("no array type specified") [all...] |
/external/v8/test/mjsunit/ |
elide-double-hole-check-10.js | 16 // Trick crankshaft into accepting feedback with the array prototype 19 // the array prototype. 20 var push = Array.prototype.push; 21 var array_prototype = Array.prototype;
|
allocation-site-info.js | 79 obj = new Array(); 83 obj = new Array(0); 87 obj = new Array(2); 91 obj = new Array(1,2,3); 95 obj = new Array(1, "hi", 2, undefined); 173 var a = new Array(); 178 // Case: new Array() as allocation site, smi->double 187 var a = new Array(); 192 // Case: new Array() as allocation site, smi->fast 201 var a = new Array(3) 403 array: [1,2,3], property [all...] |
array-push2.js | 5 var array = []; variable 8 Object.defineProperty(Array.prototype, "0", { 13 array[0] = 10; 14 assertEquals(0, array.length); 16 assertEquals("get 10", array[0]); 18 array.push(100); 19 assertEquals(1, array.length); 21 assertEquals("get 110", array[0]);
|
array-shift3.js | 7 Array.prototype[1] = "element 1";
|
elide-double-hole-check-11.js | 15 Array.prototype.unshift(1.5);
|
handle-count-ast.js | 7 var ones = eval("[" + Array(12 * 1024).join("1,") + 1 + "]")
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-381534.js | 12 var arr = new Array(+0, true, 0, -0, false, undefined, null, "0", obj, v1, -(4/3), -1.3333333333333, "str", v2, 1, false); 24 var arr = new Array({}, x-1.1, x-2, x-3.1);
|
regress-1447.js | 28 [0].forEach(function(){ Object.freeze(Array.prototype.forEach); }); 29 [0].every(function(){ Object.seal(Array.prototype.every); }); 33 [0].forEach(function(){ Object.freeze(Array.prototype.forEach); }); 34 [0].every(function(){ Object.seal(Array.prototype.every); });
|
regress-350884.js | 5 var obj = new Array(1);
|
regress-351261.js | 13 var __v_7 = new Array(4999990);
|
regress-357105.js | 12 var x = new Array(3);
|
regress-369450.js | 13 Array.prototype[0] = 5.5;
|
regress-411210.js | 9 var __v_1 = new Array(3);
|
regress-417709b.js | 9 Array.observe(a, function() {});
|
regress-435477.js | 6 var a = new Array(128);
|
regress-4515.js | 7 function f(array) { 8 return array.length >>> 0; 11 var a = new Array();
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
DFA.as | 15 protected var eot:Array; // short[] 16 protected var eof:Array; // short[] 17 protected var min:Array; // char[] 18 protected var max:Array; // char[] 19 protected var accept:Array; //short[] 20 protected var special:Array; // short[] 21 protected var transition:Array; // short[][] 33 eot:Array, eof:Array, min:Array, max:Array, accept:Array, special:Array, transition:Array [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
ExceptionExtensions.cs | 52 Array stackTrace = new StackTrace(true).GetFrames(); 53 Array.Copy(stackTrace, 1, frames, 0, stackTrace.Length);
|
/external/v8/src/js/ |
harmony-object-observe.js | 15 utils.InstallFunctions(global.Array, DONT_ENUM, ObserveArrayMethods);
|
/external/v8/test/mjsunit/compiler/ |
osr-forin.js | 19 var a = new Array(10000);
|
/external/v8/test/mjsunit/es6/ |
array-copywithin.js | 6 assertEquals(Array.prototype.copyWithin.length, 2); 40 // works with array-like values 42 Array.prototype.copyWithin.call(args, -2, 0); 43 assertArrayEquals([1, 1, 2], Array.prototype.slice.call(args)); 53 return Array.prototype.copyWithin.call(null, 0, 3); 60 return Array.prototype.copyWithin.call(undefined, 0, 3); 70 // return Array.prototype.copyWithin.call("hello world", 0, 3); 77 assertEquals(34, Array.prototype.copyWithin.call(34, 0, 3).valueOf()); 84 assertEquals(sym, Array.prototype.copyWithin.call(sym, 0, 3).valueOf()); 96 Array.prototype.copyWithin.call(int32View, 0, 1)) [all...] |
instanceof-proxies.js | 12 return x instanceof Array; 21 getPrototypeOf: function(target) { return Array.prototype; } 38 x instanceof Array; 48 handler.getPrototypeOf = function(target) { return Array.prototype; }
|