Home
last modified time | relevance | path

Searched refs:reduceRight (Results 1 – 16 of 16) sorted by relevance

/external/v8/test/webkit/
Darray-reduceRight-expected.txt24 This test checks the behavior of the reduceRight() method on a number of objects.
29 PASS [0,1,2,3].reduceRight(function(a,b){ return a + b; }) is 6
30 PASS [1,2,3].reduceRight(function(a,b){ return a + b; }) is 6
31 PASS [0,1,2,3].reduceRight(function(a,b){ return a + b; }, 4) is 10
32 PASS [1,2,3].reduceRight(function(a,b){ return a + b; }, 4) is 10
33 PASS toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }) is 6
34 PASS toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }) is 6
35 PASS toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }, 4) is 10
36 PASS toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }, 4) is 10
37 PASS toUnorderedObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }) is 6
[all …]
Darray-reduceRight.js33 o.reduceRight = Array.prototype.reduceRight;
44 o.reduceRight = Array.prototype.reduceRight;
Darray-enumerators-functions-expected.txt190 …ex=-1;copyArray(simpleArray).reduceRight(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Ar…
191 …dex=-1;copyArray(emptyArray).reduceRight(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Ar…
192 …1;copyArray(largeEmptyArray).reduceRight(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Ar…
193 …;copyArray(largeSparseArray).reduceRight(forwarders[f], returnFalse, 0) is count=0;lastIndex=-1;Ar…
194 …dex=-1;copyArray(simpleArray).reduceRight(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Ar…
195 …ndex=-1;copyArray(emptyArray).reduceRight(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Ar…
196 …-1;copyArray(largeEmptyArray).reduceRight(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Ar…
197 …1;copyArray(largeSparseArray).reduceRight(forwarders[f], returnTrue, 0) is count=0;lastIndex=-1;Ar…
198 …dex=-1;copyArray(simpleArray).reduceRight(forwarders[f], returnElem, 0) is count=0;lastIndex=-1;Ar…
199 …ndex=-1;copyArray(emptyArray).reduceRight(forwarders[f], returnElem, 0) is count=0;lastIndex=-1;Ar…
[all …]
Darray-proto-func-property-getter-except-expected.txt36 PASS test(Array.prototype.reduceRight) is true
Darray-proto-func-length-getter-except-expected.txt46 PASS test(Array.prototype.reduceRight) is true
/external/v8/test/mjsunit/es6/
Dtypedarray-reduce.js198 new constructor([1]).reduceRight("not a function");
222 new constructor([]).reduceRight(sum);
237 constructor.prototype.reduceRight.call([], function() {}, null); method in constructor
245 assertEquals(a.reduceRight(sum, 0), 3);
246 assertEquals(Array.prototype.reduceRight.call(a, sum, 0), 1);
249 assertEquals(1, constructor.prototype.reduceRight.length);
Darray-length.js193 Array.prototype.reduceRight.call(o, func, 0); method in Array
/external/v8/test/mjsunit/regress/
Dregress-1436.js41 [2, 3].reduceRight(non_strict);
42 [2, 3].reduceRight(strict);
Dregress-1790.js57 CheckSequence(Array.prototype.reduceRight, function() { return 0; });
/external/v8/test/mjsunit/
Darray-reduce.js428 [1].reduceRight("not a function");
452 [].reduceRight(sum);
476 [,,,].reduceRight(sum);
533 assertEquals(undefined, arr.reduceRight(function(val) { return val }));
Dfunction-call.js53 Array.prototype.reduceRight,
150 Array.prototype.reduceRight];
Ddebug-stepin-builtin-callback.js118 a.reduceRight(cb_reduce); // B1
/external/v8/test/webkit/fast/js/
Darray-prototype-properties-expected.txt48 PASS Array.prototype.reduceRight.call(undefined, toString) threw exception TypeError: Array.prototy…
/external/v8/test/test262/
Dtest262.status177 'built-ins/TypedArray/prototype/reduceRight/callbackfn-detachbuffer': [FAIL],
/external/chromium-trace/catapult/tracing/third_party/css-element-queries/test/
Dmootools-more-yui-compressed.min.js1 …if(h in this){f=f===b?this[h]:g.call(null,f,this[h],h,this)}}return f},reduceRight:function(f,e){v… method
/external/v8/
DChangeLog16335 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the
18437 Array.prototype.reduceRight.