Searched defs:NFA (Results 1 – 11 of 11) sorted by relevance
/external/skqp/src/sksl/lex/ |
D | NFA.h | 18 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/ |
D | NFA.h | 18 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/ |
D | mod.rs | 18 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 { argument 93 impl fmt::Debug for NFA { implementation
|
D | compiler.rs | 85 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/ |
D | NFA.java | 38 public class NFA { class 49 public NFA(Grammar g) { in NFA() method in NFA
|
/external/rust/crates/aho-corasick/src/ |
D | nfa.rs | 47 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 1276 impl<S: StateID> fmt::Debug for NFA<S> { implementation
|
D | ahocorasick.rs | 1037 NFA(NFA<S>), enumerator
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | nfa.cc | 47 class NFA { class 133 NFA::NFA(Prog* prog) { in NFA() function in re2::NFA
|
/external/python/cpython3/Parser/pgen/ |
D | automata.py | 3 class NFA: class
|
/external/one-true-awk/ |
D | b.c | 79 #define NFA 128 /* cache this many dynamic fa's */ macro
|
/external/rust/crates/regex-automata/src/ |
D | dense.rs | 1947 nfa: &NFA, in build_from_nfa() 1971 pub(crate) fn build_nfa(&self, pattern: &str) -> Result<NFA> { in build_nfa()
|