Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/
H A DGlobList.cpp33 SmallString<128> RegexText("^"); in consumeGlob() local
37 RegexText.push_back('.'); in consumeGlob()
39 RegexText.push_back('\\'); in consumeGlob()
40 RegexText.push_back(C); in consumeGlob()
42 RegexText.push_back('$'); in consumeGlob()
43 return llvm::Regex(RegexText); in consumeGlob()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/tool/
H A DClangTidyMain.cpp421 SmallString<128> RegexText("^"); in verifyChecks() local
425 RegexText.push_back('.'); in verifyChecks()
427 RegexText.push_back('\\'); in verifyChecks()
428 RegexText.push_back(C); in verifyChecks()
430 RegexText.push_back('$'); in verifyChecks()
431 llvm::Regex Glob(RegexText); in verifyChecks()