Home
last modified time | relevance | path

Searched refs:OSVersion (Results 1 – 10 of 10) sorted by relevance

/external/angle/src/libANGLE/renderer/
Ddriver_utils.cpp189 OSVersion::OSVersion() {} in OSVersion() function in rx::OSVersion
190 OSVersion::OSVersion(int major, int minor, int patch) in OSVersion() function in rx::OSVersion
194 bool operator==(const OSVersion &a, const OSVersion &b) in operator ==()
199 bool operator!=(const OSVersion &a, const OSVersion &b) in operator !=()
204 bool operator<(const OSVersion &a, const OSVersion &b) in operator <()
209 bool operator>=(const OSVersion &a, const OSVersion &b) in operator >=()
216 OSVersion GetMacOSVersion() in GetMacOSVersion()
219 return OSVersion(0, 0, 0); in GetMacOSVersion()
224 OSVersion GetiOSVersion() in GetiOSVersion()
227 return OSVersion(0, 0, 0); in GetiOSVersion()
[all …]
Ddriver_utils.h222 struct OSVersion struct
224 OSVersion();
225 OSVersion(int major, int minor, int patch);
231 bool operator==(const OSVersion &a, const OSVersion &b); argument
232 bool operator!=(const OSVersion &a, const OSVersion &b);
233 bool operator<(const OSVersion &a, const OSVersion &b);
234 bool operator>=(const OSVersion &a, const OSVersion &b);
236 OSVersion GetMacOSVersion();
238 OSVersion GetiOSVersion();
240 OSVersion GetLinuxOSVersion();
Ddriver_utils_ios.mm16 OSVersion GetiOSVersion()
18 OSVersion result;
Ddriver_utils_mac.mm17 OSVersion GetMacOSVersion()
19 OSVersion result;
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/objcxx/
DPlatformiOSSimulatorCoreSimulatorSupport.h100 class OSVersion {
102 OSVersion(const std::string &ver, const std::string &build);
104 OSVersion();
127 OSVersion GetVersion();
133 llvm::Optional<OSVersion> m_os_version;
179 bool operator>(const OSVersion &lhs, const OSVersion &rhs);
183 bool operator<(const OSVersion &lhs, const OSVersion &rhs);
187 bool operator==(const OSVersion &lhs, const OSVersion &rhs);
191 bool operator!=(const OSVersion &lhs, const OSVersion &rhs);
DPlatformiOSSimulatorCoreSimulatorSupport.mm150 CoreSimulatorSupport::OSVersion::OSVersion(const std::string &ver, function
171 CoreSimulatorSupport::OSVersion::OSVersion() : OSVersion("", "") {} function
187 CoreSimulatorSupport::OSVersion
194 m_os_version = OSVersion(utf8_ver_string, utf8_build_ver);
200 return OSVersion();
241 operator>(const CoreSimulatorSupport::OSVersion &lhs,
242 const CoreSimulatorSupport::OSVersion &rhs) {
267 operator<(const CoreSimulatorSupport::OSVersion &lhs,
268 const CoreSimulatorSupport::OSVersion &rhs) {
294 operator==(const CoreSimulatorSupport::OSVersion &lhs,
[all …]
/external/llvm-project/clang/lib/Driver/ToolChains/
DDarwin.cpp1393 return OSVersion; in getOSVersion()
1398 OSVersion = std::string(S); in setOSVersion()
1429 Argument = Args.MakeJoinedArg(nullptr, Opts.getOption(Opt), OSVersion); in addOSVersionMinArgument()
1444 return (llvm::Twine(EnvVarName) + "=" + OSVersion).str(); in getAsString()
1450 StringRef OSVersion, Arg *A) { in createFromTarget()
1451 DarwinPlatform Result(TargetArg, getPlatformFromOS(TT.getOS()), OSVersion, in createFromTarget()
1497 bool IsValid = !Version.tryParse(OSVersion); in inferSDKInfo()
1508 : Kind(Kind), Platform(Platform), OSVersion(Value), Argument(Argument) {} in DarwinPlatform()
1529 std::string OSVersion; member
1708 std::string OSVersion; in getOSVersion() local
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DPlatformApis.cs58 var platform = Environment.OSVersion.Platform; in PlatformApis()
/external/angle/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp1885 isIntel && IsApple() && IsSkylake(device) && GetMacOSVersion() < OSVersion(10, 13, 2)); in InitializeFeatures()
1899 GetMacOSVersion() < OSVersion(10, 11, 0)); in InitializeFeatures()
1903 IsApple() && isIntel && GetMacOSVersion() < OSVersion(10, 12, 0)); in InitializeFeatures()
1975 bool limitMaxTextureSize = isIntel && IsLinux() && GetLinuxOSVersion() < OSVersion(5, 0, 0); in InitializeFeatures()
1995 IsApple() && isIntel && GetMacOSVersion() >= OSVersion(10, 12, 4)); in InitializeFeatures()
1998 IsApple() && isIntel && GetMacOSVersion() < OSVersion(10, 12, 6)); in InitializeFeatures()
/external/llvm-project/clang/lib/Sema/
DSemaExprCXX.cpp1853 VersionTuple OSVersion = alignedAllocMinVersion(T.getOS()); in diagnoseUnavailableAlignedAllocation() local
1859 << OSVersion.getAsString() << OSVersion.empty(); in diagnoseUnavailableAlignedAllocation()