Searched refs:EOFSeen (Results 1 - 6 of 6) sorted by relevance

/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/compact/
H A DTokenMgrError.java144 * EOFSeen : indicates if EOF caused the lexical error
152 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
156 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
188 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
189 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
H A DCompactSyntaxTokenManager.java1824 boolean EOFSeen = false;
1827 EOFSeen = true;
1836 if (!EOFSeen) {
1840 throw new TokenMgrError(EOFSeen, curLexState, error_line, error_column, error_after, curChar, TokenMgrError.LEXICAL_ERROR);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/scd/
H A DTokenMgrError.java114 * EOFSeen : indicates if EOF caused the lexicl error
122 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
126 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
155 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
156 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
H A DSCDParserTokenManager.java2438 boolean EOFSeen = false;
2441 EOFSeen = true;
2450 if (!EOFSeen) {
2454 throw new TokenMgrError(EOFSeen, curLexState, error_line, error_column, error_after, curChar, TokenMgrError.LEXICAL_ERROR);
/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/tools/example/debug/expr/
H A DTokenMgrError.java124 * EOFSeen : indicates if EOF caused the lexical error
132 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { argument
136 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
168 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { argument
169 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
H A DExpressionParserTokenManager.java1564 boolean EOFSeen = false;
1567 EOFSeen = true;
1576 if (!EOFSeen) {
1580 throw new TokenMgrError(EOFSeen, curLexState, error_line, error_column, error_after, curChar, TokenMgrError.LEXICAL_ERROR);

Completed in 102 milliseconds