Home | History | Annotate | Download | only in re2

Lines Matching refs:re2

1 // Copyright 2010 The RE2 Authors.  All Rights Reserved.
11 #include "re2/re2.h"
13 namespace re2 {
16 // An RE2::Set represents a collection of regexps that can
18 class RE2::Set {
20 Set(const RE2::Options& options, RE2::Anchor anchor);
23 // Add adds regexp pattern to the set, interpreted using the RE2 options.
24 // (The RE2 constructor's default options parameter is RE2::UTF8.)
43 RE2::Options options_;
44 RE2::Anchor anchor_;
45 vector<re2::Regexp*> re_;
46 re2::Prog* prog_;
53 } // namespace re2