Home | History | Annotate | Download | only in testing

Lines Matching refs:Regexp

13 #include "re2/regexp.h"
19 class Regexp;
21 // All the supported regexp engines.
47 // A TestInstance caches per-regexp state for a given
54 TestInstance(const StringPiece& regexp, Prog::MatchKind kind,
55 Regexp::ParseFlags flags);
57 Regexp::ParseFlags flags() { return flags_; }
75 const StringPiece& regexp_str_; // regexp being tested
77 Regexp::ParseFlags flags_; // flags for parsing regexp_str_
80 Regexp* regexp_; // parsed regexp
93 explicit Tester(const StringPiece& regexp);
116 // Run all possible tests using regexp and text.
117 bool TestRegexpOnText(const StringPiece& regexp, const StringPiece& text);