Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DIdentifierNamingCheck.cpp233 const std::string &IgnoredRegexpStr, HungarianPrefixType HPType) in NamingStyle() argument
235 IgnoredRegexpStr(IgnoredRegexpStr), HPType(HPType) { in NamingStyle()
236 if (!IgnoredRegexpStr.empty()) { in NamingStyle()
238 llvm::Regex(llvm::SmallString<128>({"^", IgnoredRegexpStr, "$"})); in NamingStyle()
241 << IgnoredRegexpStr; in NamingStyle()
266 StringRef IgnoredRegexpStr = Options.get(StyleString, ""); in getFileStyleFromOptions() local
279 !IgnoredRegexpStr.empty() || HPTOpt) in getFileStyleFromOptions()
281 std::move(Postfix), IgnoredRegexpStr.str(), in getFileStyleFromOptions()
816 Options.store(Opts, StyleString, Styles[I]->IgnoredRegexpStr); in storeOptions()
H A DIdentifierNamingCheck.h73 const std::string &Suffix, const std::string &IgnoredRegexpStr,
85 std::string IgnoredRegexpStr; member