Lines Matching defs:this

13  * accompanied this code).
16 * 2 along with this work; if not, write to the Free Software Foundation,
34 void plain(@A DefaultUnmodified this) { }
35 <T> void generic(@A DefaultUnmodified this) { }
36 void withException(@A DefaultUnmodified this) throws Exception { }
37 String nonVoid(@A DefaultUnmodified this) { return null; }
38 <T extends Runnable> void accept(@A DefaultUnmodified this, T r) throws Exception { }
42 public final void plain(@A PublicModified this) { }
43 public final <T> void generic(@A PublicModified this) { }
44 public final void withException(@A PublicModified this) throws Exception { }
45 public final String nonVoid(@A PublicModified this) { return null; }
46 public final <T extends Runnable> void accept(@A PublicModified this, T r) throws Exception { }
50 void plain(@B("m") WithValue this) { }
51 <T> void generic(@B("m") WithValue this) { }
52 void withException(@B("m") WithValue this) throws Exception { }
53 String nonVoid(@B("m") WithValue this) { return null; }
54 <T extends Runnable> void accept(@B("m") WithValue this, T r) throws Exception { }
60 void field(@A WithBody this) {
61 this.f = null;
63 void meth(@A WithBody this) {
64 this.toString();
69 void test1(Generic1<X> this) {}
70 void test2(@A Generic1<X> this) {}
71 void test3(Generic1<@A X> this) {}
72 void test4(@A Generic1<@A X> this) {}
76 void test1(Generic2<X> this) {}
77 void test2(@A Generic2<X> this) {}
78 void test3(Generic2<@A X> this) {}
79 void test4(@A Generic2<@A X> this) {}
83 void test1(Generic3<X> this) {}
84 void test2(@A Generic3<X> this) {}
85 void test3(Generic3<@A X> this) {}
86 void test4(@A Generic3<@A X> this) {}
90 <Y> void test1(Generic4<X> this) {}
91 <Y> void test2(@A Generic4<X> this) {}
92 <Y> void test3(Generic4<@A X> this) {}
93 <Y> void test4(@A Generic4<@A X> this) {}
98 void none(Outer.Inner this) {}
99 void outer(@A Outer.Inner this) {}
100 void inner(Outer. @B("i") Inner this) {}
101 void both(@A Outer.@B("i") Inner this) {}
103 void innerOnlyNone(Inner this) {}
104 void innerOnly(@A Inner this) {}
110 void none(GenericOuter<S, T>.GenericInner<U, V> this) {}
111 void outer(@A GenericOuter<S, T>.GenericInner<U, V> this) {}
112 void inner(GenericOuter<S, T>. @B("i") GenericInner<U, V> this) {}
113 void both(@A GenericOuter<S, T>.@B("i") GenericInner<U, V> this) {}
115 void innerOnlyNone(GenericInner<U, V> this) {}
116 void innerOnly(@A GenericInner<U, V> this) {}