Searched refs:dupTree (Results 1 - 25 of 35) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleSubtreeStream.as64 return adaptor.dupTree(el);
H A DTreeAdaptor.as58 function dupTree(tree:Object):Object;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DRewriteRuleSubtreeStream.js36 return this.adaptor.dupTree(el);
H A DBaseTreeAdaptor.js35 dupTree: function(t, parent) {
50 newSubTree = this.dupTree(child, t);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DRewriteRuleSubtreeStream.java86 return adaptor.dupTree(el);
H A DBaseTreeAdaptor.java73 public Object dupTree(Object tree) { method in class:BaseTreeAdaptor
74 return dupTree(tree, null);
81 public Object dupTree(Object t, Object parent) { method in class:BaseTreeAdaptor
92 Object newSubTree = dupTree(child, t);
H A DTreeAdaptor.java60 public Object dupTree(Object tree); method in interface:TreeAdaptor
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DLeftRecursiveRuleAnalyzer.java87 altTree = GrammarAST.dupTree(altTree);
88 rewriteTree = GrammarAST.dupTree(rewriteTree);
114 altTree = GrammarAST.dupTree(altTree);
115 rewriteTree = GrammarAST.dupTree(rewriteTree);
139 altTree = GrammarAST.dupTree(altTree);
140 rewriteTree = GrammarAST.dupTree(rewriteTree);
165 altTree = GrammarAST.dupTree(altTree);
166 rewriteTree = GrammarAST.dupTree(rewriteTree);
181 altTree = GrammarAST.dupTree(altTree);
182 rewriteTree = GrammarAST.dupTree(rewriteTre
[all...]
H A DGrammarAST.java514 public static GrammarAST dupTree(GrammarAST t) { method in class:GrammarAST
522 root.addChild(dupTree(child));
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeAdaptor.h39 - (id)dupTree:(id)aTree; // copies the entire subtree, recursively
114 - (id)dupTree:(id)aTree;
H A DANTLRBaseTreeAdaptor.h63 - (id<ANTLRBaseTree>)dupTree:(id<ANTLRBaseTree>)aTree;
69 - (id<ANTLRBaseTree>)dupTree:(id<ANTLRBaseTree>)aTree Parent:(id<ANTLRBaseTree>)parent;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseTreeAdaptor.h72 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree;
77 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent;
H A DANTLRTreeAdaptor.h43 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; // copies the entire subtree, recursively
117 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBaseTreeAdaptor.h72 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree;
77 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent;
H A DANTLRTreeAdaptor.h43 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; // copies the entire subtree, recursively
117 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBaseTreeAdaptor.h72 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree;
77 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent;
H A DANTLRTreeAdaptor.h43 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree; // copies the entire subtree, recursively
117 - (id<ANTLRTree>)dupTree:(id<ANTLRTree>)aTree;
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3basetree.h95 void * (*dupTree) (struct ANTLR3_BASE_TREE_struct * tree); member in struct:ANTLR3_BASE_TREE_struct
H A Dantlr3basetreeadaptor.h76 void * (*dupTree) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * tree); member in struct:ANTLR3_BASE_TREE_ADAPTOR_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetree.c53 static void * dupTree (pANTLR3_BASE_TREE tree);
67 tree->dupTree = dupTree;
257 dupTree (pANTLR3_BASE_TREE tree) function
278 newNode = t->dupTree(t);
H A Dantlr3basetreeadaptor.c46 static pANTLR3_BASE_TREE dupTree (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t);
102 adaptor->dupTree = (void * (*)(pANTLR3_BASE_TREE_ADAPTOR, void *))
103 dupTree;
123 adaptor->dupTree = (void * (*)(pANTLR3_BASE_TREE_ADAPTOR, void *))
461 dupTree (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t) function
H A Dantlr3rewritestreams.c47 static void * dupTree (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * el);
388 stream->dup = dupTree;
410 stream->dup = dupTree;
433 stream->dup = dupTree;
679 /// around it. For trees, you must call the adaptor.dupTree().
693 /// around it. For trees, you must call the adaptor.dupTree().
696 dupTree (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * element) function
707 /// around it. For trees, you must call the adaptor.dupTree().
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeAdaptor.java76 public Object dupTree(Object tree) { method in class:DebugTreeAdaptor
77 Object t = adaptor.dupTree(tree);
79 // 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/ActionScript/
H A DASTTreeParser.stg165 <label>_tree = (<ASTLabelType>)adaptor.dupTree(<label>);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DASTTreeParser.stg182 <label>_tree = (<ASTLabelType>)ADAPTOR->dupTree(ADAPTOR, <label>);

Completed in 469 milliseconds

12