Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DGrammar.java1179 DFA lookaheadDFA = new LL1DFA(decision, decisionStartState, altLook); in createLL_1_LookaheadDFA() local
1180 setLookaheadDFA(decision, lookaheadDFA); in createLL_1_LookaheadDFA()
1181 updateLineColumnToLookaheadDFAMap(lookaheadDFA); in createLL_1_LookaheadDFA()
1182 return lookaheadDFA; in createLL_1_LookaheadDFA()
1229 DFA lookaheadDFA = new LL1DFA(decision, decisionStartState, edgeMap); in createLL_1_LookaheadDFA() local
1230 setLookaheadDFA(decision, lookaheadDFA); in createLL_1_LookaheadDFA()
1233 updateLineColumnToLookaheadDFAMap(lookaheadDFA); in createLL_1_LookaheadDFA()
1235 return lookaheadDFA; in createLL_1_LookaheadDFA()
1238 private void updateLineColumnToLookaheadDFAMap(DFA lookaheadDFA) { in updateLineColumnToLookaheadDFAMap() argument
1239 GrammarAST decisionAST = nfa.grammar.getDecisionBlockAST(lookaheadDFA.decisionNumber); in updateLineColumnToLookaheadDFAMap()
[all …]
DGrammarAST.java70 public DFA lookaheadDFA = null; field in GrammarAST
180 return lookaheadDFA; in getLookaheadDFA()
183 public void setLookaheadDFA(DFA lookaheadDFA) { in setLookaheadDFA() argument
184 this.lookaheadDFA = lookaheadDFA; in setLookaheadDFA()