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::GNUstep: out << "gnustep"; break; in operator <<()
34 case ObjCRuntime::GCC: out << "gcc"; break; in operator <<()
35 case ObjCRuntime::ObjFW: out << "objfw"; break; in operator <<()
43 bool ObjCRuntime::tryParse(StringRef input) { in tryParse()
60 kind = ObjCRuntime::MacOSX; in tryParse()
62 kind = ObjCRuntime::FragileMacOSX; in tryParse()
64 kind = ObjCRuntime::iOS; in tryParse()
69 kind = ObjCRuntime::GNUstep; in tryParse()
71 kind = ObjCRuntime::GCC; in tryParse()
73 kind = ObjCRuntime::ObjFW; in tryParse()
86 if (kind == ObjCRuntime::ObjFW && Version > VersionTuple(0, 8)) in tryParse()