Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Option/
H A 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 in matchOption()
354 if ((ArgSize = matchOption(Start, Str, IgnoreCase))) in ParseOneArg()
/freebsd-12.1/contrib/llvm/include/llvm/Option/
H A DOptTable.h62 bool IgnoreCase; variable
84 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
/freebsd-12.1/contrib/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp146 IgnoreCase("ignore-case", variable
150 aliasopt(IgnoreCase));
287 (IgnoreCase && !UseRegex) ? NameRef.lower() : NameRef.str(); in filterByName()
291 Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags); in filterByName()
423 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); in dumpObjectFile()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DRegex.h33 IgnoreCase=1, enumerator
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp157 CategoryRegexs.emplace_back(Category.Regex, llvm::Regex::IgnoreCase); in IncludeCategoryManager()
185 llvm::Regex::IgnoreCase); in isMainHeader()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DRegex.cpp33 if (Flags & IgnoreCase) in Regex()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DNamespaceEndCommentsFixer.cpp69 llvm::Regex::IgnoreCase); in validEndComment()