Home
last modified time | relevance | path

Searched refs:IgnoreCase (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVOptions.cpp409 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 DOptTable.h92 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 DOptTable.cpp88 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 DOptions.cpp272 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 Dllvm-dwarfdump.cpp189 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 DRegex.h33 IgnoreCase = 1, enumerator
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVOptions.h235 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 DFileCheck.h39 bool IgnoreCase = false; member
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp197 : llvm::Regex::IgnoreCase); in IncludeCategoryManager()
272 llvm::Regex::IgnoreCase); in isMainHeader()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DRegex.cpp30 if (Flags & IgnoreCase) in Regex()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.cpp115 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp767 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 DFileCheckImpl.h632 bool IgnoreCase = false;
658 bool IgnoreCase = false; global() variable
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp233 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 DSBTarget.cpp1794 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 DFormatTokenLexer.cpp1245 static const llvm::Regex NumberBase("^s?[bdho]", llvm::Regex::IgnoreCase); in getNextToken()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp664 static llvm::Regex LLVMFormatPattern{"x[-+]?\\d*|n|d", llvm::Regex::IgnoreCase};