HomeSort by: relevance | last modified time | path
    Searched refs:IgnoreCase (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Option/
OptTable.h 63 bool IgnoreCase;
89 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Regex.h 33 IgnoreCase = 1,
  /src/external/apache2/llvm/dist/llvm/lib/Option/
OptTable.cpp 98 OptTable::OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase)
99 : OptionInfos(OptionInfos), IgnoreCase(IgnoreCase) {
182 bool IgnoreCase) {
187 bool Matched = IgnoreCase
358 unsigned ArgSize = matchOption(Start, Str, IgnoreCase);
421 if ((ArgSize = matchOption(Start, Str, IgnoreCase)))
  /src/external/apache2/llvm/dist/clang/lib/Format/
NamespaceEndCommentsFixer.cpp 96 llvm::Regex::IgnoreCase);
100 llvm::Regex::IgnoreCase);
132 "^/[/*] *( +([a-zA-Z0-9:_]+))?\\.? *(\\*/)?$", llvm::Regex::IgnoreCase);
  /src/external/apache2/llvm/dist/llvm/include/llvm/FileCheck/
FileCheck.h 36 bool IgnoreCase = false;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 170 static opt<bool> IgnoreCase("ignore-case",
174 aliasopt(IgnoreCase), cl::NotHidden);
327 (IgnoreCase && !UseRegex) ? NameRef.lower() : NameRef.str();
331 Regex RE(Pattern, IgnoreCase ? Regex::IgnoreCase : Regex::NoFlags);
469 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name);
  /src/external/apache2/llvm/dist/llvm/utils/FileCheck/
FileCheck.cpp 60 static cl::opt<bool> IgnoreCase(
801 Req.IgnoreCase = IgnoreCase;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Inclusions/
HeaderIncludes.cpp 196 : llvm::Regex::IgnoreCase);
261 llvm::Regex::IgnoreCase);
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Marshallers.cpp 119 {"IgnoreCase", llvm::Regex::RegexFlags::IgnoreCase},
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Regex.cpp 33 if (Flags & IgnoreCase)
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 681 bool IgnoreCase = false;
FileCheck.cpp 919 IgnoreCase = Req.IgnoreCase;
1232 IgnoreCase ? Buffer.find_lower(FixedStr) : Buffer.find(FixedStr);
1291 if (IgnoreCase)
1292 Flags |= Regex::IgnoreCase;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 188 bool IgnoreCase = false) const;
1921 evalStrcmpCommon(C, CE, /* IsBounded = */ false, /* IgnoreCase = */ false);
1926 evalStrcmpCommon(C, CE, /* IsBounded = */ true, /* IgnoreCase = */ false);
1932 evalStrcmpCommon(C, CE, /* IsBounded = */ false, /* IgnoreCase = */ true);
1938 evalStrcmpCommon(C, CE, /* IsBounded = */ true, /* IgnoreCase = */ true);
1942 bool IsBounded, bool IgnoreCase) const {
2042 int compareRes = IgnoreCase ? LeftStrRef.compare_lower(RightStrRef)

Completed in 40 milliseconds