| /openbsd-src/gnu/llvm/llvm/include/llvm/Option/ |
| H A D | OptTable.h | 63 bool IgnoreCase; variable 95 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 271 GenericOptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 283 bool IgnoreCase = false) 284 : OptTable(OptionInfos, IgnoreCase), PrefixesUnion(PrefixesTable) { in OptTable() argument
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Option/ |
| H A D | OptTable.cpp | 88 OptTable::OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase) in OptTable() argument 89 : OptionInfos(OptionInfos), IgnoreCase(IgnoreCase) { in OptTable() 162 bool IgnoreCase) { in matchOption() argument 166 bool Matched = IgnoreCase ? Rest.startswith_insensitive(I->Name) in matchOption() 338 unsigned ArgSize = matchOption(Start, Str, IgnoreCase); in parseOneArgGrouped() 414 if ((ArgSize = matchOption(Start, Str, IgnoreCase))) in ParseOneArg() 670 GenericOptTable::GenericOptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase) in GenericOptTable() argument 671 : OptTable(OptionInfos, IgnoreCase) { in GenericOptTable()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 174 static opt<bool> IgnoreCase("ignore-case", variable 178 aliasopt(IgnoreCase), cl::NotHidden); 358 (IgnoreCase && !UseRegex) ? NameRef.lower() : NameRef.str(); in filterByName() 362 Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags); in filterByName() 615 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); in dumpObjectFile()
|
| /openbsd-src/gnu/llvm/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 | 1096 static const llvm::Regex NumberBase("^s?[bdho]", llvm::Regex::IgnoreCase); in getNextToken()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | Regex.h | 33 IgnoreCase = 1, enumerator
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVOptions.h | 235 bool IgnoreCase = false; // --select-ignore-case 413 BOOL_FUNCTION(Select, IgnoreCase); 546 bool IgnoreCase, bool UseRegex);
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/FileCheck/ |
| H A D | FileCheck.h | 39 bool IgnoreCase = false; member
|
| /openbsd-src/gnu/llvm/llvm/utils/FileCheck/ |
| H A D | FileCheck.cpp | 62 static cl::opt<bool> IgnoreCase( variable 804 Req.IgnoreCase = IgnoreCase; in main()
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderIncludes.cpp | 197 : llvm::Regex::IgnoreCase); in IncludeCategoryManager() 262 llvm::Regex::IgnoreCase); in isMainHeader()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Regex.cpp | 33 if (Flags & IgnoreCase) in Regex()
|
| /openbsd-src/gnu/llvm/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Marshallers.cpp | 115 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
|
| /openbsd-src/gnu/llvm/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
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CStringChecker.cpp | 221 bool IgnoreCase = false) const; 2037 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon() 2137 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
|