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

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DBinOpExpr.java21 * $Id: BinOpExpr.java,v 1.2.4.1 2005/09/01 11:42:27 pvedula Exp $
38 final class BinOpExpr extends Expression { class in inherits:Expression
52 public BinOpExpr(int op, Expression left, Expression right) { method in class:BinOpExpr
H A Dxpath.cup539 {: RESULT = new BinOpExpr(BinOpExpr.PLUS, ae, me); :}
542 {: RESULT = new BinOpExpr(BinOpExpr.MINUS, ae, me); :};
548 {: RESULT = new BinOpExpr(BinOpExpr.TIMES, me, ue); :}
551 {: RESULT = new BinOpExpr(BinOpExpr.DIV, me, ue); :}
554 {: RESULT = new BinOpExpr(BinOpExpr
[all...]
H A DXPathParser.java2361 RESULT = new BinOpExpr(BinOpExpr.MOD, me, ue);
2376 RESULT = new BinOpExpr(BinOpExpr.DIV, me, ue);
2391 RESULT = new BinOpExpr(BinOpExpr.TIMES, me, ue);
2418 RESULT = new BinOpExpr(BinOpExpr.MINUS, ae, me);
2433 RESULT = new BinOpExpr(BinOpExpr
[all...]

Completed in 31 milliseconds