Searched refs:mac_ver (Results 1 – 25 of 34) sorted by relevance
12
/external/python/cpython3/Lib/test/ |
D | test_platform.py | 221 res = platform.mac_ver() 265 info = platform.mac_ver() 368 for mac_ver, expected_terse, expected in [ 379 return_value=mac_ver):
|
D | test__osx_support.py | 69 self.assertTrue(platform.mac_ver()[0].startswith( 112 platform.mac_ver()[0].split('.')[0:2])
|
D | test_posix.py | 1921 self.mac_ver = tuple(int(part) for part in platform.mac_ver()[0].split(".")) 1929 if self.mac_ver >= (10, 16): 1939 if self.mac_ver >= (10, 10): 1950 if self.mac_ver >= (10, 10): 1967 if self.mac_ver >= (10, 10): 1979 if self.mac_ver >= (10, 10): 1991 if self.mac_ver >= (10, 10): 2030 if self.mac_ver >= (10, 10): 2044 if self.mac_ver >= (10, 10): 2055 if self.mac_ver >= (10, 10): [all …]
|
D | test_time.py | 1059 mac_ver = tuple(int(x) for x in platform.mac_ver()[0].split(".")) 1065 if mac_ver >= (10, 12):
|
D | test_cmath.py | 342 version_txt = platform.mac_ver()[0]
|
/external/python/cpython2/Lib/test/ |
D | test_platform.py | 189 res = platform.mac_ver() 237 info = platform.mac_ver()
|
D | test__osx_support.py | 70 self.assertTrue(platform.mac_ver()[0].startswith( 113 platform.mac_ver()[0].split('.')[0:2])
|
/external/tensorflow/tools/ |
D | tf_env_collect.sh | 82 platform.mac_ver(),
|
/external/llvm-project/lldb/test/API/commands/platform/sdk/ |
D | TestPlatformSDK.py | 59 macos_version = platform.mac_ver()[0]
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/ |
D | darwin_log.py | 46 version = platform.mac_ver()[0].split('.') 306 version = platform.mac_ver()[0].split('.')
|
D | decorators.py | 188 (platform.mac_ver()[0] != "") and (_check_expected_version( 191 platform.mac_ver()[0])))
|
/external/python/asn1crypto/dev/ |
D | _pep425.py | 153 plat_ver = platform.mac_ver()
|
D | coverage.py | 368 version = _plat.mac_ver()[0]
|
/external/llvm-project/lldb/test/API/macosx/nslog/ |
D | TestDarwinNSLogOutput.py | 141 match = re.match(r"^\d+\.(\d+)", platform.mac_ver()[0])
|
/external/python/setuptools/setuptools/ |
D | pep425tags.py | 123 release, _, machine = platform.mac_ver()
|
/external/python/pybind11/pybind11/ |
D | setup_helpers.py | 189 current_macos = tuple(int(x) for x in platform.mac_ver()[0].split(".")[:2])
|
/external/python/cpython3/Doc/library/ |
D | platform.rst | 83 On macOS, the function now uses :func:`mac_ver`, if it returns a 232 .. function:: mac_ver(release='', versioninfo=('','',''), machine='')
|
/external/python/cpython3/Lib/ |
D | platform.py | 431 def mac_ver(release='', versioninfo=('', '', ''), machine=''): function 1205 macos_release = mac_ver()[0]
|
/external/mesa3d/scons/ |
D | gallium.py | 496 if platform == 'darwin' and host_platform.mac_ver()[0] >= '10.15':
|
/external/python/cpython3/Mac/BuildScript/ |
D | build-installer.py | 157 return tuple([int(n) for n in platform.mac_ver()[0].split('.')[0:2]]) 1626 build_system_version = '.'.join(platform.mac_ver()[0].split('.')[0:2])
|
/external/python/cpython2/Doc/library/ |
D | platform.rst | 231 .. function:: mac_ver(release='', versioninfo=('','',''), machine='')
|
/external/python/cpython2/Lib/ |
D | platform.py | 782 def mac_ver(release='',versioninfo=('','',''),machine=''): function
|
/external/llvm-project/lldb/examples/python/ |
D | crashlog.py | 910 …(platform.mac_ver()[0], subprocess.check_output('sysctl -n kern.osversion', shell=True).decode("ut…
|
/external/python/cpython2/Lib/test/support/ |
D | __init__.py | 424 version_txt = platform.mac_ver()[0]
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.1rc1.rst | 1186 platform.mac_ver() no longer crashes after calling os.fork()
|
12