Searched refs:EOI (Results 1 - 7 of 7) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DLayoutCharacters.java70 final static byte EOI = 0x1A; field in interface:LayoutCharacters
/openjdk7/jdk/src/share/classes/sun/reflect/generics/parser/
H A DSignatureParser.java70 private static final char EOI = ':'; field in class:SignatureParser
88 } catch (ArrayIndexOutOfBoundsException e) { return EOI;}
96 } catch (ArrayIndexOutOfBoundsException e) { return EOI;}
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGBuffer.java198 * an EOI marker is inserted into the buffer and <code>true</code>
223 // send out a warning, but treat it as EOI
226 buf[0] = (byte)JPEG.EOI;
H A DJPEG.java111 public static final int EOI = 0xD9; field in class:JPEG
H A DJPEGImageReader.java102 * that the EOI marker is missing from the end of the stream.
433 case JPEG.EOI:
517 * until we encounter an EOI marker or until the end of the stream.
518 * If the stream ends before an EOI marker is encountered, an
531 if (byteval == JPEG.EOI) {
H A DJPEGMetadata.java334 case JPEG.EOI:
354 // Now that we've read up to the EOI, we need to push back
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DScanner.java186 buf[buflen] = EOI;
533 case '\u001A': // EOI is also a legal identifier part
957 } else if (bp == buflen || ch == EOI && bp+1 == buflen) { // JLS 3.5

Completed in 330 milliseconds