Searched refs:theTree (Results 1 – 10 of 10) sorted by relevance
/external/antlr/runtime/ObjC/Framework/ |
D | CommonTreeNodeStream.h | 65 + (CommonTreeNodeStream *) newCommonTreeNodeStream:(CommonTree *)theTree; 66 …monTreeNodeStream *) newCommonTreeNodeStream:(id<TreeAdaptor>)anAdaptor Tree:(CommonTree *)theTree; 68 - (id) initWithTree:(CommonTree *)theTree; 70 - (id) initWithTreeAdaptor:(id<TreeAdaptor>)adaptor Tree:(CommonTree *)theTree;
|
D | CommonTreeNodeStream.m | 45 + (CommonTreeNodeStream *) newCommonTreeNodeStream:(CommonTree *)theTree 47 return [[CommonTreeNodeStream alloc] initWithTree:theTree]; 50 …mmonTreeNodeStream *) newCommonTreeNodeStream:(id<TreeAdaptor>)anAdaptor Tree:(CommonTree *)theTree 52 return [[CommonTreeNodeStream alloc] initWithTreeAdaptor:anAdaptor Tree:theTree]; 55 - (id) initWithTree:(CommonTree *)theTree 59 root = [theTree retain]; 70 - (id) initWithTreeAdaptor:(id<TreeAdaptor>)anAdaptor Tree:(CommonTree *)theTree 74 root = [theTree retain];
|
D | UnbufferedCommonTreeNodeStream.h | 74 - (id) initWithTree:(CommonTree *)theTree; 75 - (id) initWithTree:(CommonTree *)theTree treeAdaptor:(CommonTreeAdaptor *)theAdaptor;
|
D | TreeNodeStream.h | 37 - (id) initWithTree:(CommonTree *)theTree;
|
D | UnbufferedCommonTreeNodeStream.m | 51 - (id) initWithTree:(CommonTree *)theTree 53 return [self initWithTree:theTree treeAdaptor:nil]; 56 - (id) initWithTree:(CommonTree *)theTree treeAdaptor:(CommonTreeAdaptor *)theAdaptor 59 [self setRoot:theTree];
|
/external/antlr/runtime/C/src/ |
D | antlr3commontree.c | 444 pANTLR3_COMMON_TREE theTree; in getType() local 446 theTree = (pANTLR3_COMMON_TREE)(tree->super); in getType() 448 if (theTree->token == NULL) in getType() 454 return theTree->token->getType(theTree->token); in getType()
|
D | antlr3basetreeadaptor.c | 73 static pANTLR3_STRING makeDot (pANTLR3_BASE_TREE_ADAPTOR adaptor, void * theTree); 359 makeDot (pANTLR3_BASE_TREE_ADAPTOR adaptor, void * theTree) in makeDot() argument 384 if (theTree == NULL) in makeDot() 392 sprintf(buff, "\tn%p[label=\"", theTree); in makeDot() 394 text = adaptor->getText(adaptor, theTree); in makeDot() 424 defineDotNodes(adaptor, theTree, dotSpec); in makeDot() 426 defineDotEdges(adaptor, theTree, dotSpec); in makeDot()
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3commontreeadaptor.inl | 389 …mmonTreeAdaptor<ImplTraits>::StringType CommonTreeAdaptor<ImplTraits>::makeDot( TreeType* theTree) argument 404 if (theTree == NULL) 412 sprintf(buff, "\tn%p[label=\"", theTree); 414 text = this->getText(theTree); 440 this->defineDotNodes(theTree, dotSpec); 442 this->defineDotEdges(theTree, dotSpec);
|
D | antlr3commontreeadaptor.hpp | 98 StringType makeDot( TreeType* theTree);
|
/external/antlr/runtime/C/include/ |
D | antlr3basetreeadaptor.h | 133 pANTLR3_STRING (*makeDot) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * theTree);
|