Home
last modified time | relevance | path

Searched refs:theBaseTree (Results 1 – 2 of 2) sorted by relevance

/external/antlr/runtime/Cpp/include/
Dantlr3treeparser.inl108 TreeType* theBaseTree = this->get_rec()->get_state()->get_exception()->get_token(); local
109 StringType ttext = theBaseTree->toStringTree();
111 if (theBaseTree != NULL)
113 TreeType* theCommonTree = static_cast<TreeType*>(theBaseTree);
116 CommonTokenType* theToken = theBaseTree->getToken();
119 << theBaseTree->getCharPositionInLine();
/external/antlr/runtime/C/src/
Dantlr3baserecognizer.c1017 pANTLR3_BASE_TREE theBaseTree; in displayRecognitionError() local
1089 theBaseTree = (pANTLR3_BASE_TREE)(recognizer->state->exception->token); in displayRecognitionError()
1090 ttext = theBaseTree->toStringTree(theBaseTree); in displayRecognitionError()
1092 if (theBaseTree != NULL) in displayRecognitionError()
1094 theCommonTree = (pANTLR3_COMMON_TREE) theBaseTree->super; in displayRecognitionError()
1098 theToken = (pANTLR3_COMMON_TOKEN) theBaseTree->getToken(theBaseTree); in displayRecognitionError()
1100 ANTLR3_FPRINTF(stderr, ", at offset %d", theBaseTree->getCharPositionInLine(theBaseTree)); in displayRecognitionError()