Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Option/
DOptTable.cpp98 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/
DOptTable.h63 bool IgnoreCase; variable
89 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp171 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/
DNamespaceEndCommentsFixer.cpp96 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/
DRegex.h33 IgnoreCase = 1, enumerator
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/FileCheck/
DFileCheck.h36 bool IgnoreCase = false; member
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/
DHeaderIncludes.cpp196 : llvm::Regex::IgnoreCase); in IncludeCategoryManager()
261 llvm::Regex::IgnoreCase); in isMainHeader()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DRegex.cpp33 if (Flags & IgnoreCase) in Regex()
/freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
DMarshallers.cpp119 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
/freebsd-12-stable/contrib/llvm-project/llvm/lib/FileCheck/
DFileCheck.cpp919 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()
DFileCheckImpl.h681 bool IgnoreCase = false; variable
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DCStringChecker.cpp188 bool IgnoreCase = false) const;
1942 bool IsBounded, bool IgnoreCase) const { in evalStrcmpCommon()
2042 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()