OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dupNode
(Results
26 - 50
of
71
) sorted by null
1
2
3
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ASTTreeParser.stg
131
<label>_tree = self._adaptor.
dupNode
(<label>)
158
<label>_tree = self._adaptor.
dupNode
(<label>)
197
<label>_tree = self._adaptor.
dupNode
(<label>)
222
<label>_tree = self._adaptor.
dupNode
(<label>)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeAdaptor.java
57
public Object
dupNode
(Object treeNode);
59
/** Duplicate tree recursively, using
dupNode
() for each node */
CommonTree.java
70
public Tree
dupNode
() {
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTreeAdaptor.h
40
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)t;
ANTLRTreeAdaptor.h
42
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)aNode; // copies just the node
116
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)aNode;
ANTLRCommonTree.h
70
- (id<ANTLRTree>)
dupNode
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTreeAdaptor.h
40
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)t;
ANTLRTreeAdaptor.h
42
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)aNode; // copies just the node
116
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)aNode;
ANTLRCommonTree.h
70
- (id<ANTLRTree>)
dupNode
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTreeAdaptor.h
40
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)t;
ANTLRTreeAdaptor.h
42
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)aNode; // copies just the node
116
- (id<ANTLRTree>)
dupNode
:(id<ANTLRTree>)aNode;
ANTLRCommonTree.h
70
- (id<ANTLRTree>)
dupNode
;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTree.h
58
- (ANTLRCommonToken *)
dupNode
;
ANTLRCommonTreeAdaptor.h
40
- (ANTLRCommonTree *)
dupNode
:(ANTLRCommonTree *)t;
/external/antlr/antlr-3.4/runtime/C/src/
antlr3commontreeadaptor.c
46
static pANTLR3_BASE_TREE
dupNode
(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE treeNode);
104
cta->baseAdaptor.
dupNode
= (void * (*) (pANTLR3_BASE_TREE_ADAPTOR, void *))
105
dupNode
;
253
dupNode
(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE treeNode)
255
return treeNode == NULL ? NULL : treeNode->
dupNode
(treeNode);
antlr3commontree.c
42
static pANTLR3_BASE_TREE
dupNode
(pANTLR3_BASE_TREE tree);
305
tree->baseTree.
dupNode
= (void *(*)(pANTLR3_BASE_TREE))(
dupNode
);
393
dupNode
(pANTLR3_BASE_TREE tree)
antlr3treeparser.c
235
node = current->
dupNode
(current);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTree.as
72
public override function
dupNode
():Tree {
TreeAdaptor.as
55
function
dupNode
(treeNode:Object):Object;
57
/** Duplicate tree recursively, using
dupNode
() for each node */
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js
39
dupNode
: function() {
RewriteRuleSubtreeStream.js
28
return this.adaptor.
dupNode
(el);
BaseTreeAdaptor.js
42
var newTree = this.
dupNode
(t);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeAdaptor.java
96
public Object
dupNode
(Object treeNode) {
97
Object d = adaptor.
dupNode
(treeNode);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTTreeParser.stg
168
<label>_tree = (<ASTLabelType> *)[treeAdaptor
dupNode
:<label>];
195
<label>_tree = (<ASTLabelType> *)[treeAdaptor
dupNode
:<label>];
236
<label>_tree = (<ASTLabelType> *)[adaptor
dupNode
:<label>];
265
<label>_tree = (<ASTLabelType> *)[adaptor
dupNode
:<label>];
/external/antlr/antlr-3.4/runtime/C/include/
antlr3basetreeadaptor.h
98
void * (*
dupNode
) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * treeNode);
Completed in 644 milliseconds
1
2
3