Searched refs:fInputStream (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/
H A DUCSReader.java61 protected InputStream fInputStream; field in class:UCSReader
95 fInputStream = inputStream;
122 int b0 = fInputStream.read() & 0xff;
125 int b1 = fInputStream.read() & 0xff;
129 int b2 = fInputStream.read() & 0xff;
132 int b3 = fInputStream.read() & 0xff;
167 int count = fInputStream.read(fBuffer, 0, byteLength);
174 int charRead = fInputStream.read();
188 int charRead = fInputStream.read();
238 long bytesSkipped = fInputStream
[all...]
H A DASCIIReader.java57 protected InputStream fInputStream; field in class:ASCIIReader
97 fInputStream = inputStream;
125 int b0 = fInputStream.read();
152 int count = fInputStream.read(fBuffer, 0, length);
176 return fInputStream.skip(n);
196 return fInputStream.markSupported();
213 fInputStream.mark(readAheadLimit);
230 fInputStream.reset();
244 fInputStream.close();
H A DUTF8Reader.java62 protected InputStream fInputStream; field in class:UTF8Reader
118 fInputStream = inputStream;
156 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
171 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
185 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
195 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
212 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
221 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
229 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
302 count = fInputStream
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityManager.java2814 private InputStream fInputStream; field in class:XMLEntityManager.RewindableInputStream
2824 fInputStream = is;
2853 b = fInputStream.read();
2872 * //System.out.println("fInputStream = " + fInputStream );
2882 return fInputStream.read(b, off, len);
2919 return fInputStream.skip(n);
2938 return fInputStream.skip(n) + bytesLeft;
2947 return fCurrentEntity.mayReadChunks ? fInputStream.available()
2967 if (fInputStream !
[all...]

Completed in 55 milliseconds