Searched defs:visitor (Results 1 - 25 of 1122) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeWizard.cs301 * Visit every ttype node in t, invoking the visitor. This is a quicker
303 * of the visitor action method is never set (it's null) since using
307 public void Visit(object t, int ttype, IContextVisitor visitor) { argument
308 VisitCore(t, null, 0, ttype, visitor);
316 protected virtual void VisitCore(object t, object parent, int childIndex, int ttype, IContextVisitor visitor) { argument
321 visitor.Visit(t, parent, childIndex, null);
326 VisitCore(child, t, i, ttype, visitor);
336 public VisitTreeWizardContextVisitor(TreeWizard outer, IContextVisitor visitor, IDictionary<string, object> labels, TreePattern tpattern) { argument
338 _visitor = visitor;
355 * with visit(t, ttype, visitor) s
359 Visit(object t, string pattern, IContextVisitor visitor) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeWizard.cs345 * Visit every ttype node in t, invoking the visitor. This is a quicker
347 * of the visitor action method is never set (it's null) since using
351 public void Visit( object t, int ttype, IContextVisitor visitor )
353 VisitCore( t, null, 0, ttype, visitor );
362 protected virtual void VisitCore( object t, object parent, int childIndex, int ttype, IContextVisitor visitor )
370 visitor.Visit( t, parent, childIndex, null );
376 VisitCore( child, t, i, ttype, visitor );
387 public VisitTreeWizardContextVisitor( TreeWizard outer, IContextVisitor visitor, IDictionary<string, object> labels, TreePattern tpattern ) argument
390 _visitor = visitor;
409 * with visit(t, ttype, visitor) s
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeWizard.java244 /** Visit every ttype node in t, invoking the visitor. This is a quicker
246 * of the visitor action method is never set (it's null) since using
249 public void visit(Object t, int ttype, ContextVisitor visitor) { argument
250 _visit(t, null, 0, ttype, visitor);
254 protected void _visit(Object t, Object parent, int childIndex, int ttype, ContextVisitor visitor) { argument
259 visitor.visit(t, parent, childIndex, null);
264 _visit(child, t, i, ttype, visitor);
270 * with visit(t, ttype, visitor) so nil-rooted patterns are not allowed.
273 public void visit(Object t, final String pattern, final ContextVisitor visitor) { argument
293 visitor
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtreewizard.py422 def visitor(tree, parent, childIndex, labels): function in function:TreeWizard._findTokenType
425 self.visit(t, ttype, visitor)
447 def visitor(tree, parent, childIndex, label): function in function:TreeWizard._findPattern
451 self.visit(t, rootTokenType, visitor)
456 def visit(self, tree, what, visitor):
457 """Visit every node in tree matching what, invoking the visitor.
462 with visit(t, ttype, visitor) so nil-rooted patterns are not allowed.
467 The labels arg of the visitor action method is never set (it's None)
473 self._visitType(tree, None, 0, what, visitor)
476 self._visitPattern(tree, what, visitor)
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtesttreewizard.py375 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testNoRepeatsVisit
378 wiz.visit(tree, wiz.getTokenType("B"), visitor)
389 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testNoRepeatsVisit2
392 wiz.visit(tree, wiz.getTokenType("C"), visitor)
403 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testRepeatsVisit
406 wiz.visit(tree, wiz.getTokenType("B"), visitor)
417 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testRepeatsVisit2
420 wiz.visit(tree, wiz.getTokenType("A"), visitor)
431 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testRepeatsVisitWithContext
434 wiz.visit(tree, wiz.getTokenType("B"), visitor)
445 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testRepeatsVisitWithNullParentAndContext
462 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testVisitPattern
478 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testVisitPatternMultiple
495 def visitor(node, parent, childIndex, labels): function in function:TestTreeWizard.testVisitPatternMultipleWithLabels
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAVT.java584 public void callVisitors(XSLTVisitor visitor) argument
586 if(visitor.visitAVT(this) && (null != m_parts))
594 part.callVisitors(visitor);
H A DAVTPartSimple.java95 public void callVisitors(XSLTVisitor visitor) argument
H A DAVTPartXPath.java146 public void callVisitors(XSLTVisitor visitor) argument
148 m_xpath.getExpression().callVisitors(m_xpath, visitor);
H A DElemCallTemplate.java347 * @param visitor The visitor whose appropriate method will be called.
349 public void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
358 // ewp.callVisitors(visitor);
362 super.callChildVisitors(visitor, callAttrs);
H A DElemCopyOf.java230 * @param visitor The visitor whose appropriate method will be called.
232 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
235 m_selectExpression.getExpression().callVisitors(m_selectExpression, visitor);
236 super.callChildVisitors(visitor, callAttrs);
H A DElemElement.java356 * @param visitor The visitor whose appropriate method will be called.
358 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
363 m_name_avt.callVisitors(visitor);
366 m_namespace_avt.callVisitors(visitor);
369 super.callChildVisitors(visitor, callAttrs);
H A DElemExtensionCall.java303 * Accept a visitor and call the appropriate method
306 * @param visitor The visitor whose appropriate method will be called.
309 protected boolean accept(XSLTVisitor visitor) argument
311 return visitor.visitExtensionElement(this);
H A DElemForEach.java450 * @param visitor The visitor whose appropriate method will be called.
452 public void callChildVisitors(XSLTVisitor visitor, boolean callAttributes) argument
455 m_selectExpression.callVisitors(this, visitor);
461 getSortElem(i).callVisitors(visitor);
464 super.callChildVisitors(visitor, callAttributes);
H A DElemIf.java141 * @param visitor The visitor whose appropriate method will be called.
143 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
146 m_test.getExpression().callVisitors(m_test, visitor);
147 super.callChildVisitors(visitor, callAttrs);
H A DElemLiteralResult.java1435 * Accept a visitor and call the appropriate method
1438 * @param visitor The visitor whose appropriate method will be called.
1441 protected boolean accept(XSLTVisitor visitor) argument
1443 return visitor.visitLiteralResultElement(this);
1448 * @param visitor The visitor whose appropriate method will be called.
1450 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
1459 avt.callVisitors(visitor);
1462 super.callChildVisitors(visitor, callAttr
[all...]
H A DElemNumber.java1974 * @param visitor The visitor whose appropriate method will be called.
1976 public void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
1981 m_countMatchPattern.getExpression().callVisitors(m_countMatchPattern, visitor);
1983 m_fromMatchPattern.getExpression().callVisitors(m_fromMatchPattern, visitor);
1985 m_valueExpr.getExpression().callVisitors(m_valueExpr, visitor);
1988 m_format_avt.callVisitors(visitor);
1990 m_groupingSeparator_avt.callVisitors(visitor);
1992 m_groupingSize_avt.callVisitors(visitor);
1994 m_lang_avt.callVisitors(visitor);
[all...]
H A DElemTemplateElement.java1607 * Accept a visitor and call the appropriate method
1610 * @param visitor The visitor whose appropriate method will be called.
1613 protected boolean accept(XSLTVisitor visitor) argument
1615 return visitor.visitInstruction(this);
1621 public void callVisitors(XSLTVisitor visitor) argument
1623 if(accept(visitor))
1625 callChildVisitors(visitor);
1631 * @param visitor The visitor whos
1633 callChildVisitors(XSLTVisitor visitor, boolean callAttributes) argument
1647 callChildVisitors(XSLTVisitor visitor) argument
[all...]
H A DElemValueOf.java280 * @param visitor The visitor whose appropriate method will be called.
282 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
285 m_selectExpression.getExpression().callVisitors(m_selectExpression, visitor);
286 super.callChildVisitors(visitor, callAttrs);
H A DElemVariable.java469 * Accept a visitor and call the appropriate method
472 * @param visitor The visitor whose appropriate method will be called.
475 protected boolean accept(XSLTVisitor visitor) argument
477 return visitor.visitVariableOrParamDecl(this);
483 * @param visitor The visitor whose appropriate method will be called.
485 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
488 m_selectPattern.getExpression().callVisitors(m_selectPattern, visitor);
489 super.callChildVisitors(visitor, callAttr
[all...]
H A DElemWhen.java117 * @param visitor The visitor whose appropriate method will be called.
119 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
122 m_test.getExpression().callVisitors(m_test, visitor);
123 super.callChildVisitors(visitor, callAttrs);
H A DElemWithParam.java230 * @param visitor The visitor whose appropriate method will be called.
232 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
235 m_selectPattern.getExpression().callVisitors(m_selectPattern, visitor);
236 super.callChildVisitors(visitor, callAttrs);
H A DStylesheet.java1385 * @param visitor The visitor whose appropriate method will be called.
1387 protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) argument
1392 getImport(j).callVisitors(visitor);
1398 getInclude(j).callVisitors(visitor);
1404 visitor.visitTopLevelInstruction(getOutput(j));
1413 if (visitor.visitTopLevelInstruction(attrSet))
1415 attrSet.callChildVisitors(visitor);
1423 visitor.visitTopLevelInstruction(getDecimalFormat(j));
1431 visitor
1510 accept(XSLTVisitor visitor) argument
[all...]
H A DXSLTVisitable.java32 * This will traverse the heararchy, calling the visitor for
33 * each member. If the called visitor method returns
36 * @param visitor The visitor whose appropriate method will be called.
38 public void callVisitors(XSLTVisitor visitor); argument

Completed in 713 milliseconds

1234567891011>>