HomeSort by relevance Sort by last modified time
    Searched full:linereader (Results 1 - 23 of 23) sorted by null

  /external/okhttp/src/test/java/com/squareup/okhttp/internal/
StrictLineReaderTest.java 29 // Testing with LineReader buffer capacity 32 to check some corner cases.
30 StrictLineReader lineReader = new StrictLineReader(createTestInputStream(), 32, US_ASCII);
36 String line = lineReader.readLine();
45 lineReader.readLine();
54 lineReader.close();
  /libcore/luni/src/test/java/libcore/io/
StrictLineReaderTest.java 32 // Testing with LineReader buffer capacity 32 to check some corner cases.
33 StrictLineReader lineReader = new StrictLineReader(createTestInputStream(), 32,
40 String line = lineReader.readLine();
49 lineReader.readLine();
58 lineReader.close();
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ErrorFinder.java 28 BufferedReader lineReader = new BufferedReader(reader);
31 String line = lineReader.readLine();
34 line = lineReader.readLine();
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 38 LineNumberReader lineReader = new LineNumberReader(reader);
44 while ((line = lineReader.readLine()) != null) {
45 parseLine(line, output, context, lineReader, dataFileName, errorHandler);
50 LineNumberReader lineReader, String dataFileName, ErrorHandler errorHandler)
63 output.setValue(createFullPath(context, split.left), readToToken(lineReader, split.right));
78 errorHandler.error(lineReader.getLineNumber(), line, dataFileName, "Bad HDF syntax");
NewHdfParser.java 101 final LineNumberReader lineReader;
113 private ParseState(Data output, LineNumberReader lineReader, ErrorHandler errorHandler,
116 this.lineReader = lineReader;
199 while ((state.line = state.lineReader.readLine()) != null) {
515 while ((line = state.lineReader.readLine()) != null) {
695 state.errorHandler.error(state.lineReader.getLineNumber(), state.line, state.parsedFileName,
698 throw new RuntimeException("Parse Error on line " + state.lineReader.getLineNumber() + ": "
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 287 String line = new LineReader(r).readLine();
332 LineReader lineReader = new LineReader(r);
334 while ((line = lineReader.readLine()) != null) {
355 LineReader lineReader = new LineReader(r);
357 while ((line = lineReader.readLine()) != null) {
LineReader.java 37 public final class LineReader {
54 public LineReader(Readable readable) {
LineBuffer.java 23 * algorithm used by {@link LineReader}. Line separators are per {@link
  /external/guava/guava-tests/test/com/google/common/io/
LineBufferTest.java 32 * Unit tests for {@link LineBuffer} and {@link LineReader}.
118 LineReader r = new LineReader(readable);
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 52 class LineReader {
60 LineReader(std::string filename) {
66 ~LineReader() {
289 LineReader *reader;
290 LineReader *getReader(std::string);
NVPTXAsmPrinter.cpp     [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
StrictLineReader.java 74 * Constructs a new {@code LineReader} with the specified capacity and the default charset.
86 * Constructs a new {@code LineReader} with the specified charset and the default capacity.
99 * Constructs a new {@code LineReader} with the specified capacity and charset.
152 throw new IOException("LineReader is closed");
  /libcore/luni/src/main/java/libcore/io/
StrictLineReader.java 73 * Constructs a new {@code LineReader} with the specified capacity and the default charset.
85 * Constructs a new {@code LineReader} with the specified charset and the default capacity.
98 * Constructs a new {@code LineReader} with the specified capacity and charset.
154 throw new IOException("LineReader is closed");
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_mock.py 84 class LineReader(threading.Thread):
104 reader = LineReader(conn, queue)