Home
last modified time | relevance | path

Searched refs:NFAContext (Results 1 – 5 of 5) sorted by relevance

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DNFAContext.java46 public class NFAContext { class
101 public NFAContext parent;
119 public NFAContext(NFAContext parent, NFAState invokingState) { in NFAContext() method in NFAContext
139 NFAContext other = ((NFAContext)o); in equals()
147 NFAContext sp = this; in equals()
183 public boolean conflictsWith(NFAContext other) { in conflictsWith()
207 protected boolean suffix(NFAContext other) { in suffix()
208 NFAContext sp = this; in suffix()
250 NFAContext sp = this; in recursionDepthEmanatingFromState()
284 NFAContext sp = this; in toString()
DNFAConfiguration.java46 public NFAContext context;
91 NFAContext context, in NFAConfiguration()
DNFAToDFAConverter.java52 protected NFAContext[] contextTrees;
150 NFAContext initialContext = contextTrees[i]; in computeStartState()
593 NFAContext context, in closure()
656 if ( depth >= NFAContext.MAX_SAME_RULE_INVOCATIONS_PER_NFA_CONFIG_STACK ) { in closure()
677 NFAContext newContext = new NFAContext(context, p); in closure()
690 NFAContext newContext = context.parent; // "pop" invoking state in closure()
1709 contextTrees = new NFAContext[numberOfAlts]; in initContextTrees()
1716 contextTrees[i] = new NFAContext(null, null); in initContextTrees()
DDFAState.java261 NFAContext context, in addNFAConfiguration()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/
DTool.java309NFAContext.MAX_SAME_RULE_INVOCATIONS_PER_NFA_CONFIG_STACK = Integer.parseInt(args[i]); in processArgs()
761 … max number of rule invocations during conversion [" + NFAContext.MAX_SAME_RULE_IN… in Xhelp()