Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVOptions.cpp411 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 DOptTable.h136 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 DOptTable.cpp82 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 DOptions.cpp275 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 Dllvm-dwarfdump.cpp191 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 DRegex.h34 IgnoreCase = 1, enumerator
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVOptions.h236 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 DFileCheck.h40 bool IgnoreCase = false; member
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp196 : llvm::Regex::IgnoreCase); in IncludeCategoryManager()
271 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/clang/include/clang/Format/
H A DFormat.h4387 bool IgnoreCase; member
4389 return Enabled == R.Enabled && IgnoreCase == R.IgnoreCase;
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp804 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 DFileCheckImpl.h654 bool IgnoreCase = false; variable
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp232 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 DSBTarget.cpp1753 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 DFormatTokenLexer.cpp1359 static const llvm::Regex NumberBase("^s?[bdho]", llvm::Regex::IgnoreCase); in getNextToken()
H A DFormat.cpp682 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 DFormatEntity.cpp721 static llvm::Regex LLVMFormatPattern{"x[-+]?\\d*|n|d", llvm::Regex::IgnoreCase};