Lines Matching refs:O
47 var O = { variable
54 assertEquals(2, O.strict.length);
63 O.strict();
64 O.strict(2, 1);
65 O.strict(6, 5, 4, 3, 2, 1);
66 O.strict(3, 2, 1);
75 O.strict.apply(O, []);
76 O.strict.apply(O, [2, 1]);
77 O.strict.apply(O, [6, 5, 4, 3, 2, 1]);
78 O.strict.apply(O, [3, 2, 1]);
87 O.strict.call(O);
88 O.strict.call(O, 2, 1);
89 O.strict.call(O, 6, 5, 4, 3, 2, 1);
90 O.strict.call(O, 3, 2, 1);
96 assertEquals(2, O.sloppy.length);
105 O.sloppy();
106 O.sloppy(2, 1);
107 O.sloppy(6, 5, 4, 3, 2, 1);
108 O.sloppy(3, 2, 1);
117 O.sloppy.apply(O, []);
118 O.sloppy.apply(O, [2, 1]);
119 O.sloppy.apply(O, [6, 5, 4, 3, 2, 1]);
120 O.sloppy.apply(O, [3, 2, 1]);
129 O.sloppy.call(O);
130 O.sloppy.call(O, 2, 1);
131 O.sloppy.call(O, 6, 5, 4, 3, 2, 1);
132 O.sloppy.call(O, 3, 2, 1);