Home
last modified time | relevance | path

Searched refs:swr (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/lang/invoke/
DSpreadCollectTest.java191 StringWriter swr = new StringWriter(); in testAsCollectorExample() local
194 bindTo(swr); in testAsCollectorExample()
197 assertEquals("BC", swr.toString()); in testAsCollectorExample()
199 assertEquals("BCPQRS", swr.toString()); in testAsCollectorExample()
201 assertEquals("BCPQRSZ", swr.toString()); in testAsCollectorExample()
DFoldTest.java88 StringWriter swr = new StringWriter(); in testFoldArgumentsExample() local
89 … LOOKUP.findVirtual(StringWriter.class, "write", methodType(void.class, String.class)).bindTo(swr); in testFoldArgumentsExample()
94 assertEquals("jum", swr.toString()); in testFoldArgumentsExample()
DJavaDocExamplesTest.java926 StringWriter swr = new StringWriter(); in testAsCollector2() local
927 …ringWriter.class, "write", methodType(void.class, char[].class, int.class, int.class)).bindTo(swr); in testAsCollector2()
930 assertEquals("BC", swr.toString()); in testAsCollector2()
932 assertEquals("BCPQRS", swr.toString()); in testAsCollector2()
934 assertEquals("BCPQRSZ", swr.toString()); in testAsCollector2()