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

References

include/llvm/Option/OptTable.h
   99     return getInfo(id).Name;
include/llvm/Option/Option.h
  100     return Info->Name;
lib/Option/OptTable.cpp
   69   if (int N = StrCmpOptionName(A.Name, B.Name))
   69   if (int N = StrCmpOptionName(A.Name, B.Name))
   89   return StrCmpOptionNameIgnoreCase(I.Name, Name) < 0;
  187           ? Rest.startswith_lower(I->Name)
  188           : Rest.startswith(I->Name);
  190         return Prefix.size() + StringRef(I->Name).size();
  200       if (Option == std::string(In.Prefixes[I]) + In.Name)
  239       std::string S = std::string(In.Prefixes[I]) + std::string(In.Name) + "\t";
  259     StringRef CandidateName = CandidateInfo.Name;