Searched defs:dupTree (Results 1 - 14 of 14) sorted by relevance

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.as44 public function dupTree(tree:Object):Object { function
/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/runtime/Java/src/main/java/org/antlr/runtime/tree/
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/runtime/Python/antlr3/
H A Ddebug.py248 def dupTree(self, tree): member in class:DebugTreeAdaptor
249 t = self.adaptor.dupTree(tree)
251 # to simulate what dupTree has done. dupTree does not call this debug
H A Dtree.py306 def dupTree(self, tree): member in class:TreeAdaptor
993 def dupTree(self, t, parent=None): member in class:BaseTreeAdaptor
1014 newSubTree = self.dupTree(child, t)
2700 around it. For trees, you must call the adaptor.dupTree() unless
2801 return self.adaptor.dupTree(el)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarAST.java514 public static GrammarAST dupTree(GrammarAST t) { method in class:GrammarAST
522 root.addChild(dupTree(child));
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 2184 milliseconds