HomeSort by relevance Sort by last modified time
    Searched refs:DupTree (Results 1 - 14 of 14) sorted by null

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTreeAdaptor.cs 81 public virtual object DupTree(object tree) {
82 return DupTree(tree, null);
91 public virtual object DupTree(object t, object parent) {
102 object newSubTree = DupTree(child, t);
RewriteRuleSubtreeStream.cs 88 return adaptor.DupTree(el);
ITreeAdaptor.cs 69 object DupTree(object tree);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleSubtreeStream.cs 96 return adaptor.DupTree( el );
BaseTreeAdaptor.cs 109 public virtual object DupTree( object tree )
111 return DupTree( tree, null );
120 public virtual object DupTree( object t, object parent )
134 object newSubTree = DupTree( child, t );
ITreeAdaptor.cs 125 object DupTree( object tree );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 57 T DupTree(T tree);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 80 public virtual object DupTree(object tree) {
81 object t = adaptor.DupTree(tree);
83 // to simulate what dupTree has done. dupTree does not call this debug
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 87 public virtual object DupTree( object tree )
89 object t = adaptor.DupTree( tree );
91 // to simulate what dupTree has done. dupTree does not call this debug
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTTreeParser.stg 167 <label>_tree = (<ASTLabelType>)adaptor.DupTree(<label>);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTTreeParser.stg 168 <label>_tree = (<ASTLabelType>)adaptor.DupTree(<label>);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeFixture.cs 164 CommonTree dup = (CommonTree)(new CommonTreeAdaptor()).DupTree(r0);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 80 function DupTree(const Tree: IANTLRInterface): IANTLRInterface;
641 function DupTree(const Tree: IANTLRInterface): IANTLRInterface; overload;
642 function DupTree(const T, Parent: IANTLRInterface): IANTLRInterface; overload;
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tree.Tests.pas 348 Dup := Adaptor.DupTree(R0) as ICommonTree;
    [all...]

Completed in 914 milliseconds