HomeSort by relevance Sort by last modified time
    Searched full:simplearray (Results 1 - 3 of 3) sorted by null

  /external/v8/test/mjsunit/
array-reduce.js 107 var simpleArray = [2,4,6]
110 [[0, 2, 0, simpleArray, 2],
111 [2, 4, 1, simpleArray, 6],
112 [6, 6, 2, simpleArray, 12]],
113 simpleArray, sum, 0);
116 [[1, 2, 0, simpleArray, 2],
117 [2, 4, 1, simpleArray, 8],
118 [8, 6, 2, simpleArray, 48]],
119 simpleArray, prod, 1);
122 [[0, 2, 0, simpleArray, 200]
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
JSON-stringify.js 3 var simpleArray = ['a', 'b', 'c'];
5 var complexArray = ['a', 'b', 'c',,,simpleObject, simpleArray, [simpleObject,simpleArray]];
6 var complexObject = {a:"1", b:"2", c:"3", d:undefined, e:null, "":12, get f(){ return simpleArray; }, array: complexArray};
176 return jsonObject.stringify(simpleArray, array);
179 return jsonObject.stringify(simpleArray, null, " ");
182 return jsonObject.stringify(simpleArray, null, 4);
185 return jsonObject.stringify(simpleArray, null, "ab");
188 return jsonObject.stringify(simpleArray, null, 4);
JSON-parse.js 308 var simpleArray = ['a', 'b', 'c'];
310 var complexArray = ['a', 'b', 'c',,,simpleObject, simpleArray, [simpleObject,simpleArray]];
311 var complexObject = {a:"1", b:"2", c:"3", d:4.5e10, g: 0.45e-5, h: 0.0, i: 0, j:.5, k:0., l:-0, m:-0.0, n:-0., o:-.5, p:-0.45e-10, q:-4.5e10, e:null, "":12, f: simpleArray, array: complexArray};
391 return jsonObject.parse(JSON.stringify(simpleArray), log);
436 return jsonObject.parse(JSON.stringify(simpleArray), logOrder);
482 jsonObject.parse(JSON.stringify(simpleArray), logOrder);

Completed in 53 milliseconds