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

References

lib/Support/Triple.cpp
  553     .EndsWith("xcoff", Triple::XCOFF)
  554     .EndsWith("coff", Triple::COFF)
  555     .EndsWith("elf", Triple::ELF)
  556     .EndsWith("macho", Triple::MachO)
  557     .EndsWith("wasm", Triple::Wasm)
  571       .EndsWith("kalimba3", Triple::KalimbaSubArch_v3)
  572       .EndsWith("kalimba4", Triple::KalimbaSubArch_v4)
  573       .EndsWith("kalimba5", Triple::KalimbaSubArch_v5)
lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
  817   return StringSwitch<int>(T).EndsWith(".h", 2).EndsWith(".b", 1).Default(4);
  817   return StringSwitch<int>(T).EndsWith(".h", 2).EndsWith(".b", 1).Default(4);
lib/Target/Lanai/LanaiCondCode.h
   75       .EndsWith("f", LPCC::ICC_F)
   76       .EndsWith("hi", LPCC::ICC_HI)
   77       .EndsWith("ugt", LPCC::ICC_UGT)
   78       .EndsWith("ls", LPCC::ICC_LS)
   79       .EndsWith("ule", LPCC::ICC_ULE)
   80       .EndsWith("cc", LPCC::ICC_CC)
   81       .EndsWith("ult", LPCC::ICC_ULT)
   82       .EndsWith("cs", LPCC::ICC_CS)
   83       .EndsWith("uge", LPCC::ICC_UGE)
   84       .EndsWith("ne", LPCC::ICC_NE)
   85       .EndsWith("eq", LPCC::ICC_EQ)
   86       .EndsWith("vc", LPCC::ICC_VC)
   87       .EndsWith("vs", LPCC::ICC_VS)
   88       .EndsWith("pl", LPCC::ICC_PL)
   89       .EndsWith("mi", LPCC::ICC_MI)
   90       .EndsWith("ge", LPCC::ICC_GE)
   91       .EndsWith("lt", LPCC::ICC_LT)
   92       .EndsWith("gt", LPCC::ICC_GT)
   93       .EndsWith("le", LPCC::ICC_LE)
   94       .EndsWith("t", LPCC::ICC_T) // Has to be after others with suffix t
tools/clang/utils/TableGen/ClangAttrEmitter.cpp
  103     .EndsWith("Decl *", "Record.GetLocalDeclAs<" 
  123     .EndsWith("Decl *", "AddDeclRef(" + std::string(name) + ");\n")
unittests/ADT/StringSwitchTest.cpp
  120         .EndsWith("able", Suffix::Possible)
  121         .EndsWith("ed", Suffix::PastTense)
  122         .EndsWith("ation", Suffix::Process)
  123         .EndsWith("ing", Suffix::InProgressAction)