Lines Matching defs:this

13  * accompanied this code).
16 * 2 along with this work; if not, write to the Free Software Foundation,
32 void plain(@RcvrA DefaultUnmodified this) { }
33 <T> void generic(@RcvrA DefaultUnmodified this) { }
34 void withException(@RcvrA DefaultUnmodified this) throws Exception { }
35 String nonVoid(@RcvrA @RcvrB("m") DefaultUnmodified this) { return null; }
36 <T extends Runnable> void accept(@RcvrA DefaultUnmodified this, T r) throws Exception { }
40 public final void plain(@RcvrA PublicModified this) { }
41 public final <T> void generic(@RcvrA PublicModified this) { }
42 public final void withException(@RcvrA PublicModified this) throws Exception { }
43 public final String nonVoid(@RcvrA PublicModified this) { return null; }
44 public final <T extends Runnable> void accept(@RcvrA PublicModified this, T r) throws Exception { }
48 void plain(@RcvrB("m") WithValue this) { }
49 <T> void generic(@RcvrB("m") WithValue this) { }
50 void withException(@RcvrB("m") WithValue this) throws Exception { }
51 String nonVoid(@RcvrB("m") WithValue this) { return null; }
52 <T extends Runnable> void accept(@RcvrB("m") WithValue this, T r) throws Exception { }
67 void field(@RcvrA WithBody this) {
68 this.f = null;
70 void meth(@RcvrA WithBody this) {
71 this.toString();
76 void test1(Generic1<X> this) {}
77 void test2(@RcvrA Generic1<X> this) {}
78 void test3(Generic1<@RcvrA X> this) {}
79 void test4(@RcvrA Generic1<@RcvrA X> this) {}
83 void test1(Generic2<X> this) {}
84 void test2(@RcvrA Generic2<X> this) {}
85 void test3(Generic2<@RcvrA X> this) {}
86 void test4(@RcvrA Generic2<@RcvrA X> this) {}
90 void test1(Generic3<X> this) {}
91 void test2(@RcvrA Generic3<X> this) {}
92 void test3(Generic3<@RcvrA X> this) {}
93 void test4(@RcvrA Generic3<@RcvrA X> this) {}
97 <Y> void test1(Generic4<X> this) {}
98 <Y> void test2(@RcvrA Generic4<X> this) {}
99 <Y> void test3(Generic4<@RcvrA X> this) {}
100 <Y> void test4(@RcvrA Generic4<@RcvrA X> this) {}
105 void none(Outer.Inner this) {}
106 void outer(@RcvrA Outer.Inner this) {}
107 void inner(Outer. @RcvrB("i") Inner this) {}
108 void both(@RcvrA Outer.@RcvrB("i") Inner this) {}
110 void innerOnlyNone(Inner this) {}
111 void innerOnly(@RcvrA Inner this) {}
117 void none(GenericOuter<S, T>.GenericInner<U, V> this) {}
118 void outer(@RcvrA GenericOuter<S, T>.GenericInner<U, V> this) {}
119 void inner(GenericOuter<S, T>. @RcvrB("i") GenericInner<U, V> this) {}
120 void both(@RcvrA GenericOuter<S, T>.@RcvrB("i") GenericInner<U, V> this) {}
122 void innerOnlyNone(GenericInner<U, V> this) {}
123 void innerOnly(@RcvrA GenericInner<U, V> this) {}