Home | History | Annotate | Download | only in io

Lines Matching defs:string

38   private static final String TEXT
52 NonSkippingReader(String s) {
63 List<String> lines = CharStreams.readLines(
69 String text = "a\nb\nc";
76 public boolean processLine(String line) {
93 public boolean processLine(String line) {
111 public boolean processLine(String line) {
136 String testString = "abcdef";
183 // need a long enough string for the buffer to hit 0 remaining before the copy completes
184 String string = Strings.repeat("0123456789", 100);
188 long copied = CharStreams.copy(newNonBufferFillingReader(new StringReader(string)), b);
189 assertEquals(string, b.toString());
190 assertEquals(string.length(), copied);
198 String test = "Test string for NullWriter";