/llvm-project/clang-tools-extra/clang-tidy/ |
H A D | ClangTidyCheck.h |
|
H A D | ClangTidyCheck.cpp |
|
/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVOptions.cpp | 409 bool IgnoreCase, bool UseRegex) { in createMatchEntry() argument 415 Match.RE = std::make_shared<Regex>(Pattern, IgnoreCase ? Regex::IgnoreCase in createMatchEntry() 432 Match.Mode = IgnoreCase ? LVMatchMode::NoCase : LVMatchMode::Match; in createMatchEntry() 457 bool IgnoreCase = options().getSelectIgnoreCase(); in addPatterns() local 461 if (Error Err = createMatchEntry(Filters, Pattern, IgnoreCase, UseRegex)) in addPatterns()
|
/llvm-project/llvm/include/llvm/Option/ |
H A D | OptTable.h | 135 bool IgnoreCase; 170 ArrayRef<Info> OptionInfos, bool IgnoreCase = false); in getOptionHelpText() 430 ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 439 bool IgnoreCase = false) 440 : OptTable(StrTable, PrefixesTable, OptionInfos, IgnoreCase) { 92 bool IgnoreCase; global() variable 372 OptTable(OptionInfos,IgnoreCase) OptTable() argument
|
/llvm-project/llvm/lib/Option/ |
H A D | OptTable.cpp | 82 ArrayRef<Info> OptionInfos, bool IgnoreCase) 84 OptionInfos(OptionInfos), IgnoreCase(IgnoreCase) { 159 bool IgnoreCase) { 165 bool Matched = IgnoreCase ? Rest.starts_with_insensitive(Name) in matchOption() 371 matchOption(*StrTable, PrefixesTable, Start, Str, IgnoreCase); in parseOneArgGrouped() 469 matchOption(*StrTable, PrefixesTable, Start, Str, IgnoreCase))) in internalParseOneArg() 794 ArrayRef<Info> OptionInfos, bool IgnoreCase) 795 : OptTable(StrTable, PrefixesTable, OptionInfos, IgnoreCase) { 88 OptTable(ArrayRef<Info> OptionInfos,bool IgnoreCase) OptTable() argument 162 matchOption(const OptTable::Info * I,StringRef Str,bool IgnoreCase) matchOption() argument 782 GenericOptTable(ArrayRef<Info> OptionInfos,bool IgnoreCase) GenericOptTable() argument
|
/llvm-project/llvm/unittests/Option/ |
H A D | OptionParsingTest.cpp | 63 TestOptTable(bool IgnoreCase = false) 65 IgnoreCase) {} 70 TestPrecomputedOptTable(bool IgnoreCase = false) 72 OptionPrefixesUnion, IgnoreCase) {} in TestPrecomputedOptTable() argument 232 TYPED_TEST(OptTableTest, IgnoreCase) { 66 TestOptTable(bool IgnoreCase=false) TestOptTable() argument 233 TYPED_TEST(OptTableTest,IgnoreCase) TYPED_TEST() argument
|
/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
H A D | Options.cpp | 272 cl::location(ReaderOptions.Select.IgnoreCase), 465 auto UpdatePattern = [&](auto &List, auto &Set, bool IgnoreCase, in propagateOptions() 469 Set.insert((IgnoreCase && !UseRegex) ? StringRef(Pattern).lower() in propagateOptions() 475 ReaderOptions.Select.IgnoreCase, ReaderOptions.Select.UseRegex); in propagateOptions()
|
/llvm-project/llvm/tools/llvm-dwarfdump/ |
H A D | llvm-dwarfdump.cpp | 189 static opt<bool> IgnoreCase("ignore-case", variable 200 aliasopt(IgnoreCase), cl::NotHidden); 403 (IgnoreCase && !UseRegex) ? NameRef.lower() : NameRef.str(); in filterByName() 407 Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags); in filterByName() 703 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); in dumpObjectFile()
|
/llvm-project/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()
|
H A D | FormatTokenLexer.cpp | 1256 static const llvm::Regex NumberBase("^s?[bdho]", llvm::Regex::IgnoreCase); in getNextToken()
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | Regex.h | 33 IgnoreCase = 1, enumerator
|
/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVOptions.h | 235 bool IgnoreCase = false; // --select-ignore-case 413 BOOL_FUNCTION(Select, IgnoreCase); 548 bool IgnoreCase, bool UseRegex);
|
/llvm-project/llvm/include/llvm/FileCheck/ |
H A D | FileCheck.h | 39 bool IgnoreCase = false; member
|
/llvm-project/clang/unittests/ASTMatchers/Dynamic/ |
H A D | ParserTest.cpp | 272 R"query(namedDecl(matchesName("^::[ABC]*$", "IgnoreCase | BasicRegex")))query"; in TEST() 394 R"query(namedDecl(matchesName("[ABC]*", "IgnoreCase & BasicRegex")))query")); in TEST() 401 R"query(namedDecl(matchesName("[ABC]*", "IgnoreCase | Basicregex")))query")); in TEST()
|
/llvm-project/llvm/utils/FileCheck/ |
H A D | FileCheck.cpp | 62 static cl::opt<bool> IgnoreCase( variable 799 Req.IgnoreCase = IgnoreCase; in main()
|
/llvm-project/clang/lib/Tooling/Inclusions/ |
H A D | HeaderIncludes.cpp | 197 : llvm::Regex::IgnoreCase); in IncludeCategoryManager() 272 llvm::Regex::IgnoreCase); in isMainHeader()
|
/llvm-project/clang-tools-extra/clang-tidy/readability/ |
H A D | NamespaceCommentCheck.cpp | 29 llvm::Regex::IgnoreCase), in NamespaceCommentCheck()
|
/llvm-project/llvm/lib/Support/ |
H A D | Regex.cpp | 30 if (Flags & IgnoreCase) in Regex()
|
/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
H A D | Marshallers.cpp | 115 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
|
/llvm-project/clang-tools-extra/clangd/ |
H A D | ConfigCompile.cpp | 208 llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase; in compile() 505 static llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase; in appendTidyCheckSpec() 619 static llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase; in compile()
|
/llvm-project/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 767 IgnoreCase = Req.IgnoreCase; in parsePattern() 1086 IgnoreCase ? Buffer.find_insensitive(FixedStr) : Buffer.find(FixedStr); in match() 1146 if (IgnoreCase) in match() 1147 Flags |= Regex::IgnoreCase; in match()
|
H A D | FileCheckImpl.h | 632 bool IgnoreCase = false; variable
|
/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CStringChecker.cpp | 234 bool IsBounded = false, bool IgnoreCase = false) const; 2274 evalStrcmpCommon(C, Call, /* IsBounded = */ false, /* IgnoreCase = */ false); in evalStrncmp() 2280 evalStrcmpCommon(C, Call, /* IsBounded = */ true, /* IgnoreCase = */ false); in evalStrcasecmp() 2286 evalStrcmpCommon(C, Call, /* IsBounded = */ false, /* IgnoreCase = */ true); in evalStrncasecmp() 2292 evalStrcmpCommon(C, Call, /* IsBounded = */ true, /* IgnoreCase = */ true); in evalStrcmpCommon() 2296 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon() 2397 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
|
/llvm-project/lldb/source/API/ |
H A D | SBTarget.cpp | 1801 RegularExpression(name_ref, llvm::Regex::RegexFlags::IgnoreCase), in FindGlobalFunctions() 1953 RegularExpression(name_ref, llvm::Regex::IgnoreCase), max_matches, in FindGlobalVariables()
|
/llvm-project/clang/unittests/ASTMatchers/ |
H A D | ASTMatchersNodeTest.cpp | 93 namedDecl(matchesName(":k[^:]*$", llvm::Regex::IgnoreCase)); in TEST_P()
|