/external/v8/test/mjsunit/es6/ |
D | array-from.js | 41 function testArrayFrom(thisArg, constructor) { argument 42 assertArrayLikeEquals(Array.from.call(thisArg, [], undefined), [], 44 assertArrayLikeEquals(Array.from.call(thisArg, NaN), [], constructor); 45 assertArrayLikeEquals(Array.from.call(thisArg, Infinity), [], constructor); 46 assertArrayLikeEquals(Array.from.call(thisArg, 10000000), [], constructor); 47 assertArrayLikeEquals(Array.from.call(thisArg, 'test'), ['t', 'e', 's', 't'], 50 assertArrayLikeEquals(Array.from.call(thisArg, 53 assertArrayLikeEquals(Array.from.call(thisArg, 56 assertArrayLikeEquals(Array.from.call(thisArg, 60 assertArrayLikeEquals(Array.from.call(thisArg, kSet), ['foo', 'bar', 'baz'], [all …]
|
D | typedarray-findindex.js | 120 var thisArg = { variable 125 Array.prototype.push.apply(thisArg, [3, 2, 1]); argument 129 }, thisArg);
|
D | typedarray-find.js | 120 var thisArg = { variable 125 Array.prototype.push.apply(thisArg, [3, 2, 1]); argument 129 }, thisArg);
|
D | array-findindex.js | 247 var thisArg = { variable 252 Array.prototype.push.apply(thisArg, ["c", "b", "a"]); argument 256 }, thisArg);
|
D | array-find.js | 247 var thisArg = { variable 252 Array.prototype.push.apply(thisArg, ["c", "b", "a"]); argument 256 }, thisArg);
|
/external/v8/src/js/ |
D | typedarray.js | 517 function TypedArrayFilter(f, thisArg) { argument 523 InnerArrayFilter(f, thisArg, this, length, result); 535 function TypedArrayFind(predicate, thisArg) { argument 540 return InnerArrayFind(predicate, thisArg, this, length); 546 function TypedArrayFindIndex(predicate, thisArg) { argument 551 return InnerArrayFindIndex(predicate, thisArg, this, length); 623 function TypedArrayMap(f, thisArg) { argument 631 result[i] = %_Call(f, thisArg, element, i, this); 762 function TypedArrayFrom(source, mapfn, thisArg) { argument 768 var array = %_Call(ArrayFrom, GlobalArray, source, mapfn, thisArg);
|
D | prologue.js | 328 extrasUtils.simpleBind = function simpleBind(func, thisArg) { argument 330 return %Apply(func, thisArg, arguments, 0, arguments.length); 335 return function(thisArg) { argument 336 return %Apply(func, thisArg, arguments, 1, arguments.length - 1);
|
D | array.js | 1616 function InnerArrayFind(predicate, thisArg, array, length) { argument 1623 if (%_Call(predicate, thisArg, element, i, array)) { 1633 function ArrayFind(predicate, thisArg) { argument 1639 return InnerArrayFind(predicate, thisArg, array, length); 1643 function InnerArrayFindIndex(predicate, thisArg, array, length) { argument 1650 if (%_Call(predicate, thisArg, element, i, array)) { 1660 function ArrayFindIndex(predicate, thisArg) { argument 1666 return InnerArrayFindIndex(predicate, thisArg, array, length);
|
/external/chromium-trace/catapult/third_party/polymer/components/polymer/ |
D | polymer.js | 465 forEach: function(callback, thisArg) { argument 467 callback.call(thisArg, v, this.keys[i], this);
|
/external/chromium-trace/catapult/tracing/third_party/components/polymer/ |
D | polymer.js | 465 forEach: function(callback, thisArg) { argument 467 callback.call(thisArg, v, this.keys[i], this);
|