| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/ |
| H A D | ClangTidyCheck.h | 278 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 D | ClangTidyCheck.cpp | 150 bool IgnoreCase) const { in getEnumInt() 164 if (IgnoreCase) { in getEnumInt()
|
| /llvm-project-15.0.7/llvm/lib/Option/ |
| H A D | OptTable.cpp | 98 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 D | OptTable.h | 63 bool IgnoreCase; variable 90 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
|
| /llvm-project-15.0.7/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 173 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 D | NamespaceEndCommentsFixer.cpp | 174 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 D | Regex.h | 33 IgnoreCase = 1, enumerator
|
| /llvm-project-15.0.7/llvm/unittests/Option/ |
| H A D | OptionParsingTest.cpp | 50 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 D | FileCheck.h | 39 bool IgnoreCase = false; member
|
| /llvm-project-15.0.7/clang/unittests/ASTMatchers/Dynamic/ |
| H A D | ParserTest.cpp | 274 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 D | FileCheck.cpp | 62 static cl::opt<bool> IgnoreCase( variable 804 Req.IgnoreCase = IgnoreCase; in main()
|
| /llvm-project-15.0.7/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderIncludes.cpp | 197 : llvm::Regex::IgnoreCase); in IncludeCategoryManager() 262 llvm::Regex::IgnoreCase); in isMainHeader()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | Regex.cpp | 33 if (Flags & IgnoreCase) in Regex()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | NamespaceCommentCheck.cpp | 29 llvm::Regex::IgnoreCase), in NamespaceCommentCheck()
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Marshallers.cpp | 119 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | ConfigCompile.cpp | 208 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 D | FileCheck.cpp | 919 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 D | FileCheckImpl.h | 681 bool IgnoreCase = false; variable
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CStringChecker.cpp | 199 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 D | ASTMatchersNodeTest.cpp | 93 namedDecl(matchesName(":k[^:]*$", llvm::Regex::IgnoreCase)); in TEST_P()
|