HomeSort by relevance Sort by last modified time
    Searched refs:readAhead (Results 1 - 2 of 2) sorted by null

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Latin1Converter.java 73 int readAhead = 0;
101 readAheadBuffer[readAhead++] = (byte) b;
116 readAheadBuffer[readAhead++] = (byte) b;
121 out.append(readAheadBuffer, 0, readAhead);
122 readAhead = 0;
135 i = i - readAhead;
136 readAhead = 0;
147 for (int j = 0; j < readAhead; j++)
FixASCIIControlsReader.java 59 int readAhead = 0;
67 available = super.read(readAheadBuffer, readAhead, 1) == 1;
70 char c = processChar(readAheadBuffer[readAhead]);
79 readAhead = 0;
84 unread(readAheadBuffer, 0, readAhead + 1);
85 readAhead = 0;
89 readAhead++;
92 else if (readAhead > 0)
95 unread(readAheadBuffer, 0, readAhead);
97 readAhead = 0
    [all...]

Completed in 1216 milliseconds