Home
last modified time | relevance | path

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

/external/antlr/runtime/C/src/
Dantlr3baserecognizer.c950 pANTLR3_BITSET localFollowSet; in combineFollows() local
957 localFollowSet = NULL; in combineFollows()
961localFollowSet = 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()
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js592 localFollowSet,
595 localFollowSet = this.state.following[i];
596 followSet.orInPlace(localFollowSet);
599 if ( localFollowSet.member(org.antlr.runtime.Token.EOR_TOKEN_TYPE) )
/external/antlr/runtime/Cpp/include/
Dantlr3baserecognizer.inl370 BitsetType* localFollowSet; local
377 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;
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java536 BitSet localFollowSet = state.following[i]; in combineFollows() local
541 followSet.orInPlace(localFollowSet); in combineFollows()
544 if ( localFollowSet.member(Token.EOR_TOKEN_TYPE) ) { in combineFollows()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBaseRecognizer.cs565 BitSet localFollowSet = (BitSet)state.following[i]; in CombineFollows()
570 followSet.OrInPlace(localFollowSet); in CombineFollows()
573 if (localFollowSet.Member(TokenTypes.EndOfRule)) { in CombineFollows()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DBaseRecognizer.cs641 BitSet localFollowSet = (BitSet)state.following[i]; in CombineFollows()
646 followSet.OrInPlace( localFollowSet ); in CombineFollows()
650 if ( localFollowSet.Member( TokenTypes.EndOfRule ) ) in CombineFollows()
/external/antlr/runtime/Python/antlr3/
Drecognizers.py651 for idx, localFollowSet in reversed(list(enumerate(self._state.following))):
652 followSet |= localFollowSet
655 if EOR_TOKEN_TYPE in localFollowSet:
/external/antlr/runtime/Python3/antlr3/
Drecognizers.py643 for idx, localFollowSet in reversed(list(enumerate(self._state.following))):
644 followSet |= localFollowSet
647 if EOR_TOKEN_TYPE in localFollowSet:
/external/antlr/runtime/ObjC/Framework/
DBaseRecognizer.m680 ANTLRBitSet *localFollowSet = (ANTLRBitSet *)[state.following objectAtIndex:i];
683 localFollowSet.toString(getTokenNames())+")");
685 [followSet orInPlace:localFollowSet];
688 if ( [localFollowSet member:TokenTypeEOR] ) {
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DBaseRecognizer.as508 var localFollowSet:BitSet = state.following[i];
509 followSet.orInPlace(localFollowSet);
512 if ( localFollowSet.member(TokenConstants.EOR_TOKEN_TYPE) ) {