Home
last modified time | relevance | path

Searched refs:named_groups_ (Results 1 – 2 of 2) sorted by relevance

/external/regex-re2/re2/
Dre2.cc183 named_groups_ = NULL; in Init()
258 if (named_groups_ != NULL && named_groups_ != empty_named_groups) in ~RE2()
259 delete named_groups_; in ~RE2()
275 if (named_groups_ == NULL) { in NamedCapturingGroups()
276 named_groups_ = suffix_regexp_->NamedCaptures(); in NamedCapturingGroups()
277 if (named_groups_ == NULL) in NamedCapturingGroups()
278 named_groups_ = empty_named_groups; in NamedCapturingGroups()
280 return *named_groups_; in NamedCapturingGroups()
Dre2.h721 mutable const map<string, int>* named_groups_; variable