HomeSort by relevance Sort by last modified time
    Searched refs:DupNode (Results 1 - 25 of 26) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeAdaptor.cs 116 object DupNode(object treeNode);
118 object DupNode(int type, object treeNode);
120 object DupNode(object treeNode, string text);
122 object DupNode(int type, object treeNode, string text);
124 /** <summary>Duplicate tree recursively, using dupNode() for each node</summary> */
RewriteRuleSubtreeStream.cs 83 return adaptor.DupNode( el );
90 object el2 = adaptor.DupNode(tree); // dup just the root (want node here)
BaseTreeAdaptor.cs 87 public virtual object DupNode(int type, object treeNode)
89 object t = DupNode(treeNode);
94 public virtual object DupNode(object treeNode, string text)
96 object t = DupNode(treeNode);
101 public virtual object DupNode(int type, object treeNode, string text)
103 object t = DupNode(treeNode);
126 object newTree = DupNode( t );
405 public virtual object DupNode(object treeNode)
411 return tree.DupNode();
ITree.cs 145 ITree DupNode();
RewriteRuleNodeStream.cs 71 return adaptor.DupNode( el );
ParseTree.cs 100 public override ITree DupNode()
CommonTree.cs 240 public override ITree DupNode()
BaseTree.cs 529 public abstract ITree DupNode();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteRuleSubtreeStream.cs 76 return adaptor.DupNode(el);
83 object el2 = adaptor.DupNode(tree); // dup just the root (want node here)
ITree.cs 137 ITree DupNode();
RewriteRuleNodeStream.cs 70 return adaptor.DupNode(el);
CommonTreeAdaptor.cs 45 * create(Token), errorNode(), and to be safe, YourTreeClass.dupNode().
46 * dupNode is called to duplicate nodes during rewrite operations.
60 public override object DupNode(object t) {
64 return ((ITree)t).DupNode();
ITreeAdaptor.cs 66 object DupNode(object treeNode);
68 /** <summary>Duplicate tree recursively, using dupNode() for each node</summary> */
ParseTree.cs 85 public override ITree DupNode() {
CommonTree.cs 184 public override ITree DupNode() {
BaseTreeAdaptor.cs 95 object newTree = DupNode(t);
306 public abstract object DupNode(object treeNode);
BaseTree.cs 442 public abstract ITree DupNode();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 110 public virtual object DupNode( object treeNode )
112 object d = adaptor.DupNode( treeNode );
117 public object DupNode(int type, object treeNode)
119 object d = adaptor.DupNode(type, treeNode);
124 public object DupNode(object treeNode, string text)
126 object d = adaptor.DupNode(treeNode, text);
131 public object DupNode(int type, object treeNode, string text)
133 object d = adaptor.DupNode(type, treeNode, text);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
ASTTreeParser.stg 135 <label>_tree := Adaptor.DupNode(<label>) as I<ASTLabelType>;
165 <label>_tree := Adaptor.DupNode(<label>) as I<ASTLabelType>;
190 <label>_tree := Adaptor.DupNode(<label>) as I<ASTLabelType>;
216 <label>_tree := Adaptor.DupNode(<label>) as I<ASTLabelType>;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 54 T DupNode(T treeNode);
56 /** <summary>Duplicate tree recursively, using dupNode() for each node</summary> */
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 100 public virtual object DupNode(object treeNode) {
101 object d = adaptor.DupNode(treeNode);
RemoteDebugEventSocketListener.cs 229 public override ITree DupNode() {
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTTreeParser.stg 123 <label>_tree = (<ASTLabelType>)adaptor.DupNode(<if(terminalOptions.type)><terminalOptions.type>,<endif><label><if(terminalOptions.text)>,<terminalOptions.text; format="string"><endif>);
148 <label>_tree = (<ASTLabelType>)adaptor.DupNode(<if(terminalOptions.type)><terminalOptions.type>,<endif><label><if(terminalOptions.text)>,<terminalOptions.text; format="string"><endif>);
186 <label>_tree = (<ASTLabelType>)adaptor.DupNode(<if(terminalOptions.type)><terminalOptions.type>,<endif><label><if(terminalOptions.text)>,<terminalOptions.text; format="string"><endif>);
212 <label>_tree = (<ASTLabelType>)adaptor.DupNode(<if(terminalOptions.type)><terminalOptions.type>,<endif><label><if(terminalOptions.text)>,<terminalOptions.text; format="string"><endif>);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTTreeParser.stg 124 <label>_tree = (<ASTLabelType>)adaptor.DupNode(<if(terminalOptions.type)><terminalOptions.type>,<endif><label><if(terminalOptions.text)>,<terminalOptions.text; format="string"><endif>);
149 <label>_tree = (<ASTLabelType>)adaptor.DupNode(<if(terminalOptions.type)><terminalOptions.type>,<endif><label><if(terminalOptions.text)>,<terminalOptions.text; format="string"><endif>);
187 <label>_tree = (<ASTLabelType>)adaptor.DupNode(<if(terminalOptions.type)><terminalOptions.type>,<endif><label><if(terminalOptions.text)>,<terminalOptions.text; format="string"><endif>);
213 <label>_tree = (<ASTLabelType>)adaptor.DupNode(<if(terminalOptions.type)><terminalOptions.type>,<endif><label><if(terminalOptions.text)>,<terminalOptions.text; format="string"><endif>);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 77 function DupNode(const TreeNode: IANTLRInterface): IANTLRInterface;
79 /// <summary>Duplicate tree recursively, using DupNode() for each node </summary>
484 function DupNode: ITree;
570 function DupNode: ITree;
    [all...]

Completed in 1527 milliseconds

1 2