Searched defs:NFA (Results  1 – 9 of 9) sorted by relevance
| /external/skia/src/sksl/lex/ | 
| D | NFA.h | 22 struct NFA {  struct 37      * Adds a new state to the NFA, returning its index.  argument 39     int addState(NFAState s) {  in addState()  argument 53     std::vector<NFAState> fStates;  argument 55     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 {  implementation 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 1113 impl<S: StateID> fmt::Debug for NFA<S> {  implementation
  | 
| D | ahocorasick.rs | 1025     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/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()
  |