Searched defs:nextChar (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/java/io/charStreams/
H A DABCInputStream.java49 static char nextChar(char c) { method in class:ABCInputStream
62 next = nextChar(c);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DTextCatalogReader.java237 nextch = nextChar();
240 nextch = nextChar();
257 ch = nextChar();
260 while ((ch = nextChar()) != quote) {
271 nextch = nextChar();
296 protected int nextChar() throws IOException { method in class:TextCatalogReader
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedWriter.java71 private int nChars, nextChar; field in class:BufferedWriter
107 nextChar = 0;
127 if (nextChar == 0)
129 out.write(cb, 0, nextChar);
130 nextChar = 0;
142 if (nextChar >= nChars)
144 cb[nextChar++] = (char) c;
194 int d = min(nChars - nextChar, t - b);
195 System.arraycopy(cbuf, b, cb, nextChar, d);
197 nextChar
[all...]
H A DBufferedReader.java68 private int nChars, nextChar; field in class:BufferedReader
99 nextChar = nChars = 0;
128 int delta = nextChar - markedChar;
148 nextChar = nChars = delta;
158 nextChar = dst;
174 if (nextChar >= nChars) {
176 if (nextChar >= nChars)
181 if (cb[nextChar] == '\n') {
182 nextChar++;
186 return cb[nextChar
[all...]
H A DConsole.java405 private int nChars, nextChar; field in class:Console.LineReader
410 nextChar = nChars = 0;
432 if (nextChar >= nChars) { //fill
439 nextChar = 0;
455 if (leftoverLF && cbuf == rcb && cb[nextChar] == '\n') {
460 nextChar++;
463 while (nextChar < nChars) {
464 c = cbuf[off++] = cb[nextChar];
465 cb[nextChar++] = 0;
482 if (nextChar
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlReader.java560 private char nextChar; field in class:XmlReader.Utf8Reader
573 if (nextChar != 0) {
574 buf[offset + i++] = nextChar;
575 nextChar = 0;
653 nextChar = (char) (0xDC00 + (c & 0x03ff));
704 if (nextChar != 0 && i < len) {
705 buf[offset + i++] = nextChar;
706 nextChar = 0;
H A DDTDParser.java538 nextChar(';', "F-020", entityName);
573 nextChar(';', "F-021", entityName);
706 nextChar('>', "F-022", null);
819 nextChar('=', "F-023", null);
1134 nextChar('(', "F-028", elementName);
1361 nextChar(';', "F-021", entityName);
1420 nextChar('(', "F-029", null);
1591 nextChar('[', "F-030", null);
1730 nextChar(';', "F-021", name);
1846 nextChar('>', "
2153 private void nextChar(char c, String location, String near) method in class:DTDParser
[all...]
/openjdk7/jdk/test/java/util/Arrays/
H A DArrayObjectMethods.java235 public static char nextChar() { method in class:Rnd
325 result[i] = Rnd.nextChar();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java337 char nextChar() { method in class:ClassReader
419 poolIdx = new int[nextChar()];
427 int len = nextChar();
949 Object v = readPool(nextChar());
964 int nexceptions = nextChar();
967 thrown = thrown.prepend(readClassSymbol(nextChar()).type);
993 int numEntries = nextChar();
995 int start_pc = nextChar();
996 int length = nextChar();
997 int nameIndex = nextChar();
[all...]

Completed in 73 milliseconds