Searched defs:nextCharBuf (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DASCII_UCodeESC_CharStream.java109 private byte[] nextCharBuf; field in class:ASCII_UCodeESC_CharStream
170 if ((i = inputStream.read(nextCharBuf, maxNextCharInd,
200 return nextCharBuf[nextCharInd];
418 nextCharBuf = new byte[4096];
439 nextCharBuf = new byte[4096];
479 nextCharBuf = null;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DJavaCharStream.java124 protected char[] nextCharBuf; field in class:JavaCharStream
188 if ((i = inputStream.read(nextCharBuf, maxNextCharInd,
218 return nextCharBuf[nextCharInd];
453 nextCharBuf = new char[4096];
482 nextCharBuf = new char[4096];
608 nextCharBuf = null;
H A DUCode_UCodeESC_CharStream.java123 private char[] nextCharBuf; field in class:UCode_UCodeESC_CharStream
175 if ((i = inputStream.read(nextCharBuf, maxNextCharInd, 4096 - maxNextCharInd)) == -1) {
192 return nextCharBuf[nextCharInd];
458 nextCharBuf = new char[4096];
479 nextCharBuf = new char[4096];
546 nextCharBuf = null;

Completed in 49 milliseconds