Home
last modified time | relevance | path

Searched refs:thisArg (Results 1 – 10 of 10) sorted by relevance

/external/v8/test/mjsunit/es6/
Darray-from.js41 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 …]
Dtypedarray-findindex.js120 var thisArg = { variable
125 Array.prototype.push.apply(thisArg, [3, 2, 1]); argument
129 }, thisArg);
Dtypedarray-find.js120 var thisArg = { variable
125 Array.prototype.push.apply(thisArg, [3, 2, 1]); argument
129 }, thisArg);
Darray-findindex.js247 var thisArg = { variable
252 Array.prototype.push.apply(thisArg, ["c", "b", "a"]); argument
256 }, thisArg);
Darray-find.js247 var thisArg = { variable
252 Array.prototype.push.apply(thisArg, ["c", "b", "a"]); argument
256 }, thisArg);
/external/v8/src/js/
Dtypedarray.js517 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);
Dprologue.js328 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);
Darray.js1616 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/
Dpolymer.js465 forEach: function(callback, thisArg) { argument
467 callback.call(thisArg, v, this.keys[i], this);
/external/chromium-trace/catapult/tracing/third_party/components/polymer/
Dpolymer.js465 forEach: function(callback, thisArg) { argument
467 callback.call(thisArg, v, this.keys[i], this);