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

12

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXSLTVisitable.java38 public void callVisitors(XSLTVisitor visitor); method in interface:XSLTVisitable
H A DAVTPartSimple.java93 * @see XSLTVisitable#callVisitors(XSLTVisitor)
95 public void callVisitors(XSLTVisitor visitor) method in class:AVTPartSimple
H A DAVTPartXPath.java144 * @see XSLTVisitable#callVisitors(XSLTVisitor)
146 public void callVisitors(XSLTVisitor visitor) method in class:AVTPartXPath
148 m_xpath.getExpression().callVisitors(m_xpath, visitor);
H A DAbsPathChecker.java49 path.callVisitors(null, this);
H A DElemWhen.java122 m_test.getExpression().callVisitors(m_test, visitor);
H A DElemIf.java146 m_test.getExpression().callVisitors(m_test, visitor);
H A DElemElement.java363 m_name_avt.callVisitors(visitor);
366 m_namespace_avt.callVisitors(visitor);
H A DElemValueOf.java285 m_selectExpression.getExpression().callVisitors(m_selectExpression, visitor);
H A DElemWithParam.java235 m_selectPattern.getExpression().callVisitors(m_selectPattern, visitor);
H A DAVT.java582 * @see XSLTVisitable#callVisitors(XSLTVisitor)
584 public void callVisitors(XSLTVisitor visitor) method in class:AVT
594 part.callVisitors(visitor);
H A DElemForEach.java455 m_selectExpression.callVisitors(this, visitor);
461 getSortElem(i).callVisitors(visitor);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitable.java40 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor); method in interface:XPathVisitable
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DUnaryOperation.java120 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
122 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:UnaryOperation
126 m_right.callVisitors(this, visitor);
H A DOperation.java168 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
170 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:Operation
174 m_left.callVisitors(new LeftExprOwner(), visitor);
175 m_right.callVisitors(this, visitor);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java53 path.callVisitors(null, hppc);
113 pred.callVisitors(owner, this);
H A DWalkingIterator.java300 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
302 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:WalkingIterator
308 m_firstWalker.callVisitors(this, visitor);
H A DFilterExprIterator.java194 m_expr.callVisitors(new filterExprOwner(), visitor);
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DUnionPattern.java173 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
175 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:UnionPattern
183 m_patterns[i].callVisitors(new UnionPathPartOwner(i), visitor);
H A DFunctionPattern.java244 m_functionExpr.callVisitors(new FunctionOwner(), visitor);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFunction.java115 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
117 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:Function
H A DFunction2Args.java153 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
159 m_arg1.callVisitors(new Arg1Owner(), visitor);
H A DFunction3Args.java151 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
157 m_arg2.callVisitors(new Arg2Owner(), visitor);
H A DFunctionOneArg.java125 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
130 m_arg0.callVisitors(this, visitor);
H A DFunctionMultiArgs.java192 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
202 m_args[i].callVisitors(new ArgMultiOwner(i), visitor);
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNumber.java429 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
431 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) method in class:XNumber

Completed in 1928 milliseconds

12