Searched refs:LineProcessor (Results 1 - 6 of 6) sorted by relevance

/external/guava/guava/src/com/google/common/io/
H A DLineProcessor.java33 public interface LineProcessor<T> { interface
H A DResources.java108 * @param callback the LineProcessor to use to handle the lines
113 LineProcessor<T> callback) throws IOException {
H A DCharStreams.java346 * @param callback the LineProcessor to use to handle the lines
351 InputSupplier<R> supplier, LineProcessor<T> callback) throws IOException {
H A DFiles.java536 * @param callback the {@link LineProcessor} to use to handle the lines
541 LineProcessor<T> callback) throws IOException {
/external/guava/guava-tests/test/com/google/common/io/
H A DCharStreamsTest.java105 // Test a LineProcessor that always returns false.
106 LineProcessor<Integer> alwaysFalse = new LineProcessor<Integer>() {
121 // Test a LineProcessor that always returns true.
122 LineProcessor<Integer> alwaysTrue = new LineProcessor<Integer>() {
137 // Test a LineProcessor that is conditional.
139 LineProcessor<Integer> conditional = new LineProcessor<Integer>() {
H A DResourcesTest.java78 LineProcessor<List<String>> collectAndLowercaseAndTrim =
79 new LineProcessor<List<String>>() {

Completed in 96 milliseconds