/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | BaseTreeAdaptor.cs | 81 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()
|
D | RewriteRuleSubtreeStream.cs | 88 return adaptor.DupTree(el); in Dup()
|
D | ITreeAdaptor.cs | 69 object DupTree(object tree); in DupTree() method
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | BaseTreeAdaptor.cs | 109 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()
|
D | RewriteRuleSubtreeStream.cs | 96 return adaptor.DupTree( el ); in Dup()
|
D | ITreeAdaptor.cs | 125 object DupTree( object tree ); in DupTree() method
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 80 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/ |
D | DebugTreeAdaptor.cs | 87 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/ |
D | ITreeAdaptor`1.cs | 57 T DupTree(T tree); in DupTree() method
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Tree.pas | 80 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/ |
D | ITreeFixture.cs | 164 CommonTree dup = (CommonTree)(new CommonTreeAdaptor()).DupTree(r0); in testDupTree()
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
D | ASTTreeParser.stg | 196 <label>_tree = (<ASTLabelType>)adaptor.DupTree(<label>);
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
D | ASTTreeParser.stg | 197 <label>_tree = (<ASTLabelType>)adaptor.DupTree(<label>);
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tree.Tests.pas | 348 Dup := Adaptor.DupTree(R0) as ICommonTree;
|