Lines Matching full:line
267 * Reads the first line from a {@link Readable} & {@link Closeable} object
268 * supplied by a factory. The line does not include line-termination
272 * @return the first line, or null if the reader is empty
280 String line = new LineReader(r).readLine();
282 return line;
290 * supplied by a factory. The lines do not include line-termination
312 * not include line-termination characters, but do include other
326 String line;
327 while ((line = lineReader.readLine()) != null) {
328 result.add(line);
349 String line;
350 while ((line = lineReader.readLine()) != null) {
351 if (!callback.processLine(line)) {