OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dupTree
(Results
1 - 25
of
38
) sorted by null
1
2
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.as
64
return adaptor.
dupTree
(el);
TreeAdaptor.as
58
function
dupTree
(tree:Object):Object;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.java
86
return adaptor.
dupTree
(el);
BaseTreeAdaptor.java
73
public Object
dupTree
(Object tree) {
74
return
dupTree
(tree, null);
81
public Object
dupTree
(Object t, Object parent) {
92
Object newSubTree =
dupTree
(child, t);
TreeAdaptor.java
60
public Object
dupTree
(Object tree);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursiveRuleAnalyzer.java
87
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
(rewriteTree)
[
all
...]
GrammarAST.java
514
public static GrammarAST
dupTree
(GrammarAST t) {
522
root.addChild(
dupTree
(child));
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeAdaptor.h
39
- (id)
dupTree
:(id)aTree; // copies the entire subtree, recursively
114
- (id)
dupTree
:(id)aTree;
ANTLRBaseTreeAdaptor.h
63
- (id<ANTLRBaseTree>)
dupTree
:(id<ANTLRBaseTree>)aTree;
69
- (id<ANTLRBaseTree>)
dupTree
:(id<ANTLRBaseTree>)aTree Parent:(id<ANTLRBaseTree>)parent;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTreeAdaptor.js
35
dupTree
: function(t, parent) {
50
newSubTree = this.
dupTree
(child, t);
RewriteRuleSubtreeStream.js
36
return this.adaptor.
dupTree
(el);
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseTreeAdaptor.h
72
- (id<ANTLRTree>)
dupTree
:(id<ANTLRTree>)aTree;
77
- (id<ANTLRTree>)
dupTree
:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent;
ANTLRTreeAdaptor.h
43
- (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/
ANTLRBaseTreeAdaptor.h
72
- (id<ANTLRTree>)
dupTree
:(id<ANTLRTree>)aTree;
77
- (id<ANTLRTree>)
dupTree
:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent;
ANTLRTreeAdaptor.h
43
- (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/
ANTLRBaseTreeAdaptor.h
72
- (id<ANTLRTree>)
dupTree
:(id<ANTLRTree>)aTree;
77
- (id<ANTLRTree>)
dupTree
:(id<ANTLRTree>)aTree Parent:(id<ANTLRTree>)parent;
ANTLRTreeAdaptor.h
43
- (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/
antlr3basetree.h
95
void * (*
dupTree
) (struct ANTLR3_BASE_TREE_struct * tree);
antlr3basetreeadaptor.h
76
void * (*
dupTree
) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * tree);
/external/antlr/antlr-3.4/runtime/C/src/
antlr3basetree.c
53
static void *
dupTree
(pANTLR3_BASE_TREE tree);
67
tree->
dupTree
=
dupTree
;
257
dupTree
(pANTLR3_BASE_TREE tree)
278
newNode = t->
dupTree
(t);
antlr3basetreeadaptor.c
46
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)
antlr3rewritestreams.c
47
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)
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/
DebugTreeAdaptor.java
76
public Object
dupTree
(Object tree) {
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/
ASTTreeParser.stg
165
<label>_tree = (<ASTLabelType>)adaptor.
dupTree
(<label>);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
ASTTreeParser.stg
182
<label>_tree = (<ASTLabelType>)ADAPTOR->
dupTree
(ADAPTOR, <label>);
Completed in 731 milliseconds
1
2