Searched refs:localFollowSet (Results 1 – 10 of 10) sorted by relevance
950 pANTLR3_BITSET localFollowSet; in combineFollows() local957 localFollowSet = NULL; in combineFollows()961 …localFollowSet = antlr3BitsetLoad((pANTLR3_BITSET_LIST) recognizer->state->following->get(recogniz… in combineFollows()963 if (localFollowSet != NULL) in combineFollows()965 followSet->borInPlace(followSet, localFollowSet); in combineFollows()969 if (localFollowSet->isMember(localFollowSet, ANTLR3_EOR_TOKEN_TYPE) == ANTLR3_FALSE) in combineFollows()984 localFollowSet->free(localFollowSet); in combineFollows()985 localFollowSet = NULL; in combineFollows()989 if (localFollowSet != NULL) in combineFollows()991 localFollowSet->free(localFollowSet); in combineFollows()
592 localFollowSet,595 localFollowSet = this.state.following[i];596 followSet.orInPlace(localFollowSet);599 if ( localFollowSet.member(org.antlr.runtime.Token.EOR_TOKEN_TYPE) )
370 BitsetType* localFollowSet; local377 localFollowSet = NULL;381 localFollowSet = m_state->get_following().at(i-1).bitsetLoad();383 if (localFollowSet != NULL)385 followSet->borInPlace(localFollowSet);389 if (localFollowSet->isMember( ImplTraits::CommonTokenType::EOR_TOKEN_TYPE) == false)404 delete localFollowSet;405 localFollowSet = NULL;409 if (localFollowSet != NULL)411 delete localFollowSet;
536 BitSet localFollowSet = state.following[i]; in combineFollows() local541 followSet.orInPlace(localFollowSet); in combineFollows()544 if ( localFollowSet.member(Token.EOR_TOKEN_TYPE) ) { in combineFollows()
565 BitSet localFollowSet = (BitSet)state.following[i]; in CombineFollows()570 followSet.OrInPlace(localFollowSet); in CombineFollows()573 if (localFollowSet.Member(TokenTypes.EndOfRule)) { in CombineFollows()
641 BitSet localFollowSet = (BitSet)state.following[i]; in CombineFollows()646 followSet.OrInPlace( localFollowSet ); in CombineFollows()650 if ( localFollowSet.Member( TokenTypes.EndOfRule ) ) in CombineFollows()
651 for idx, localFollowSet in reversed(list(enumerate(self._state.following))):652 followSet |= localFollowSet655 if EOR_TOKEN_TYPE in localFollowSet:
643 for idx, localFollowSet in reversed(list(enumerate(self._state.following))):644 followSet |= localFollowSet647 if EOR_TOKEN_TYPE in localFollowSet:
680 ANTLRBitSet *localFollowSet = (ANTLRBitSet *)[state.following objectAtIndex:i];683 localFollowSet.toString(getTokenNames())+")");685 [followSet orInPlace:localFollowSet];688 if ( [localFollowSet member:TokenTypeEOR] ) {
508 var localFollowSet:BitSet = state.following[i];509 followSet.orInPlace(localFollowSet);512 if ( localFollowSet.member(TokenConstants.EOR_TOKEN_TYPE) ) {