Searched defs:callVisitors (Results 1 - 16 of 16) sorted by relevance

/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/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
/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 DXString.java1117 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
1119 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:XString
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!!!");
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
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 DAxesWalker.java522 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:AxesWalker
529 m_nextWalker.callVisitors(this, 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
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
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 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 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/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 DNodeTest.java687 * @see com.sun.org.apache.xpath.internal.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
689 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:NodeTest
691 assertion(false, "callVisitors should not be called for this object!!!");
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);

Completed in 64 milliseconds