| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVOptions.cpp | 411 bool IgnoreCase, bool UseRegex) { in createMatchEntry() argument 417 Match.RE = std::make_shared<Regex>(Pattern, IgnoreCase ? Regex::IgnoreCase in createMatchEntry() 434 Match.Mode = IgnoreCase ? LVMatchMode::NoCase : LVMatchMode::Match; in createMatchEntry() 458 bool IgnoreCase = options().getSelectIgnoreCase(); in addPatterns() local 462 if (Error Err = createMatchEntry(Filters, Pattern, IgnoreCase, UseRegex)) in addPatterns()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Option/ |
| H A D | OptTable.h | 136 bool IgnoreCase; variable 171 ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 431 ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 440 bool IgnoreCase = false) 441 : OptTable(StrTable, PrefixesTable, OptionInfos, IgnoreCase) { in OptTable() argument
|
| /freebsd/contrib/llvm-project/llvm/lib/Option/ |
| H A D | OptTable.cpp | 82 ArrayRef<Info> OptionInfos, bool IgnoreCase) in OptTable() argument 84 OptionInfos(OptionInfos), IgnoreCase(IgnoreCase) { in OptTable() 159 bool IgnoreCase) { in matchOption() argument 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) in GenericOptTable() argument 795 : OptTable(StrTable, PrefixesTable, OptionInfos, IgnoreCase) { in GenericOptTable()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
| H A D | Options.cpp | 275 cl::location(ReaderOptions.Select.IgnoreCase), 469 auto UpdatePattern = [&](auto &List, auto &Set, bool IgnoreCase, in propagateOptions() 473 Set.insert((IgnoreCase && !UseRegex) ? StringRef(Pattern).lower() in propagateOptions() 479 ReaderOptions.Select.IgnoreCase, ReaderOptions.Select.UseRegex); in propagateOptions()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 191 static opt<bool> IgnoreCase("ignore-case", variable 202 aliasopt(IgnoreCase), cl::NotHidden); 413 (IgnoreCase && !UseRegex) ? NameRef.lower() : NameRef.str(); in filterByName() 417 Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags); in filterByName() 716 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); in dumpObjectFile()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Regex.h | 34 IgnoreCase = 1, enumerator
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVOptions.h | 236 bool IgnoreCase = false; // --select-ignore-case 416 BOOL_FUNCTION(Select, IgnoreCase); 551 bool IgnoreCase, bool UseRegex);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/FileCheck/ |
| H A D | FileCheck.h | 40 bool IgnoreCase = false; member
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderIncludes.cpp | 196 : llvm::Regex::IgnoreCase); in IncludeCategoryManager() 271 llvm::Regex::IgnoreCase); in isMainHeader()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Regex.cpp | 30 if (Flags & IgnoreCase) in Regex()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Marshallers.cpp | 115 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
|
| /freebsd/contrib/llvm-project/clang/include/clang/Format/ |
| H A D | Format.h | 4387 bool IgnoreCase; member 4389 return Enabled == R.Enabled && IgnoreCase == R.IgnoreCase;
|
| /freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 804 IgnoreCase = Req.IgnoreCase; in parsePattern() 1125 IgnoreCase ? Buffer.find_insensitive(FixedStr) : Buffer.find(FixedStr); in match() 1185 if (IgnoreCase) in match() 1186 Flags |= Regex::IgnoreCase; in match()
|
| H A D | FileCheckImpl.h | 654 bool IgnoreCase = false; variable
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CStringChecker.cpp | 232 bool IsBounded = false, bool IgnoreCase = false) const; 2334 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon() 2434 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBTarget.cpp | 1753 RegularExpression(name_ref, llvm::Regex::RegexFlags::IgnoreCase), in FindGlobalFunctions() 1901 RegularExpression(name_ref, llvm::Regex::IgnoreCase), max_matches, in FindGlobalVariables()
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | FormatTokenLexer.cpp | 1359 static const llvm::Regex NumberBase("^s?[bdho]", llvm::Regex::IgnoreCase); in getNextToken()
|
| H A D | Format.cpp | 682 IO.mapOptional("IgnoreCase", Value.IgnoreCase); in mapping() 3259 if (Style.SortIncludes.Enabled && Style.SortIncludes.IgnoreCase) { in sortCppIncludes()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 721 static llvm::Regex LLVMFormatPattern{"x[-+]?\\d*|n|d", llvm::Regex::IgnoreCase};
|