Home | History | Annotate | Download | only in src

Lines Matching defs:getFunction

1192   function getFunction(name, jsBuiltin, len) {
1208 "toString", getFunction("toString", ArrayToString),
1209 "toLocaleString", getFunction("toLocaleString", ArrayToLocaleString),
1210 "join", getFunction("join", ArrayJoin),
1211 "pop", getFunction("pop", ArrayPop),
1212 "push", getFunction("push", ArrayPush, 1),
1213 "concat", getFunction("concat", ArrayConcat, 1),
1214 "reverse", getFunction("reverse", ArrayReverse),
1215 "shift", getFunction("shift", ArrayShift),
1216 "unshift", getFunction("unshift", ArrayUnshift, 1),
1217 "slice", getFunction("slice", ArraySlice, 2),
1218 "splice", getFunction("splice", ArraySplice, 2),
1219 "sort", getFunction("sort", ArraySort),
1220 "filter", getFunction("filter", ArrayFilter, 1),
1221 "forEach", getFunction("forEach", ArrayForEach, 1),
1222 "some", getFunction("some", ArraySome, 1),
1223 "every", getFunction("every", ArrayEvery, 1),
1224 "map", getFunction("map", ArrayMap, 1),
1225 "indexOf", getFunction("indexOf", ArrayIndexOf, 1),
1226 "lastIndexOf", getFunction("lastIndexOf", ArrayLastIndexOf, 1),
1227 "reduce", getFunction("reduce", ArrayReduce, 1),
1228 "reduceRight", getFunction("reduceRight", ArrayReduceRight, 1)
1240 InternalArray.prototype.join = getFunction("join", ArrayJoin);
1241 InternalArray.prototype.pop = getFunction("pop", ArrayPop);
1242 InternalArray.prototype.push = getFunction("push", ArrayPush);