Lines Matching full:paths
17 // input symbols will produce one path through the DFA but multiple paths
56 /// The internal class that maintains all possible paths through an NFA based
79 /// The returned paths. This is populated during getPaths.
80 SmallVector<NfaPath, 4> Paths; variable
123 Paths.clear(); in reset()
140 Paths.clear(); in getPaths()
148 Paths.push_back(std::move(P)); in getPaths()
150 return Paths; in getPaths()
186 /// use of transcription, which analyzes the possible paths in the original
249 /// Obtain a set of possible paths through the input nondeterministic
254 "Can only obtain NFA paths if transcribing!"); in getNfaPaths()