Searched refs:errPos (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DLexer.java63 int errPos(); method in interface:Lexer
68 void errPos(int pos); method in interface:Lexer
H A DScanner.java87 private int errPos = Position.NOPOS; field in class:Scanner
196 errPos = pos;
1020 public int errPos() { method in class:Scanner
1021 return errPos;
1026 public void errPos(int pos) { method in class:Scanner
1027 errPos = pos;
H A DJavacParser.java289 if (pos > S.errPos() || pos == Position.NOPOS) {
296 S.errPos(pos);
379 private void setErrorEndPos(int errPos) { argument
380 if (errPos > errorEndPos)
381 errorEndPos = errPos;

Completed in 38 milliseconds