Home
last modified time | relevance | path

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

/aosp_15_r20/external/libchrome/components/policy/core/common/
H A Dschema.cc272 mutable std::map<std::string, std::unique_ptr<re2::RE2>> regex_cache_; member in policy::Schema::InternalStorage
374 auto it = regex_cache_.find(pattern); in CompileRegex()
375 if (it == regex_cache_.end()) { in CompileRegex()
378 regex_cache_.insert(std::make_pair(pattern, std::move(compiled))); in CompileRegex()