Lines Matching refs:ObjCRuntime
19 std::string ObjCRuntime::getAsString() const { in getAsString()
28 raw_ostream &clang::operator<<(raw_ostream &out, const ObjCRuntime &value) { in operator <<()
30 case ObjCRuntime::MacOSX: out << "macosx"; break; in operator <<()
31 case ObjCRuntime::FragileMacOSX: out << "macosx-fragile"; break; in operator <<()
32 case ObjCRuntime::iOS: out << "ios"; break; in operator <<()
33 case ObjCRuntime::WatchOS: out << "watchos"; break; in operator <<()
34 case ObjCRuntime::GNUstep: out << "gnustep"; break; in operator <<()
35 case ObjCRuntime::GCC: out << "gcc"; break; in operator <<()
36 case ObjCRuntime::ObjFW: out << "objfw"; break; in operator <<()
44 bool ObjCRuntime::tryParse(StringRef input) { in tryParse()
61 kind = ObjCRuntime::MacOSX; in tryParse()
63 kind = ObjCRuntime::FragileMacOSX; in tryParse()
65 kind = ObjCRuntime::iOS; in tryParse()
67 kind = ObjCRuntime::WatchOS; in tryParse()
72 kind = ObjCRuntime::GNUstep; in tryParse()
74 kind = ObjCRuntime::GCC; in tryParse()
76 kind = ObjCRuntime::ObjFW; in tryParse()
89 if (kind == ObjCRuntime::ObjFW && Version > VersionTuple(0, 8)) in tryParse()