Home
last modified time | relevance | path

Searched refs:LineProcessor (Results 1 – 10 of 10) sorted by relevance

/external/guava/guava-tests/test/com/google/common/io/
DCharStreamsTest.java73 LineProcessor<Integer> alwaysFalse = new LineProcessor<Integer>() { in testReadLines_withLineProcessor()
90 LineProcessor<Integer> alwaysTrue = new LineProcessor<Integer>() { in testReadLines_withLineProcessor()
108 LineProcessor<Integer> conditional = new LineProcessor<Integer>() { in testReadLines_withLineProcessor()
DResourcesTest.java78 LineProcessor<List<String>> collectAndLowercaseAndTrim = in testReadLines_withLineProcessor()
79 new LineProcessor<List<String>>() { in testReadLines_withLineProcessor()
DCharSourceTester.java146 List<String> list = source.readLines(new LineProcessor<List<String>>() { in testReadLines_withProcessor()
165 List<String> list = source.readLines(new LineProcessor<List<String>>() { in testReadLines_withProcessor_stopsOnFalse()
DFilesTest.java521 LineProcessor<List<String>> collect = new LineProcessor<List<String>>() { in testReadLines_withLineProcessor()
547 LineProcessor<List<String>> collectNonEmptyLines = in testReadLines_withLineProcessor()
548 new LineProcessor<List<String>>() { in testReadLines_withLineProcessor()
DCharSourceTest.java125 List<String> list = lines.readLines(new LineProcessor<List<String>>() { in testReadLines_withProcessor()
145 List<String> list = lines.readLines(new LineProcessor<List<String>>() { in testReadLines_withProcessor_stopsOnFalse()
/external/guava/guava/src/com/google/common/io/
DResources.java128 LineProcessor<T> callback) throws IOException { in readLines()
151 return readLines(url, charset, new LineProcessor<List<String>>() { in readLines()
DLineProcessor.java33 public interface LineProcessor<T> { interface
DCharSource.java219 public <T> T readLines(LineProcessor<T> processor) throws IOException { in readLines()
391 public <T> T readLines(LineProcessor<T> processor) throws IOException {
DCharStreams.java137 Readable readable, LineProcessor<T> processor) throws IOException { in readLines()
DFiles.java535 return readLines(file, charset, new LineProcessor<List<String>>() { in readLines()
563 LineProcessor<T> callback) throws IOException { in readLines()