Home
last modified time | relevance | path

Searched defs:NFA (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/src/sksl/lex/
DNFA.h18 struct NFA { struct
33 * Adds a new state to the NFA, returning its index. argument
35 int addState(NFAState s) { in addState() argument
49 std::vector<NFAState> fStates; argument
51 std::vector<int> fStartStates;
/third_party/rust/crates/aho-corasick/src/
Dnfa.rs47 pub struct NFA<S> { struct
59 /// The number of bytes of heap used by this NFA's transition table. argument
66 /// building the NFA, but don't use it in the NFA's states. Instead, we argument
74 /// sentinel. Namely, in the final NFA, no transition into the fail state argument
90 impl<S: StateID> NFA<S> { implementation
217 impl<S: StateID> Automaton for NFA<S> { implementation
1113 impl<S: StateID> fmt::Debug for NFA<S> { implementation
Dahocorasick.rs1025 NFA(NFA<S>), enumerator