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

References

include/llvm/ADT/StringSwitch.h
  162     return CaseLower(S0, Value).CaseLower(S1, Value);
  162     return CaseLower(S0, Value).CaseLower(S1, Value);
  167     return CaseLower(S0, Value).CasesLower(S1, S2, Value);
  172     return CaseLower(S0, Value).CasesLower(S1, S2, S3, Value);
  177     return CaseLower(S0, Value).CasesLower(S1, S2, S3, S4, Value);
include/llvm/Support/FormatProviders.h
  268                   .CaseLower("D", B ? "1" : "0")
tools/clang/lib/Frontend/CompilerInvocation.cpp
 1686                          .CaseLower("default", ADOF_Default)
 1687                          .CaseLower("json", ADOF_JSON)
tools/lld/COFF/Driver.cpp
  645                      .CaseLower("none", DebugKind::None)
  646                      .CaseLower("full", DebugKind::Full)
  647                      .CaseLower("fastlink", DebugKind::FastLink)
  649                      .CaseLower("ghash", DebugKind::GHash)
  650                      .CaseLower("dwarf", DebugKind::Dwarf)
  651                      .CaseLower("symtab", DebugKind::Symtab)
tools/lld/tools/lld/lld.cpp
   62       .CaseLower("link", WinLink)
tools/llvm-objcopy/CopyConfig.cpp
   99       .CaseLower("alloc", SectionFlag::SecAlloc)
  100       .CaseLower("load", SectionFlag::SecLoad)
  101       .CaseLower("noload", SectionFlag::SecNoload)
  102       .CaseLower("readonly", SectionFlag::SecReadonly)
  103       .CaseLower("debug", SectionFlag::SecDebug)
  104       .CaseLower("code", SectionFlag::SecCode)
  105       .CaseLower("data", SectionFlag::SecData)
  106       .CaseLower("rom", SectionFlag::SecRom)
  107       .CaseLower("merge", SectionFlag::SecMerge)
  108       .CaseLower("strings", SectionFlag::SecStrings)
  109       .CaseLower("contents", SectionFlag::SecContents)
  110       .CaseLower("share", SectionFlag::SecShare)
tools/llvm-objcopy/ELF/ELFConfig.cpp
   72             .CaseLower("global", [&SI] { SI.Bind = ELF::STB_GLOBAL; })
   73             .CaseLower("local", [&SI] { SI.Bind = ELF::STB_LOCAL; })
   74             .CaseLower("weak", [&SI] { SI.Bind = ELF::STB_WEAK; })
   75             .CaseLower("default", [&SI] { SI.Visibility = ELF::STV_DEFAULT; })
   76             .CaseLower("hidden", [&SI] { SI.Visibility = ELF::STV_HIDDEN; })
   77             .CaseLower("protected",
   79             .CaseLower("file", [&SI] { SI.Type = ELF::STT_FILE; })
   80             .CaseLower("section", [&SI] { SI.Type = ELF::STT_SECTION; })
   81             .CaseLower("object", [&SI] { SI.Type = ELF::STT_OBJECT; })
   82             .CaseLower("function", [&SI] { SI.Type = ELF::STT_FUNC; })
   83             .CaseLower("indirect-function",
   85             .CaseLower("debug", [] {})
   86             .CaseLower("constructor", [] {})
   87             .CaseLower("warning", [] {})
   88             .CaseLower("indirect", [] {})
   89             .CaseLower("synthetic", [] {})
   90             .CaseLower("unique-object", [] {})
unittests/ADT/StringSwitchTest.cpp
   56         .CaseLower("A", 10)
   57         .CaseLower("B", 11)
   58         .CaseLower("C", 12)
   59         .CaseLower("D", 13)
   60         .CaseLower("E", 14)
   61         .CaseLower("F", 15)