Lines Matching refs:getFunction
1380 var getFunction = function(name, jsBuiltin, len) { function in SetUpArray
1396 "toString", getFunction("toString", ArrayToString),
1397 "toLocaleString", getFunction("toLocaleString", ArrayToLocaleString),
1398 "join", getFunction("join", ArrayJoin),
1399 "pop", getFunction("pop", ArrayPop),
1400 "push", getFunction("push", ArrayPush, 1),
1401 "concat", getFunction("concat", ArrayConcat, 1),
1402 "reverse", getFunction("reverse", ArrayReverse),
1403 "shift", getFunction("shift", ArrayShift),
1404 "unshift", getFunction("unshift", ArrayUnshift, 1),
1405 "slice", getFunction("slice", ArraySlice, 2),
1406 "splice", getFunction("splice", ArraySplice, 2),
1407 "sort", getFunction("sort", ArraySort),
1408 "filter", getFunction("filter", ArrayFilter, 1),
1409 "forEach", getFunction("forEach", ArrayForEach, 1),
1410 "some", getFunction("some", ArraySome, 1),
1411 "every", getFunction("every", ArrayEvery, 1),
1412 "map", getFunction("map", ArrayMap, 1),
1413 "indexOf", getFunction("indexOf", ArrayIndexOf, 1),
1414 "lastIndexOf", getFunction("lastIndexOf", ArrayLastIndexOf, 1),
1415 "reduce", getFunction("reduce", ArrayReduce, 1),
1416 "reduceRight", getFunction("reduceRight", ArrayReduceRight, 1)
1425 "join", getFunction("join", ArrayJoin),
1426 "pop", getFunction("pop", ArrayPop),
1427 "push", getFunction("push", ArrayPush)