Home
last modified time | relevance | path

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

/external/skqp/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;
/external/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;
/external/rust/crates/regex-automata/src/nfa/
Dmod.rs18 pub struct NFA { struct
24 /// The starting state of this NFA. argument
35 /// Note that the NFA's transitions are *not* defined in terms of these argument
44 impl NFA { impl
93 impl fmt::Debug for NFA { implementation
Dcompiler.rs85 pub fn build(&self, expr: &Hir) -> Result<NFA> { in build()
107 nfa: &mut NFA, in build_with()
286 fn compile(&self, nfa: &mut NFA, expr: &Hir) -> Result<()> { in compile()
309 fn finish(&self, nfa: &mut NFA) { in finish()
1011 fn build(pattern: &str) -> NFA { in build()
/external/antlr/tool/src/main/java/org/antlr/analysis/
DNFA.java38 public class NFA { class
49 public NFA(Grammar g) { in NFA() method in NFA
/external/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> { impl
217 impl<S: StateID> Automaton for NFA<S> { implementation
1276 impl<S: StateID> fmt::Debug for NFA<S> { implementation
Dahocorasick.rs1037 NFA(NFA<S>), enumerator
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dnfa.cc47 class NFA { class
133 NFA::NFA(Prog* prog) { in NFA() function in re2::NFA
/external/python/cpython3/Parser/pgen/
Dautomata.py3 class NFA: class
/external/one-true-awk/
Db.c79 #define NFA 128 /* cache this many dynamic fa's */ macro
/external/rust/crates/regex-automata/src/
Ddense.rs1947 nfa: &NFA, in build_from_nfa()
1971 pub(crate) fn build_nfa(&self, pattern: &str) -> Result<NFA> { in build_nfa()