HomeSort by relevance Sort by last modified time
    Searched refs:Workq (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/re2/re2/
prog.cc 127 typedef SparseSet Workq;
129 static inline void AddToQueue(Workq* q, int id) {
134 static string ProgToString(Prog* prog, Workq* q) {
137 for (Workq::iterator i = q->begin(); i != q->end(); ++i) {
160 Workq q(size_);
166 Workq q(size_);
175 Workq q(size_);
181 for (Workq::iterator i = q.begin(); i != q.end(); ++i) {
212 for (Workq::iterator i = q.begin(); i != q.end(); ++i) {
dfa.cc 91 class Workq;
208 // Looks up and returns the State corresponding to a Workq.
210 State* WorkqToCachedState(Workq* q, uint flag);
220 // Converts a State into a Workq: the opposite of WorkqToCachedState.
222 static void StateToWorkq(State* s, Workq* q);
228 // Runs a Workq on a given byte followed by a set of empty-string flags,
229 // producing a new Workq in nq. If a match instruction is encountered,
232 void RunWorkqOnByte(Workq* q, Workq* nq,
237 // Runs a Workq on a set of empty-string flags, producing a new Workq in nq
    [all...]
nfa.cc 629 typedef SparseSet Workq;
630 Workq q(prog_->size());
632 for (Workq::iterator it = q.begin(); it != q.end(); ++it) {

Completed in 833 milliseconds