Lines Matching refs:getFunction

1531 var getFunction = function(name, jsBuiltin, len) {  function
1542 var ArrayValues = getFunction("values", null, 0);
1549 "toString", getFunction("toString", ArrayToString),
1550 "toLocaleString", getFunction("toLocaleString", ArrayToLocaleString),
1551 "join", getFunction("join", ArrayJoin),
1552 "pop", getFunction("pop", ArrayPop),
1553 "push", getFunction("push", ArrayPush, 1),
1554 "reverse", getFunction("reverse", ArrayReverse),
1555 "shift", getFunction("shift", ArrayShift),
1556 "unshift", getFunction("unshift", ArrayUnshift, 1),
1557 "slice", getFunction("slice", ArraySlice, 2),
1558 "splice", getFunction("splice", ArraySplice, 2),
1559 "sort", getFunction("sort", ArraySort),
1560 "filter", getFunction("filter", ArrayFilter, 1),
1561 "forEach", getFunction("forEach", ArrayForEach, 1),
1562 "some", getFunction("some", ArraySome, 1),
1563 "every", getFunction("every", ArrayEvery, 1),
1564 "map", getFunction("map", ArrayMap, 1),
1565 "indexOf", getFunction("indexOf", null, 1),
1566 "lastIndexOf", getFunction("lastIndexOf", ArrayLastIndexOf, 1),
1567 "reduce", getFunction("reduce", ArrayReduce, 1),
1568 "reduceRight", getFunction("reduceRight", ArrayReduceRight, 1),
1569 "copyWithin", getFunction("copyWithin", ArrayCopyWithin, 2),
1570 "find", getFunction("find", ArrayFind, 1),
1571 "findIndex", getFunction("findIndex", ArrayFindIndex, 1),
1572 "fill", getFunction("fill", ArrayFill, 1),
1573 "includes", getFunction("includes", null, 1),
1574 "keys", getFunction("keys", null, 0),
1575 "entries", getFunction("entries", null, 0),
1589 "indexOf", getFunction("indexOf", null),
1590 "join", getFunction("join", ArrayJoin),
1591 "pop", getFunction("pop", ArrayPop),
1592 "push", getFunction("push", ArrayPush),
1593 "shift", getFunction("shift", ArrayShift),
1594 "sort", getFunction("sort", ArraySort),
1595 "splice", getFunction("splice", ArraySplice)
1599 "join", getFunction("join", ArrayJoin),
1600 "pop", getFunction("pop", ArrayPop),
1601 "push", getFunction("push", ArrayPush),
1602 "shift", getFunction("shift", ArrayShift)
1608 "push", getFunction("push", ArrayPush),
1609 "pop", getFunction("pop", ArrayPop),
1610 "shift", getFunction("shift", ArrayShift),
1611 "unshift", getFunction("unshift", ArrayUnshift),
1612 "splice", getFunction("splice", ArraySplice),
1613 "slice", getFunction("slice", ArraySlice)