Lines Matching refs:ParseException

30   static public void Program() throws ParseException {  in Program()
56 if (jjte000 instanceof ParseException) { in Program()
58 throw (ParseException)jjte000; in Program()
79 static public void FunDecl() throws ParseException { in FunDecl()
123 if (jjte000 instanceof ParseException) { in FunDecl()
125 throw (ParseException)jjte000; in FunDecl()
144 static public void Expr() throws ParseException { in Expr()
188 throw new ParseException(); in Expr()
197 if (jjte000 instanceof ParseException) { in Expr()
199 throw (ParseException)jjte000; in Expr()
223 static public void IfExpr() throws ParseException { in IfExpr()
251 if (jjte000 instanceof ParseException) { in IfExpr()
253 throw (ParseException)jjte000; in IfExpr()
272 static public void LetExpr() throws ParseException { in LetExpr()
307 if (jjte000 instanceof ParseException) { in LetExpr()
309 throw (ParseException)jjte000; in LetExpr()
328 static public Token FunAppl() throws ParseException { in FunAppl()
381 if (jjte000 instanceof ParseException) { in FunAppl()
383 throw (ParseException)jjte000; in FunAppl()
403 static public void Term() throws ParseException { in Term()
434 if (jjte000 instanceof ParseException) { in Term()
436 throw (ParseException)jjte000; in Term()
455 static public void Factor() throws ParseException { in Factor()
488 if (jjte000 instanceof ParseException) { in Factor()
490 throw (ParseException)jjte000; in Factor()
509 static public void Element() throws ParseException { in Element()
532 throw new ParseException(); in Element()
537 static public Token Integer() throws ParseException { in Integer()
562 static public Token Ident() throws ParseException { in Ident()
588 throw new ParseException(); in Ident()
607 static public int AddOp() throws ParseException { in AddOp()
622 throw new ParseException(); in AddOp()
630 static public int MultOp() throws ParseException { in MultOp()
648 throw new ParseException(); in MultOp()
656 static public int CmpOp() throws ParseException { in CmpOp()
680 throw new ParseException(); in CmpOp()
688 static final public int UnOp() throws ParseException { in UnOp()
700 throw new ParseException(); in UnOp()
947 static private Token jj_consume_token(int kind) throws ParseException { in jj_consume_token()
1070 static public ParseException generateParseException() { in generateParseException()
1106 return new ParseException(token, exptokseq, tokenImage); in generateParseException()