Lines Matching refs:w
114 Consumer<Consumer<String>> say_nothing = (Consumer<String> w) -> { in doTest()
115 w.accept("Not doing anything here"); in doTest()
122 Consumer<Consumer<String>> request_redefine = (Consumer<String> w) -> { in doTest()
125 w.accept("Requesting redefinition"); in doTest()
146 Arrays.stream(watchers).forEach((w) -> { System.out.println(w.getOutput()); }); in doTest()
180 private TestWatcher w; field in Main.TestThread
184 TestWatcher w, in TestThread() argument
189 this.w = w; in TestThread()
195 w.clear(); in run()
196 t.nativeSayHi(do_nothing, w); in run()
197 t.nativeSayHi(request_redefinition, w); in run()
198 t.nativeSayHi(do_nothing, w); in run()