Searched refs:mapfn (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/js/ |
D | array.js | 1763 function ArrayFrom(arrayLike, mapfn, receiver) { argument 1765 var mapping = !IS_UNDEFINED(mapfn); 1768 if (!IS_CALLABLE(mapfn)) { 1769 throw MakeTypeError(kCalledNonCallable, mapfn); 1799 mappedValue = %_Call(mapfn, receiver, nextValue, k); 1813 mappedValue = %_Call(mapfn, receiver, nextValue, k);
|
D | typedarray.js | 762 function TypedArrayFrom(source, mapfn, thisArg) { argument 768 var array = %_Call(ArrayFrom, GlobalArray, source, mapfn, thisArg);
|