Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/
H A DClangTidyCheck.h278 get(StringRef LocalName, bool IgnoreCase = false) const {
280 getEnumInt(LocalName, typeEraseMapping<T>(), false, IgnoreCase))
299 get(StringRef LocalName, T Default, bool IgnoreCase = false) const {
300 return get<T>(LocalName, IgnoreCase).value_or(Default);
318 getLocalOrGlobal(StringRef LocalName, bool IgnoreCase = false) const {
320 getEnumInt(LocalName, typeEraseMapping<T>(), true, IgnoreCase))
341 bool IgnoreCase = false) const {
342 return getLocalOrGlobal<T>(LocalName, IgnoreCase).value_or(Default);
383 bool CheckGlobal, bool IgnoreCase) const;
H A DClangTidyCheck.cpp150 bool IgnoreCase) const { in getEnumInt()
164 if (IgnoreCase) { in getEnumInt()
/llvm-project-15.0.7/llvm/lib/Option/
H A DOptTable.cpp98 OptTable::OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase) in OptTable() argument
99 : OptionInfos(OptionInfos), IgnoreCase(IgnoreCase) { in OptTable()
181 bool IgnoreCase) { in matchOption() argument
186 bool Matched = IgnoreCase ? Rest.startswith_insensitive(I->Name) in matchOption()
357 unsigned ArgSize = matchOption(Start, Str, IgnoreCase); in parseOneArgGrouped()
432 if ((ArgSize = matchOption(Start, Str, IgnoreCase))) in ParseOneArg()
/llvm-project-15.0.7/llvm/include/llvm/Option/
H A DOptTable.h63 bool IgnoreCase; variable
90 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
/llvm-project-15.0.7/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp173 static opt<bool> IgnoreCase("ignore-case", variable
177 aliasopt(IgnoreCase), cl::NotHidden);
348 (IgnoreCase && !UseRegex) ? NameRef.lower() : NameRef.str(); in filterByName()
352 Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags); in filterByName()
571 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); in dumpObjectFile()
/llvm-project-15.0.7/clang/lib/Format/
H A DNamespaceEndCommentsFixer.cpp174 llvm::Regex::IgnoreCase); in validEndComment()
178 llvm::Regex::IgnoreCase); in validEndComment()
210 "^/[/*] *( +([a-zA-Z0-9:_]+))?\\.? *(\\*/)?$", llvm::Regex::IgnoreCase); in validEndComment()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DRegex.h33 IgnoreCase = 1, enumerator
/llvm-project-15.0.7/llvm/unittests/Option/
H A DOptionParsingTest.cpp50 TestOptTable(bool IgnoreCase = false) in TestOptTable() argument
51 : OptTable(InfoTable, IgnoreCase) {} in TestOptTable()
162 TEST(Option, IgnoreCase) { in TEST() argument
/llvm-project-15.0.7/llvm/include/llvm/FileCheck/
H A DFileCheck.h39 bool IgnoreCase = false; member
/llvm-project-15.0.7/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp274 R"query(namedDecl(matchesName("^::[ABC]*$", "IgnoreCase | BasicRegex")))query"; in TEST()
395 R"query(namedDecl(matchesName("[ABC]*", "IgnoreCase & BasicRegex")))query")); in TEST()
402 R"query(namedDecl(matchesName("[ABC]*", "IgnoreCase | Basicregex")))query")); in TEST()
/llvm-project-15.0.7/llvm/utils/FileCheck/
H A DFileCheck.cpp62 static cl::opt<bool> IgnoreCase( variable
804 Req.IgnoreCase = IgnoreCase; in main()
/llvm-project-15.0.7/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp197 : llvm::Regex::IgnoreCase); in IncludeCategoryManager()
262 llvm::Regex::IgnoreCase); in isMainHeader()
/llvm-project-15.0.7/llvm/lib/Support/
H A DRegex.cpp33 if (Flags & IgnoreCase) in Regex()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DNamespaceCommentCheck.cpp29 llvm::Regex::IgnoreCase), in NamespaceCommentCheck()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.cpp119 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DConfigCompile.cpp208 llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase; in compile()
521 static llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase; in compile()
/llvm-project-15.0.7/llvm/lib/FileCheck/
H A DFileCheck.cpp919 IgnoreCase = Req.IgnoreCase; in parsePattern()
1237 IgnoreCase ? Buffer.find_insensitive(FixedStr) : Buffer.find(FixedStr); in match()
1296 if (IgnoreCase) in match()
1297 Flags |= Regex::IgnoreCase; in match()
H A DFileCheckImpl.h681 bool IgnoreCase = false; variable
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp199 bool IgnoreCase = false) const;
2010 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon()
2110 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNodeTest.cpp93 namedDecl(matchesName(":k[^:]*$", llvm::Regex::IgnoreCase)); in TEST_P()