Lines Matching refs:function
34 function inc1(x) { x++; o.x = x; }
43 function inc2(p) { p.x++ }
61 function inc3(a, b) { a[b]++; }
91 function inc4(x,y) { return (x++) + y; }
97 function inc5(x,y) { return (++x) + y; }
104 function inc6(o,y) { return (o.x++) + y; }
118 function inc7(o,y) { return (++o.x) + y; }
132 function inc8(o,y) { return (o[0]++) + y; }
146 function inc9(o,y) { return (++o[0]) + y; }
161 function inc10(p) { return p.x++ }
177 function inc11(a) { return a[this.x++]; }