Searched refs:IgnoreCase (Results 1 – 12 of 12) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Option/ |
| D | OptTable.cpp | 98 OptTable::OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase) in OptTable() argument 99 : OptionInfos(OptionInfos), IgnoreCase(IgnoreCase) { in OptTable() 182 bool IgnoreCase) { in matchOption() argument 187 bool Matched = IgnoreCase ? Rest.startswith_insensitive(I->Name) in matchOption() 357 unsigned ArgSize = matchOption(Start, Str, IgnoreCase); in parseOneArgGrouped() 420 if ((ArgSize = matchOption(Start, Str, IgnoreCase))) in ParseOneArg()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Option/ |
| D | OptTable.h | 63 bool IgnoreCase; variable 89 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
| D | llvm-dwarfdump.cpp | 171 static opt<bool> IgnoreCase("ignore-case", variable 175 aliasopt(IgnoreCase), cl::NotHidden); 332 (IgnoreCase && !UseRegex) ? NameRef.lower() : NameRef.str(); in filterByName() 336 Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags); in filterByName() 474 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); in dumpObjectFile()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Format/ |
| D | NamespaceEndCommentsFixer.cpp | 96 llvm::Regex::IgnoreCase); in validEndComment() 100 llvm::Regex::IgnoreCase); in validEndComment() 132 "^/[/*] *( +([a-zA-Z0-9:_]+))?\\.? *(\\*/)?$", llvm::Regex::IgnoreCase); in validEndComment()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| D | Regex.h | 33 IgnoreCase = 1, enumerator
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/FileCheck/ |
| D | FileCheck.h | 36 bool IgnoreCase = false; member
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/ |
| D | HeaderIncludes.cpp | 196 : llvm::Regex::IgnoreCase); in IncludeCategoryManager() 261 llvm::Regex::IgnoreCase); in isMainHeader()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | Regex.cpp | 33 if (Flags & IgnoreCase) in Regex()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| D | Marshallers.cpp | 119 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/FileCheck/ |
| D | FileCheck.cpp | 919 IgnoreCase = Req.IgnoreCase; in parsePattern() 1232 IgnoreCase ? Buffer.find_insensitive(FixedStr) : Buffer.find(FixedStr); in match() 1291 if (IgnoreCase) in match() 1292 Flags |= Regex::IgnoreCase; in match()
|
| D | FileCheckImpl.h | 681 bool IgnoreCase = false; variable
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| D | CStringChecker.cpp | 188 bool IgnoreCase = false) const; 1942 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon() 2042 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
|