Lines Matching refs:getFunction
1641 var getFunction = function(name, jsBuiltin, len) { function in SetUpArray
1657 "toString", getFunction("toString", ArrayToString),
1658 "toLocaleString", getFunction("toLocaleString", ArrayToLocaleString),
1659 "join", getFunction("join", ArrayJoin),
1660 "pop", getFunction("pop", ArrayPop),
1661 "push", getFunction("push", ArrayPush, 1),
1662 "concat", getFunction("concat", ArrayConcat, 1),
1663 "reverse", getFunction("reverse", ArrayReverse),
1664 "shift", getFunction("shift", ArrayShift),
1665 "unshift", getFunction("unshift", ArrayUnshift, 1),
1666 "slice", getFunction("slice", ArraySlice, 2),
1667 "splice", getFunction("splice", ArraySplice, 2),
1668 "sort", getFunction("sort", ArraySort),
1669 "filter", getFunction("filter", ArrayFilter, 1),
1670 "forEach", getFunction("forEach", ArrayForEach, 1),
1671 "some", getFunction("some", ArraySome, 1),
1672 "every", getFunction("every", ArrayEvery, 1),
1673 "map", getFunction("map", ArrayMap, 1),
1674 "indexOf", getFunction("indexOf", ArrayIndexOf, 1),
1675 "lastIndexOf", getFunction("lastIndexOf", ArrayLastIndexOf, 1),
1676 "reduce", getFunction("reduce", ArrayReduce, 1),
1677 "reduceRight", getFunction("reduceRight", ArrayReduceRight, 1)
1686 "concat", getFunction("concat", ArrayConcat),
1687 "indexOf", getFunction("indexOf", ArrayIndexOf),
1688 "join", getFunction("join", ArrayJoin),
1689 "pop", getFunction("pop", ArrayPop),
1690 "push", getFunction("push", ArrayPush),
1691 "splice", getFunction("splice", ArraySplice)
1695 "join", getFunction("join", ArrayJoin),
1696 "pop", getFunction("pop", ArrayPop),
1697 "push", getFunction("push", ArrayPush)