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

References

include/llvm/TextAPI/MachO/Target.h
   41   return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform);
   41   return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform);
   45   return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform);
   45   return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform);
   49   return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
   49   return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
   53   return LHS.Arch == RHS;
   57   return LHS.Arch != RHS;
lib/TextAPI/MachO/InterfaceFile.cpp
  106     return Archs.has(Target_.Arch);
lib/TextAPI/MachO/Symbol.cpp
   52         return Architectures.has(Target.Arch);
lib/TextAPI/MachO/Target.cpp
   51   return (getArchitectureName(Arch) + " (" + getPlatformName(Platform) + ")")
   70     Result.set(Target.Arch);
lib/TextAPI/MachO/TextStub.cpp
  378     OS << Value.Arch << "-";
  419     if (Value.Arch == AK_unknown)