HomeSort by relevance Sort by last modified time
    Searched full:getwindowsversion (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo.py 160 if hasattr(sys_module, 'getwindowsversion'):
161 return sys_module.getwindowsversion()
platforminfo_unittest.py 43 getwindowsversion = lambda x: windows_version_tuple variable in class:fake_sys.FakeSysModule
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sys.py 240 # Raise SkipTest if sys doesn't have getwindowsversion attribute
241 test.test_support.get_attribute(sys, "getwindowsversion")
242 v = sys.getwindowsversion()
267 maj, min, buildno, plat, csd = sys.getwindowsversion()
test_import.py 624 not hasattr(sys, 'getwindowsversion')
625 or sys.getwindowsversion() >= (6, 0),
test_winreg.py 21 WIN_VER = sys.getwindowsversion()[:2]
test_support.py 445 if (not hasattr(sys, "getwindowsversion") or
446 sys.getwindowsversion()[3] < 2): # 0=win32s or 1=9x/ME
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sys.py 240 # Raise SkipTest if sys doesn't have getwindowsversion attribute
241 test.test_support.get_attribute(sys, "getwindowsversion")
242 v = sys.getwindowsversion()
267 maj, min, buildno, plat, csd = sys.getwindowsversion()
test_import.py 624 not hasattr(sys, 'getwindowsversion')
625 or sys.getwindowsversion() >= (6, 0),
test_winreg.py 21 WIN_VER = sys.getwindowsversion()[:2]
test_support.py 445 if (not hasattr(sys, "getwindowsversion") or
446 sys.getwindowsversion()[3] < 2): # 0=win32s or 1=9x/ME
    [all...]
  /external/chromium_org/chrome/installer/gcapi/
gcapi.cc 235 WindowsVersion GetWindowsVersion() {
299 if ((GetWindowsVersion() < VERSION_VISTA_OR_HIGHER) ||
406 WindowsVersion windows_version = GetWindowsVersion();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ntpath.py 483 supports_unicode_filenames = (hasattr(sys, "getwindowsversion") and
484 sys.getwindowsversion()[3] >= 2)
platform.py 590 sys.getwindowsversion
596 # sys.getwindowsversion() (added in Python 2.3)
598 GetVersionEx = sys.getwindowsversion
653 # Without an OSVERSIONINFOEX capable sys.getwindowsversion(),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ntpath.py 483 supports_unicode_filenames = (hasattr(sys, "getwindowsversion") and
484 sys.getwindowsversion()[3] >= 2)
platform.py 590 sys.getwindowsversion
596 # sys.getwindowsversion() (added in Python 2.3)
598 GetVersionEx = sys.getwindowsversion
653 # Without an OSVERSIONINFOEX capable sys.getwindowsversion(),
    [all...]
  /external/chromium_org/chrome/test/pyautolib/
pyauto.py 664 ver = sys.getwindowsversion()
672 ver = sys.getwindowsversion()
680 ver = sys.getwindowsversion()
    [all...]

Completed in 267 milliseconds