HomeSort by relevance Sort by last modified time
    Searched refs:firstAlt (Results 1 - 3 of 3) sorted by null

  /external/antlr/tool/src/main/java/org/antlr/tool/
GrammarNonDeterminismMessage.java 95 int firstAlt = 0;
101 if ( firstAlt == 0 ) {
102 firstAlt = tracePathAlt;
105 probe.getNFAPathStatesForAlt(firstAlt,
NFAFactory.java 409 NFAState firstAlt = null;
420 if ( firstAlt==null ) {
421 firstAlt = left; // track extreme left node of StateCluster
433 result = new StateCluster(firstAlt, blockEndNFAState);
435 firstAlt.decisionStateType = NFAState.BLOCK_START;
438 firstAlt.endOfBlockStateNumber = blockEndNFAState.stateNumber;
633 NFAState firstAlt = null; // the start state for the "rule"
652 if ( firstAlt==null ) {
653 firstAlt = left; // track extreme top left node as rule start
662 firstAlt.decisionStateType = NFAState.BLOCK_START
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/analysis/
DecisionProbe.java 354 * firstAlt=1.
356 public List<? extends NFAState> getNFAPathStatesForAlt(int firstAlt,
363 for (int a=firstAlt; a<=alt; a++) {
    [all...]

Completed in 127 milliseconds