Lines Matching refs:ObjCRuntime
23 std::string ObjCRuntime::getAsString() const { in getAsString()
32 raw_ostream &clang::operator<<(raw_ostream &out, const ObjCRuntime &value) { in operator <<()
34 case ObjCRuntime::MacOSX: out << "macosx"; break; in operator <<()
35 case ObjCRuntime::FragileMacOSX: out << "macosx-fragile"; break; in operator <<()
36 case ObjCRuntime::iOS: out << "ios"; break; in operator <<()
37 case ObjCRuntime::WatchOS: out << "watchos"; break; in operator <<()
38 case ObjCRuntime::GNUstep: out << "gnustep"; break; in operator <<()
39 case ObjCRuntime::GCC: out << "gcc"; break; in operator <<()
40 case ObjCRuntime::ObjFW: out << "objfw"; break; in operator <<()
48 bool ObjCRuntime::tryParse(StringRef input) { in tryParse()
65 kind = ObjCRuntime::MacOSX; in tryParse()
67 kind = ObjCRuntime::FragileMacOSX; in tryParse()
69 kind = ObjCRuntime::iOS; in tryParse()
71 kind = ObjCRuntime::WatchOS; in tryParse()
76 kind = ObjCRuntime::GNUstep; in tryParse()
78 kind = ObjCRuntime::GCC; in tryParse()
80 kind = ObjCRuntime::ObjFW; in tryParse()
93 if (kind == ObjCRuntime::ObjFW && Version > VersionTuple(0, 8)) in tryParse()