Home
last modified time | relevance | path

Searched refs:theTree (Results 1 – 10 of 10) sorted by relevance

/external/antlr/runtime/ObjC/Framework/
DCommonTreeNodeStream.h65 + (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;
DCommonTreeNodeStream.m45 + (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];
DUnbufferedCommonTreeNodeStream.h74 - (id) initWithTree:(CommonTree *)theTree;
75 - (id) initWithTree:(CommonTree *)theTree treeAdaptor:(CommonTreeAdaptor *)theAdaptor;
DTreeNodeStream.h37 - (id) initWithTree:(CommonTree *)theTree;
DUnbufferedCommonTreeNodeStream.m51 - (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/
Dantlr3commontree.c444 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()
Dantlr3basetreeadaptor.c73 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/
Dantlr3commontreeadaptor.inl389 …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);
Dantlr3commontreeadaptor.hpp98 StringType makeDot( TreeType* theTree);
/external/antlr/runtime/C/include/
Dantlr3basetreeadaptor.h133 pANTLR3_STRING (*makeDot) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * theTree);