Home
last modified time | relevance | path

Searched refs:DupTree (Results 1 – 14 of 14) sorted by relevance

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTreeAdaptor.cs81 public virtual object DupTree(object tree) { in DupTree() method in Antlr.Runtime.Tree.BaseTreeAdaptor
82 return DupTree(tree, null); in DupTree()
91 public virtual object DupTree(object t, object parent) { in DupTree() method in Antlr.Runtime.Tree.BaseTreeAdaptor
102 object newSubTree = DupTree(child, t); in DupTree()
DRewriteRuleSubtreeStream.cs88 return adaptor.DupTree(el); in Dup()
DITreeAdaptor.cs69 object DupTree(object tree); in DupTree() method
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTreeAdaptor.cs109 public virtual object DupTree( object tree ) in DupTree() method in Antlr.Runtime.Tree.BaseTreeAdaptor
111 return DupTree( tree, null ); in DupTree()
120 public virtual object DupTree( object t, object parent ) in DupTree() method in Antlr.Runtime.Tree.BaseTreeAdaptor
134 object newSubTree = DupTree( child, t ); in DupTree()
DRewriteRuleSubtreeStream.cs96 return adaptor.DupTree( el ); in Dup()
DITreeAdaptor.cs125 object DupTree( object tree ); in DupTree() method
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugTreeAdaptor.cs80 public virtual object DupTree(object tree) { in DupTree() method in Antlr.Runtime.Debug.DebugTreeAdaptor
81 object t = adaptor.DupTree(tree); in DupTree()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugTreeAdaptor.cs87 public virtual object DupTree( object tree ) in DupTree() method in Antlr.Runtime.Debug.DebugTreeAdaptor
89 object t = adaptor.DupTree( tree ); in DupTree()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
DITreeAdaptor`1.cs57 T DupTree(T tree); in DupTree() method
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Tree.pas80 function DupTree(const Tree: IANTLRInterface): IANTLRInterface;
641 function DupTree(const Tree: IANTLRInterface): IANTLRInterface; overload; in DupTree() function
642 function DupTree(const T, Parent: IANTLRInterface): IANTLRInterface; overload; in DupTree() function
1272 function DupTree(const Tree: IANTLRInterface): IANTLRInterface; overload; virtual; in DupTree() function
1307 function DupTree(const T, Parent: IANTLRInterface): IANTLRInterface; overload; virtual; in DupTree() function
2762 function TBaseTreeAdaptor.DupTree(const T, in DupTree() function
2780 NewSubTree := DupTree(Child, T);
2786 function TBaseTreeAdaptor.DupTree(const Tree: IANTLRInterface): IANTLRInterface; in DupTree() function
2788 Result := DupTree(Tree, nil);
3660 Result := FAdaptor.DupTree(O);
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DITreeFixture.cs164 CommonTree dup = (CommonTree)(new CommonTreeAdaptor()).DupTree(r0); in testDupTree()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
DASTTreeParser.stg196 <label>_tree = (<ASTLabelType>)adaptor.DupTree(<label>);
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
DASTTreeParser.stg197 <label>_tree = (<ASTLabelType>)adaptor.DupTree(<label>);
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tree.Tests.pas348 Dup := Adaptor.DupTree(R0) as ICommonTree;