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

References

include/llvm/ADT/StringSwitch.h
   68     if (!Result && Str == S) {
   69       Result = std::move(Value);
   75     if (!Result && Str.endswith(S)) {
   76       Result = std::move(Value);
   82     if (!Result && Str.startswith(S)) {
   83       Result = std::move(Value);
  141     if (!Result && Str.equals_lower(S))
  142       Result = std::move(Value);
  148     if (!Result && Str.endswith_lower(S))
  149       Result = Value;
  155     if (!Result && Str.startswith_lower(S))
  156       Result = std::move(Value);
  182     if (Result)
  183       return std::move(*Result);
  189     assert(Result && "Fell off the end of a string-switch");
  190     return std::move(*Result);