reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/ADT/StringRef.h
  294     bool endswith_lower(StringRef Suffix) const;

References

include/llvm/ADT/StringSwitch.h
  148     if (!Result && Str.endswith_lower(S))
lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
  377   if (Name.endswith_lower(".w"))
tools/clang/lib/Analysis/RetainSummaryManager.cpp
  185   return FName.startswith_lower("retain") || FName.endswith_lower("retain");
  189   return FName.startswith_lower("release") || FName.endswith_lower("release");
  194          FName.endswith_lower("autorelease");
tools/clang/lib/CodeGen/TargetInfo.cpp
 2376   if (!Lib.endswith_lower(".lib") && !Lib.endswith_lower(".a"))
 2376   if (!Lib.endswith_lower(".lib") && !Lib.endswith_lower(".a"))
tools/clang/lib/Format/Format.cpp
 2529   if (FileName.endswith_lower(".js") || FileName.endswith_lower(".mjs") ||
 2529   if (FileName.endswith_lower(".js") || FileName.endswith_lower(".mjs") ||
 2530       FileName.endswith_lower(".ts"))
 2534   if (FileName.endswith_lower(".proto") ||
 2535       FileName.endswith_lower(".protodevel"))
 2537   if (FileName.endswith_lower(".textpb") ||
 2538       FileName.endswith_lower(".pb.txt") ||
 2539       FileName.endswith_lower(".textproto") ||
 2540       FileName.endswith_lower(".asciipb"))
 2542   if (FileName.endswith_lower(".td"))
 2544   if (FileName.endswith_lower(".cs"))
tools/clang/lib/Sema/SemaCodeComplete.cpp
 8713           if (!(Filename.endswith_lower(".h") ||
 8714                 Filename.endswith_lower(".hh") ||
 8715                 Filename.endswith_lower(".hpp") ||
 8716                 Filename.endswith_lower(".inc")))
tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
 1657   if (!(Name.endswith_lower("iterator") || Name.endswith_lower("iter") ||
 1657   if (!(Name.endswith_lower("iterator") || Name.endswith_lower("iter") ||
 1658         Name.endswith_lower("it")))
 1705   return IdInfo->getName().endswith_lower("begin");
 1712   return IdInfo->getName().endswith_lower("end");
tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
  248            llvm::sys::path::stem(CmdLine.front()).endswith_lower("cl");
tools/clang/tools/extra/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp
   98          L.endswith_lower(R) || R.endswith_lower(L);
   98          L.endswith_lower(R) || R.endswith_lower(L);
tools/lld/COFF/Driver.cpp
  216     if (filename.endswith_lower(".dll")) {
  443   if (path.endswith_lower(".lib"))
tools/lld/Common/Args.cpp
   79   if (path.endswith_lower(".exe"))
tools/lld/ELF/ScriptParser.cpp
 1065   if (tok.endswith_lower("H")) {
 1072   if (tok.endswith_lower("K")) {
 1077   if (tok.endswith_lower("M")) {
tools/lld/MinGW/Driver.cpp
  348       if (StringRef(a->getValue()).endswith_lower(".def"))
tools/lld/tools/lld/lld.cpp
  131   if (arg0.endswith_lower(".exe"))
tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
 1069     if (file_path.endswith_lower(suffix))
tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
 1091     if (file_path.endswith_lower(suffix))
tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
   21     if (file_path.endswith_lower(suffix))
tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  421     if (llvm::StringRef(name).endswith_lower("wow64.dll")) {
tools/llvm-cov/llvm-cov.cpp
   63   if (sys::path::stem(argv[0]).endswith_lower("gcov"))
tools/llvm-jitlink/llvm-jitlink.cpp
  369   if (SizeString.endswith_lower("kb"))
  371   else if (SizeString.endswith_lower("mb")) {
  374   } else if (SizeString.endswith_lower("gb")) {
tools/llvm-pdbutil/DumpOutputStyle.cpp
  353   if (Name.endswith_lower(".dll"))
unittests/ADT/StringRefTest.cpp
  392   EXPECT_TRUE(Str.endswith_lower(""));
  393   EXPECT_TRUE(Str.endswith_lower("lo"));
  394   EXPECT_TRUE(Str.endswith_lower("LO"));
  395   EXPECT_TRUE(Str.endswith_lower("ELlo"));
  396   EXPECT_FALSE(Str.endswith_lower("helloworld"));
  397   EXPECT_FALSE(Str.endswith_lower("hi"));