Searched defs:DupTree (Results 1 - 8 of 8) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeAdaptor.cs80 public virtual object DupTree(object tree) { method in class:Antlr.Runtime.Debug.DebugTreeAdaptor
81 object t = adaptor.DupTree(tree);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTreeAdaptor.cs81 public virtual object DupTree(object tree) { method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
82 return DupTree(tree, null);
91 public virtual object DupTree(object t, object parent) { method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
102 object newSubTree = DupTree(child, t);
H A DITreeAdaptor.cs69 object DupTree(object tree); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBaseTreeAdaptor.cs109 public virtual object DupTree( object tree ) method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
111 return DupTree( tree, null );
120 public virtual object DupTree( object t, object parent ) method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
134 object newSubTree = DupTree( child, t );
H A DITreeAdaptor.cs125 object DupTree( object tree ); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeAdaptor.cs87 public virtual object DupTree( object tree ) method in class:Antlr.Runtime.Debug.DebugTreeAdaptor
89 object t = adaptor.DupTree( tree );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs57 T DupTree(T tree); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas80 function DupTree(const Tree: IANTLRInterface): IANTLRInterface;
641 function DupTree(const Tree: IANTLRInterface): IANTLRInterface; overload; function
642 function DupTree(const T, Parent: IANTLRInterface): IANTLRInterface; overload; function
1272 function DupTree(const Tree: IANTLRInterface): IANTLRInterface; overload; virtual; function
1307 function DupTree(const T, Parent: IANTLRInterface): IANTLRInterface; overload; virtual; function
2762 function TBaseTreeAdaptor.DupTree(const T,
2780 NewSubTree := DupTree(Child, T);
2786 function TBaseTreeAdaptor.DupTree(const Tree: IANTLRInterface): IANTLRInterface;
2788 Result := DupTree(Tree, nil);
3660 Result := FAdaptor.DupTree(
[all...]

Completed in 114 milliseconds