Lines Matching refs:O
49 var O = { variable
56 assertEquals(2, O.strict.length);
65 O.strict();
66 O.strict(2, 1);
67 O.strict(6, 5, 4, 3, 2, 1);
68 O.strict(3, 2, 1);
77 O.strict.apply(O, []);
78 O.strict.apply(O, [2, 1]);
79 O.strict.apply(O, [6, 5, 4, 3, 2, 1]);
80 O.strict.apply(O, [3, 2, 1]);
89 O.strict.call(O);
90 O.strict.call(O, 2, 1);
91 O.strict.call(O, 6, 5, 4, 3, 2, 1);
92 O.strict.call(O, 3, 2, 1);
98 assertEquals(2, O.sloppy.length);
107 O.sloppy();
108 O.sloppy(2, 1);
109 O.sloppy(6, 5, 4, 3, 2, 1);
110 O.sloppy(3, 2, 1);
119 O.sloppy.apply(O, []);
120 O.sloppy.apply(O, [2, 1]);
121 O.sloppy.apply(O, [6, 5, 4, 3, 2, 1]);
122 O.sloppy.apply(O, [3, 2, 1]);
131 O.sloppy.call(O);
132 O.sloppy.call(O, 2, 1);
133 O.sloppy.call(O, 6, 5, 4, 3, 2, 1);
134 O.sloppy.call(O, 3, 2, 1);