Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DIdentifierNamingCheck.cpp128 const std::string &IgnoredRegexpStr) in NamingStyle() argument
130 IgnoredRegexpStr(IgnoredRegexpStr) { in NamingStyle()
131 if (!IgnoredRegexpStr.empty()) { in NamingStyle()
133 llvm::Regex(llvm::SmallString<128>({"^", IgnoredRegexpStr, "$"})); in NamingStyle()
136 << IgnoredRegexpStr; in NamingStyle()
149 std::string IgnoredRegexpStr = Options.get(StyleString, ""); in getFileStyleFromOptions() local
163 !IgnoredRegexpStr.empty()) in getFileStyleFromOptions()
165 std::move(Postfix), std::move(IgnoredRegexpStr)); in getFileStyleFromOptions()
198 Options.store(Opts, StyleString, Styles[I]->IgnoredRegexpStr); in storeOptions()
DIdentifierNamingCheck.h55 const std::string &Suffix, const std::string &IgnoredRegexpStr);
66 std::string IgnoredRegexpStr; member