Home | History | Annotate | Download | only in src

Lines Matching defs:getFunction

1474   var getFunction = function(name, jsBuiltin, len) {
1490 "toString", getFunction("toString", ArrayToString),
1491 "toLocaleString", getFunction("toLocaleString", ArrayToLocaleString),
1492 "join", getFunction("join", ArrayJoin),
1493 "pop", getFunction("pop", ArrayPop),
1494 "push", getFunction("push", ArrayPush, 1),
1495 "concat", getFunction("concat", ArrayConcatJS, 1),
1496 "reverse", getFunction("reverse", ArrayReverse),
1497 "shift", getFunction("shift", ArrayShift),
1498 "unshift", getFunction("unshift", ArrayUnshift, 1),
1499 "slice", getFunction("slice", ArraySlice, 2),
1500 "splice", getFunction("splice", ArraySplice, 2),
1501 "sort", getFunction("sort", ArraySort),
1502 "filter", getFunction("filter", ArrayFilter, 1),
1503 "forEach", getFunction("forEach", ArrayForEach, 1),
1504 "some", getFunction("some", ArraySome, 1),
1505 "every", getFunction("every", ArrayEvery, 1),
1506 "map", getFunction("map", ArrayMap, 1),
1507 "indexOf", getFunction("indexOf", ArrayIndexOf, 1),
1508 "lastIndexOf", getFunction("lastIndexOf", ArrayLastIndexOf, 1),
1509 "reduce", getFunction("reduce", ArrayReduce, 1),
1510 "reduceRight", getFunction("reduceRight", ArrayReduceRight, 1)
1519 "concat", getFunction("concat", ArrayConcatJS),
1520 "indexOf", getFunction("indexOf", ArrayIndexOf),
1521 "join", getFunction("join", ArrayJoin),
1522 "pop", getFunction("pop", ArrayPop),
1523 "push", getFunction("push", ArrayPush),
1524 "splice", getFunction("splice", ArraySplice)
1528 "join", getFunction("join", ArrayJoin),
1529 "pop", getFunction("pop", ArrayPop),
1530 "push", getFunction("push", ArrayPush)