Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Option/
H A DOptTable.h63 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 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()
/openbsd-src/gnu/llvm/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.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 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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp174 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 DNamespaceEndCommentsFixer.cpp174 llvm::Regex::IgnoreCase); in validEndComment()
178 llvm::Regex::IgnoreCase); in validEndComment()
210 "^/[/*] *( +([a-zA-Z0-9:_]+))?\\.? *(\\*/)?$", llvm::Regex::IgnoreCase); in validEndComment()
H A DFormatTokenLexer.cpp1096 static const llvm::Regex NumberBase("^s?[bdho]", llvm::Regex::IgnoreCase); in getNextToken()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DRegex.h33 IgnoreCase = 1, enumerator
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVOptions.h235 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 DFileCheck.h39 bool IgnoreCase = false; member
/openbsd-src/gnu/llvm/llvm/utils/FileCheck/
H A DFileCheck.cpp62 static cl::opt<bool> IgnoreCase( variable
804 Req.IgnoreCase = IgnoreCase; in main()
/openbsd-src/gnu/llvm/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp197 : llvm::Regex::IgnoreCase); in IncludeCategoryManager()
262 llvm::Regex::IgnoreCase); in isMainHeader()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DRegex.cpp33 if (Flags & IgnoreCase) in Regex()
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.cpp115 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
/openbsd-src/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheck.cpp919 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 DFileCheckImpl.h681 bool IgnoreCase = false; variable
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp221 bool IgnoreCase = false) const;
2037 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon()
2137 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()