/freebsd/contrib/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()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Option/ |
H A D | OptTable.h | 92 bool IgnoreCase; variable 125 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 359 GenericOptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false); 371 bool IgnoreCase = false) 372 : OptTable(OptionInfos, IgnoreCase), PrefixesUnion(PrefixesTable) { in OptTable() argument
|
/freebsd/contrib/llvm-project/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.starts_with_insensitive(I->getName()) in matchOption() 363 unsigned ArgSize = matchOption(Start, Str, IgnoreCase); in parseOneArgGrouped() 459 if ((ArgSize = matchOption(Start, Str, IgnoreCase))) in internalParseOneArg() 782 GenericOptTable::GenericOptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase) in GenericOptTable() argument 783 : OptTable(OptionInfos, IgnoreCase) { in GenericOptTable()
|
/freebsd/contrib/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()
|
/freebsd/contrib/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()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Regex.h | 33 IgnoreCase = 1, enumerator
|
/freebsd/contrib/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);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/FileCheck/ |
H A D | FileCheck.h | 39 bool IgnoreCase = false; member
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/ |
H A D | HeaderIncludes.cpp | 197 : llvm::Regex::IgnoreCase); in IncludeCategoryManager() 272 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/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; 658 bool IgnoreCase = false; global() variable
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CStringChecker.cpp | 233 bool IsBounded = false, bool IgnoreCase = false) const; 2291 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon() 2392 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBTarget.cpp | 1794 RegularExpression(name_ref, llvm::Regex::RegexFlags::IgnoreCase), in FindGlobalFunctions() 1946 RegularExpression(name_ref, llvm::Regex::IgnoreCase), max_matches, in FindGlobalVariables()
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | FormatTokenLexer.cpp | 1245 static const llvm::Regex NumberBase("^s?[bdho]", llvm::Regex::IgnoreCase); in getNextToken()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | FormatEntity.cpp | 664 static llvm::Regex LLVMFormatPattern{"x[-+]?\\d*|n|d", llvm::Regex::IgnoreCase};
|