Searched refs:callVisitors (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathVisitable.java42 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor); method in interface:XPathVisitable
H A DXPath.java609 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:XPath
611 m_mainExp.callVisitors(this, visitor);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
H A DUnaryOperation.java122 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
124 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:UnaryOperation
128 m_right.callVisitors(this, visitor);
H A DOperation.java170 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
172 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:Operation
176 m_left.callVisitors(new LeftExprOwner(), visitor);
177 m_right.callVisitors(this, visitor);
H A DVariable.java353 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
355 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:Variable
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DHasPositionalPredChecker.java55 path.callVisitors(null, hppc);
115 pred.callVisitors(owner, this);
H A DWalkingIterator.java302 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
304 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:WalkingIterator
310 m_firstWalker.callVisitors(this, visitor);
H A DFilterExprIterator.java196 m_expr.callVisitors(new filterExprOwner(), visitor);
H A DAxesWalker.java522 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:AxesWalker
529 m_nextWalker.callVisitors(this, visitor);
H A DFilterExprIteratorSimple.java281 m_expr.callVisitors(new filterExprOwner(), visitor);
H A DFilterExprWalker.java329 m_expr.callVisitors(new filterExprOwner(), visitor);
H A DUnionPathIterator.java537 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
539 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:UnionPathIterator
548 m_exprs[i].callVisitors(new iterOwner(i), visitor);
H A DLocPathIterator.java920 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
922 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:LocPathIterator
H A DPredicatedNodeTest.java560 m_predicates[i].callVisitors(predOwner, visitor);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DUnionPattern.java175 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
177 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:UnionPattern
185 m_patterns[i].callVisitors(new UnionPathPartOwner(i), visitor);
H A DFunctionPattern.java246 m_functionExpr.callVisitors(new FunctionOwner(), visitor);
H A DStepPattern.java967 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
969 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:StepPattern
978 * Call the visitors on the subtree. Factored out from callVisitors
991 m_predicates[i].callVisitors(predOwner, visitor);
997 m_relativePathPattern.callVisitors(this, visitor);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFunction.java117 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
119 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:Function
H A DFunctionOneArg.java127 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
132 m_arg0.callVisitors(this, visitor);
H A DFunction2Args.java155 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
161 m_arg1.callVisitors(new Arg1Owner(), visitor);
H A DFunction3Args.java153 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
159 m_arg2.callVisitors(new Arg2Owner(), visitor);
H A DFunctionMultiArgs.java194 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
204 m_args[i].callVisitors(new ArgMultiOwner(i), visitor);
H A DFuncExtFunction.java290 exp.callVisitors(new ArgExtOwner(exp), visitor);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNumber.java431 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
433 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:XNumber
H A DXObject.java738 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
740 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:XObject
742 assertion(false, "callVisitors should not be called for this object!!!");

Completed in 75 milliseconds

12