HomeSort by relevance Sort by last modified time
    Searched refs:NFA (Results 26 - 45 of 45) sorted by null

12

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
NFAFactory.java 43 * will help with speed of conversion and make it easier to view NFA. For
47 /** This factory is attached to a specifc NFA that it is building.
48 * The NFA will be filled up with states and transitions.
50 NFA nfa = null; field in class:NFAFactory
62 public NFAFactory(NFA nfa) {
63 nfa.setFactory(this);
64 this.nfa = nfa;
    [all...]
Grammar.java 293 /** The NFA that represents the grammar with edges labelled with tokens
296 public NFA nfa; field in class:Grammar
463 * do the LL(*) work; NFA->DFA conversion.
479 * Computed during NFA to DFA conversion.
484 * Computed during NFA to DFA conversion. Just walk accept states
    [all...]
  /external/one-true-awk/
b.c 75 #define NFA 20 /* cache this many dynamic fa's */
76 fa *fatab[NFA];
102 if (nfatab < NFA) { /* room for another */
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
TreeToNFAConverter.g 33 /** Build an NFA from a tree representing an ANTLR grammar. */
56 /** Which NFA object are we filling in? */
57 protected NFA nfa = null;
59 /** Which grammar are we converting an NFA for? */
69 public TreeToNFAConverter(TreeNodeStream input, Grammar g, NFA nfa, NFAFactory factory) {
72 this.nfa = nfa;
77 TreeToNFAConverter other = new TreeToNFAConverter( new CommonTreeNodeStream( t ), grammar, nfa, factory )
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_bc_fmt_def.inc 422 BC_FIELD(VTX_WORD1_GPR, NUM_FORMAT_ALL, NFA, 29, 28)
436 BC_FIELD(VTX_WORD1_SEM, NUM_FORMAT_ALL, NFA, 29, 28)
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
dlg_p.g 46 int nfa_allocated = 0; /* keeps track of number of nfa nodes */
47 nfa_node **nfa_array = NULL;/* root of binary tree that stores nfa array */
449 /* adds a new nfa to the binary tree and returns a pointer to it */
492 nfa_model_node.node_no = -1; /* impossible value for real nfa node */
564 t = NFA(i);
dlg_p.c 43 int nfa_allocated = 0; /* keeps track of number of nfa nodes */
44 nfa_node **nfa_array = NULL;/* root of binary tree that stores nfa array */
799 /* adds a new nfa to the binary tree and returns a pointer to it */
842 nfa_model_node.node_no = -1; /* impossible value for real nfa node */
912 t = NFA(i);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAToDFAConverter.java 37 /** Code that embodies the NFA conversion to DFA. A new object is needed
42 /** A list of DFA states we still need to process during NFA conversion */
45 /** While converting NFA, we must track states that
48 * this rule so we can know where to continue looking for NFA
84 !dfa.nfa.grammar.NFAToDFAConversionExternallyAborted() )
87 if ( dfa.nfa.grammar.composite.watchNFAConversion ) {
89 " ("+d.nfaConfigurations.size()+" nfa states)");
121 /** From this first NFA state of a decision, create a DFA.
129 * If this DFA is derived from an loop back NFA state, then the first
146 // find the set of NFA states reachable without consumin
    [all...]
DFA.java 40 /** A DFA (converted from a grammar's NFA).
132 /** Each alt in an NFA derived from a grammar must have a DFA state that
149 * NFA to DFA conversion; >1 alt with recursion implies nonregular.
153 /** Which NFA are we converting (well, which piece of the NFA)? */
154 public NFA nfa; field in class:DFA
229 nfa = decisionStartState.nfa;
230 nAlts = nfa.grammar.getNumberOfAltsForDecisionNFA(decisionStartState)
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/
backtrack.go 12 // backtrack is a fast replacement for the NFA code on small
exec.go 36 // A machine holds all the state during an NFA simulation for p.
onepass.go 17 // without bothering to save all the usual NFA state.
  /prebuilts/go/linux-x86/src/regexp/
backtrack.go 12 // backtrack is a fast replacement for the NFA code on small
exec.go 36 // A machine holds all the state during an NFA simulation for p.
onepass.go 17 // without bothering to save all the usual NFA state.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CodeGenerator.java 288 // CREATE NFA FROM GRAMMAR, CREATE DFA FROM NFA
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 1128 milliseconds

12