OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dupTree
(Results
1 - 16
of
16
) sorted by null
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as
44
public function
dupTree
(tree:Object):Object {
/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);
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
().
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)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeAdaptor.java
60
public Object
dupTree
(Object tree);
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);
/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/runtime/Python/antlr3/
debug.py
248
def
dupTree
(self, tree):
249
t = self.adaptor.
dupTree
(tree)
251
# to simulate what
dupTree
has done.
dupTree
does not call this debug
[
all
...]
tree.py
306
def
dupTree
(self, tree):
993
def
dupTree
(self, t, parent=None):
1014
newSubTree = self.
dupTree
(child, t)
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarAST.java
514
public static GrammarAST
dupTree
(GrammarAST t) {
522
root.addChild(
dupTree
(child));
/cts/tools/signature-tools/lib/
antlr-2.7.7.jar
/external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar
/prebuilts/misc/common/antlr/
antlr-3.4-complete.jar
/prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar
Completed in 255 milliseconds