Searched refs:thisObj (Results 1 – 3 of 3) sorted by relevance
/external/v8/test/webkit/ |
D | array-reduceRight-expected.txt | 49 PASS [1, 2, 3, 4].reduceRight(function(a,b, i, thisObj){ thisObj.length--; callCount++; return a + … 50 PASS [1, 2, 3, 4].reduceRight(function(a,b, i, thisObj){ thisObj.length = 1; callCount++; return a … 51 PASS [1, 2, 3, 4].reduceRight(function(a,b, i, thisObj){ thisObj.length++; callCount++; return a + … 52 PASS toObject([1, 2, 3, 4]).reduceRight(function(a,b, i, thisObj){ thisObj.length--; callCount++; r… 53 PASS toObject([1, 2, 3, 4]).reduceRight(function(a,b, i, thisObj){ thisObj.length++; callCount++; r…
|
D | array-reduce-expected.txt | 49 PASS [1, 2, 3, 4].reduce(function(a,b, i, thisObj){ thisObj.length--; callCount++; return a + b; },… 50 PASS [1, 2, 3, 4].reduce(function(a,b, i, thisObj){ thisObj.length++; callCount++; return a + b; },… 51 PASS toObject([1, 2, 3, 4]).reduce(function(a,b, i, thisObj){ thisObj.length--; callCount++; return… 52 PASS toObject([1, 2, 3, 4]).reduce(function(a,b, i, thisObj){ thisObj.length++; callCount++; return…
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/ |
D | testharness.js | 1765 function filter(array, callable, thisObj) { argument 1769 var pass = callable.call(thisObj, array[i], i, array); 1778 function map(array, callable, thisObj) argument 1784 rv[i] = callable.call(thisObj, array[i], i, array); 1795 function forEach (array, callback, thisObj) argument 1799 callback.call(thisObj, array[i], i, array);
|