Home | History | Annotate | Download | only in src

Lines Matching defs:ttype

54 static void *				match						(pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
56 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
57 static ANTLR3_BOOLEAN mismatchIsUnwantedToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 ttype);
64 static void * recoverFromMismatchedToken (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
405 /// Match current input symbol against ttype. Upon error, do one token
416 ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow)
453 if (is->_LA(is, 1) == ttype)
478 matchedSymbol = recognizer->recoverFromMismatchedToken(recognizer, ttype, follow);
529 mismatchIsUnwantedToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 ttype)
535 if (nextt == ttype)
634 /// differently. Override and call mismatchRecover(input, ttype, follow)
642 mismatch(pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow)
651 recognizer->state->exception->expecting = ttype;
671 if (mismatchIsUnwantedToken(recognizer, is, ttype))
1410 /// ttype then it is ok to "insert" the missing token, else throw
1432 recoverFromMismatchedToken (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow)
1479 if ( recognizer->mismatchIsUnwantedToken(recognizer, is, ttype) == ANTLR3_TRUE)
1530 matchedSymbol = recognizer->getMissingSymbol(recognizer, is, recognizer->state->exception, ttype, follow);
1534 recognizer->state->exception->expecting = ttype;
1718 ANTLR3_UINT32 ttype;
1751 ttype = is->_LA(is, 1);
1755 while (ttype != ANTLR3_TOKEN_EOF && ttype != tokenType)
1758 ttype = is->_LA(is, 1);
1768 ANTLR3_UINT32 ttype;
1801 ttype = is->_LA(is, 1);
1805 while (ttype != ANTLR3_TOKEN_EOF && set->isMember(set, ttype) == ANTLR3_FALSE)
1808 ttype = is->_LA(is, 1);