Lines Matching refs:Target
17 Expected<Target> Target::create(StringRef TargetValue) { in create()
45 return Target{Architecture, Platform}; in create()
48 Target::operator std::string() const { in operator std::string()
53 raw_ostream &operator<<(raw_ostream &OS, const Target &Target) { in operator <<() argument
54 OS << std::string(Target); in operator <<()
58 PlatformSet mapToPlatformSet(ArrayRef<Target> Targets) { in mapToPlatformSet()
60 for (const auto &Target : Targets) in mapToPlatformSet() local
61 Result.insert(Target.Platform); in mapToPlatformSet()
65 ArchitectureSet mapToArchitectureSet(ArrayRef<Target> Targets) { in mapToArchitectureSet()
67 for (const auto &Target : Targets) in mapToArchitectureSet() local
68 Result.set(Target.Arch); in mapToArchitectureSet()
72 std::string getTargetTripleName(const Target &Targ) { in getTargetTripleName()