Lines Matching refs:schedule
34 void schedule(final Timer t, final TimerTask task, final Date d) {
35 t.schedule(task, d);
37 new F(){void f(){ t.schedule(task, d); }});
40 void schedule(final Timer t, final TimerTask task, final Date d, final long period) {
41 t.schedule(task, d, period);
43 new F(){void f(){ t.schedule(task, d, period); }});
63 new F(){void f(){ t.schedule(x, -42); }},
64 new F(){void f(){ t.schedule(x, new Date(-42)); }},
66 new F(){void f(){ t.schedule(x, Long.MAX_VALUE); }},
67 new F(){void f(){ t.schedule(x, -42, 42); }},
68 new F(){void f(){ t.schedule(x, new Date(-42), 42); }},
69 new F(){void f(){ t.schedule(x, Long.MAX_VALUE, 42); }},
70 new F(){void f(){ t.schedule(x, 42, 0); }},
71 new F(){void f(){ t.schedule(x, new Date(42), 0); }},
72 new F(){void f(){ t.schedule(x, 42, -42); }},
73 new F(){void f(){ t.schedule(x, new Date(42), -42); }},
85 new F(){void f(){ t.schedule(null, 42); }},
86 new F(){void f(){ t.schedule(x, (Date)null); }},
88 new F(){void f(){ t.schedule(null, 42, 42); }},
89 new F(){void f(){ t.schedule(x, (Date)null, 42); }},
100 schedule( t, counter(y1), past);
101 schedule( t, counter(y2), past, 1000);
112 new F(){void f(){ t.schedule(x, 42); }},
113 new F(){void f(){ t.schedule(x, past); }},
114 new F(){void f(){ t.schedule(x, 42, 42); }},
115 new F(){void f(){ t.schedule(x, past, 42); }},