Home | History | Annotate | Download | only in re2

Lines Matching refs:Prog

7 // Prog::SearchBitState is a regular expression search with submatch
10 // text) * (length of prog) bits, to make sure it never explores the
20 #include "re2/prog.h"
33 explicit BitState(Prog* prog);
49 Prog* prog_; // program being run
71 BitState::BitState(Prog* prog)
72 : prog_(prog),
170 Prog::Inst* ip = prog_->inst(id);
246 if (ip->empty() & ~Prog::EmptyFlags(context_, p))
349 bool Prog::SearchBitState(const StringPiece& text,