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

References

tools/clang/lib/Driver/ToolChains/Darwin.cpp
 1528   if (!SDK.size())
 1538     size_t StartVer = SDK.find_first_of("0123456789");
 1539     size_t EndVer = SDK.find_last_of("0123456789");
 1541       Version = SDK.slice(StartVer, EndVer + 1);
 1546   if (SDK.startswith("iPhoneOS") || SDK.startswith("iPhoneSimulator"))
 1546   if (SDK.startswith("iPhoneOS") || SDK.startswith("iPhoneSimulator"))
 1549         /*IsSimulator=*/SDK.startswith("iPhoneSimulator"));
 1550   else if (SDK.startswith("MacOSX"))
 1553   else if (SDK.startswith("WatchOS") || SDK.startswith("WatchSimulator"))
 1553   else if (SDK.startswith("WatchOS") || SDK.startswith("WatchSimulator"))
 1556         /*IsSimulator=*/SDK.startswith("WatchSimulator"));
 1557   else if (SDK.startswith("AppleTVOS") || SDK.startswith("AppleTVSimulator"))
 1557   else if (SDK.startswith("AppleTVOS") || SDK.startswith("AppleTVSimulator"))
 1560         /*IsSimulator=*/SDK.startswith("AppleTVSimulator"));