Home
last modified time | relevance | path

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

12

/llvm-project/clang-tools-extra/clang-tidy/
H A DClangTidyCheck.h
H A DClangTidyCheck.cpp
/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()
/llvm-project/llvm/include/llvm/Option/
H A DOptTable.h135 bool IgnoreCase;
170 ArrayRef<Info> OptionInfos, bool IgnoreCase = false); in getOptionHelpText()
430 ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
439 bool IgnoreCase = false)
440 : OptTable(StrTable, PrefixesTable, OptionInfos, IgnoreCase) {
92 bool IgnoreCase; global() variable
372 OptTable(OptionInfos,IgnoreCase) OptTable() argument
/llvm-project/llvm/lib/Option/
H A DOptTable.cpp82 ArrayRef<Info> OptionInfos, bool IgnoreCase)
84 OptionInfos(OptionInfos), IgnoreCase(IgnoreCase) {
159 bool IgnoreCase) {
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)
795 : OptTable(StrTable, PrefixesTable, OptionInfos, IgnoreCase) {
88 OptTable(ArrayRef<Info> OptionInfos,bool IgnoreCase) OptTable() argument
162 matchOption(const OptTable::Info * I,StringRef Str,bool IgnoreCase) matchOption() argument
782 GenericOptTable(ArrayRef<Info> OptionInfos,bool IgnoreCase) GenericOptTable() argument
/llvm-project/llvm/unittests/Option/
H A DOptionParsingTest.cpp63 TestOptTable(bool IgnoreCase = false)
65 IgnoreCase) {}
70 TestPrecomputedOptTable(bool IgnoreCase = false)
72 OptionPrefixesUnion, IgnoreCase) {} in TestPrecomputedOptTable() argument
232 TYPED_TEST(OptTableTest, IgnoreCase) {
66 TestOptTable(bool IgnoreCase=false) TestOptTable() argument
233 TYPED_TEST(OptTableTest,IgnoreCase) TYPED_TEST() argument
/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()
/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()
/llvm-project/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.cpp1256 static const llvm::Regex NumberBase("^s?[bdho]", llvm::Regex::IgnoreCase); in getNextToken()
/llvm-project/llvm/include/llvm/Support/
H A DRegex.h33 IgnoreCase = 1, enumerator
/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);
/llvm-project/llvm/include/llvm/FileCheck/
H A DFileCheck.h39 bool IgnoreCase = false; member
/llvm-project/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp272 R"query(namedDecl(matchesName("^::[ABC]*$", "IgnoreCase | BasicRegex")))query"; in TEST()
394 R"query(namedDecl(matchesName("[ABC]*", "IgnoreCase & BasicRegex")))query")); in TEST()
401 R"query(namedDecl(matchesName("[ABC]*", "IgnoreCase | Basicregex")))query")); in TEST()
/llvm-project/llvm/utils/FileCheck/
H A DFileCheck.cpp62 static cl::opt<bool> IgnoreCase( variable
799 Req.IgnoreCase = IgnoreCase; in main()
/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp197 : llvm::Regex::IgnoreCase); in IncludeCategoryManager()
272 llvm::Regex::IgnoreCase); in isMainHeader()
/llvm-project/clang-tools-extra/clang-tidy/readability/
H A DNamespaceCommentCheck.cpp29 llvm::Regex::IgnoreCase), in NamespaceCommentCheck()
/llvm-project/llvm/lib/Support/
H A DRegex.cpp30 if (Flags & IgnoreCase) in Regex()
/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.cpp115 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
/llvm-project/clang-tools-extra/clangd/
H A DConfigCompile.cpp208 llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase; in compile()
505 static llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase; in appendTidyCheckSpec()
619 static llvm::Regex::RegexFlags Flags = llvm::Regex::IgnoreCase; in compile()
/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; variable
/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp234 bool IsBounded = false, bool IgnoreCase = false) const;
2274 evalStrcmpCommon(C, Call, /* IsBounded = */ false, /* IgnoreCase = */ false); in evalStrncmp()
2280 evalStrcmpCommon(C, Call, /* IsBounded = */ true, /* IgnoreCase = */ false); in evalStrcasecmp()
2286 evalStrcmpCommon(C, Call, /* IsBounded = */ false, /* IgnoreCase = */ true); in evalStrncasecmp()
2292 evalStrcmpCommon(C, Call, /* IsBounded = */ true, /* IgnoreCase = */ true); in evalStrcmpCommon()
2296 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon()
2397 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
/llvm-project/lldb/source/API/
H A DSBTarget.cpp1801 RegularExpression(name_ref, llvm::Regex::RegexFlags::IgnoreCase), in FindGlobalFunctions()
1953 RegularExpression(name_ref, llvm::Regex::IgnoreCase), max_matches, in FindGlobalVariables()
/llvm-project/clang/unittests/ASTMatchers/
H A DASTMatchersNodeTest.cpp93 namedDecl(matchesName(":k[^:]*$", llvm::Regex::IgnoreCase)); in TEST_P()

12