Lines Matching refs:check

64     void check(String expr, String result, String expected) {
97 check("this.m()", this.m(), "cm");
99 check("A.this.m()", A.this.m(), "am");
100 check("B.this.m()", B.this.m(), "bm");
101 check("C.this.m()", C.this.m(), "cm");
103 check("super.m()", super.m(), "csm");
105 check("A.super.m()", A.super.m(), "asm");
106 check("B.super.m()", B.super.m(), "bsm");
107 check("C.super.m()", C.super.m(), "csm");
110 check("A.super.m()", A.super.m(), "asm");
111 check("B.super.m()", B.super.m(), "bsm");
112 check("C.super.m()", C.super.m(), "csm");
116 check("this.n()", this.n(), "cn");
118 check("A.this.n()", A.this.n(), "an");
119 check("B.this.n()", B.this.n(), "bn");
120 check("C.this.n()", C.this.n(), "cn");
123 check("super.n()", super.n(), "csn");
127 check("A.super.n()", A.super.n(), "asn");
129 check("B.super.n()", B.super.n(), "bsn");
130 check("C.super.n()", C.super.n(), "csn");
133 check("A.super.n()", A.super.n(), "asn");
134 check("B.super.n()", B.super.n(), "bsn");
135 check("C.super.n()", C.super.n(), "csn");
139 check("this.o()", this.o(), "co");
141 check("A.this.o()", A.this.o(), "ao");
142 check("B.this.o()", B.this.o(), "bo");
143 check("C.this.o()", C.this.o(), "co");
145 check("super.o()", super.o(), "cso");
147 check("A.super.o()", A.super.o(), "aso");
148 check("B.super.o()", B.super.o(), "bso");
149 check("C.super.o()", C.super.o(), "cso");
152 check("A.super.o()", A.super.o(), "aso");
153 check("B.super.o()", B.super.o(), "bso");
154 check("C.super.o()", C.super.o(), "cso");
158 check("this.s", this.s, "cs");
160 check("A.this.s", A.this.s, "as");
161 check("B.this.s", B.this.s, "bs");
162 check("C.this.s", C.this.s, "cs");
166 check("this.t", this.t, "ct");
168 check("A.this.t", A.this.t, "at");
169 check("B.this.t", B.this.t, "bt");
170 check("C.this.t", C.this.t, "ct");
174 check("this.u", this.u, "cu");
176 check("A.this.u", A.this.u, "au");
177 check("B.this.u", B.this.u, "bu");
178 check("C.this.u", C.this.u, "cu");
182 check("super.s", super.s, "css");
184 check("A.super.s", A.super.s, "ass");
185 check("B.super.s", B.super.s, "bss");
186 check("C.super.s", C.super.s, "css");
190 check("super.t", super.t, "cst");
192 check("A.super.t", A.super.t, "ast");
193 check("B.super.t", B.super.t, "bst");
194 check("C.super.t", C.super.t, "cst");
198 check("super.u", super.u, "csu");
200 check("A.super.u", A.super.u, "asu");
201 check("B.super.u", B.super.u, "bsu");
202 check("C.super.u", C.super.u, "csu");
208 check("A.this.s", A.this.s, "foo");
211 check("B.this.s", B.this.s, "bar");
214 check("C.this.s", C.this.s, "baz");
218 check("A.this.t", A.this.t, "foo");
221 check("B.this.t", B.this.t, "bar");
224 check("C.this.t", C.this.t, "baz");
228 check("A.this.u", A.this.u, "foo");
231 check("B.this.u", B.this.u, "bar");
234 check("C.this.u", C.this.u, "baz");
238 check("A.super.s", A.super.s, "foo");
241 check("B.super.s", B.super.s, "bar");
244 check("C.super.s", C.super.s, "baz");
248 check("A.super.t", A.super.t, "foo");
251 check("B.super.t", B.super.t, "bar");
254 check("C.super.t", C.super.t, "baz");
258 check("A.super.u", A.super.u, "foo");
261 check("B.super.u", B.super.u, "bar");
264 check("C.super.u", C.super.u, "baz");