Home
last modified time | relevance | path

Searched refs:TreeVisitorAction (Results 1 – 10 of 10) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DITreeVisitorAction.cs60 public class TreeVisitorAction class
66 public TreeVisitorAction(Func<object, object> preAction, Func<object, object> postAction) in TreeVisitorAction() method in Antlr.Runtime.Tree.TreeVisitorAction
DTreeVisitor.cs78 return Visit(t, new TreeVisitorAction(preAction, postAction)); in Visit()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DITreeVisitorAction.cs62 public class TreeVisitorAction class
68 public TreeVisitorAction( Func<object, object> preAction, Func<object, object> postAction ) in TreeVisitorAction() method in Antlr.Runtime.Tree.TreeVisitorAction
DTreeVisitor.cs80 return Visit( t, new TreeVisitorAction( preAction, postAction ) ); in Visit()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeFilter.java111 TreeVisitorAction actions = new TreeVisitorAction() { in downup()
DTreeRewriter.java91 TreeVisitorAction actions = new TreeVisitorAction() { in downup()
DTreeVisitorAction.java34 public interface TreeVisitorAction { interface
DTreeVisitor.java52 public Object visit(Object t, TreeVisitorAction action) { in visit()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRTreeRewriter.m187 TreeVisitorAction actions = new TreeVisitorAction() {
/external/antlr/antlr-3.4/tool/
DCHANGES.txt496 * Added TreeVisitor and TreeVisitorAction to org.antlr.runtime.tree.