Lines Matching refs:Prog
194 class Prog;
527 // to hold the compiled form of the regexp (the Prog) and
529 // of Prog instructions and DFA states: 10,000 for both.
530 // In RE2, those limits would translate to about 240 KB per Prog
533 // Each RE2 has two Progs (one forward, one reverse), and each Prog
546 // Progs and then the DFAs: two thirds to the forward Prog
547 // and one third to the reverse Prog. The forward Prog gives half
548 // of what it has left over to each of its DFAs. The reverse Prog
702 re2::Prog* ReverseProg() const;
711 re2::Prog* prog_; // compiled program for regexp
712 mutable re2::Prog* rprog_; // reverse program for regexp