Searched defs:hasPositionCall (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DLastCall.java45 public boolean hasPositionCall() { method in class:LastCall
H A DPositionCall.java46 public boolean hasPositionCall() { method in class:PositionCall
H A DCastExpr.java154 public boolean hasPositionCall() { method in class:CastExpr
155 return(_left.hasPositionCall());
H A DUnaryOpExpr.java48 public boolean hasPositionCall() { method in class:UnaryOpExpr
49 return(_left.hasPositionCall());
H A DBinOpExpr.java62 public boolean hasPositionCall() { method in class:BinOpExpr
63 if (_left.hasPositionCall()) return true;
64 if (_right.hasPositionCall()) return true;
H A DEqualityExpr.java97 public boolean hasPositionCall() { method in class:EqualityExpr
98 if (_left.hasPositionCall()) return true;
99 if (_right.hasPositionCall()) return true;
H A DExpression.java72 public boolean hasPositionCall() { method in class:Expression
H A DLogicalExpr.java67 public boolean hasPositionCall() { method in class:LogicalExpr
68 return (_left.hasPositionCall() || _right.hasPositionCall());
H A DRelationalExpr.java71 public boolean hasPositionCall() { method in class:RelationalExpr
72 if (_left.hasPositionCall()) return true;
73 if (_right.hasPositionCall()) return true;
H A DPredicate.java158 public boolean hasPositionCall() { method in class:Predicate
159 return _exp.hasPositionCall();
312 !_exp.hasLastCall() && !_exp.hasPositionCall();

Completed in 50 milliseconds