HomeSort by relevance Sort by last modified time
    Searched refs:mapfn (Results 1 - 4 of 4) sorted by null

  /external/v8/test/mjsunit/es6/
typedarray-from.js 31 // Assert that calling mapfn with / without thisArg in sloppy and strict modes
array-from.js 28 // Assert that calling mapfn with / without thisArg in sloppy and strict modes
  /external/v8/src/js/
typedarray.js 752 // %TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )
753 function TypedArrayFrom(source, mapfn, thisArg) {
756 if (!IS_UNDEFINED(mapfn)) {
757 if (!IS_CALLABLE(mapfn)) throw MakeTypeError(kCalledNonCallable, this);
769 mappedValue = %_Call(mapfn, thisArg, value, i);
array.js     [all...]

Completed in 218 milliseconds