Searched defs:platform (Results 1 - 25 of 124) sorted by relevance

12345

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dsymlink_support.py3 import platform namespace
92 _symlink_win32 if platform.system() == 'Windows' else None
H A Dtest__osx_support.py6 import platform namespace
16 @unittest.skipUnless(sys.platform.startswith("darwin"), "requires OS X")
70 self.assertTrue(platform.mac_ver()[0].startswith(
111 import platform namespace
112 self.assertEqual(platform.mac_ver()[0].split('.') >= ['10', '4'],
275 if sys.platform == 'darwin':
H A Dtest_platform.py4 import platform namespace
11 res = platform.architecture()
17 'import platform; print platform.architecture()']
31 res = platform.platform(aliased, terse)
34 res = platform.system()
37 res = platform.node()
40 res = platform.release()
43 res = platform
[all...]
H A Dtest_posix.py12 import platform namespace
263 elif platform.system() in ('HP-UX', 'SunOS'):
465 'sunos' in sys.platform or
466 'netbsd' in sys.platform or
467 'openbsd' in sys.platform
492 if sys.platform == 'darwin':
513 if sys.platform == 'darwin':
H A Dregrtest.py169 import platform namespace
196 if sys.platform == 'darwin':
425 # Print basic platform information
426 print "==", platform.python_implementation(), \
428 print "== ", platform.platform(aliased=True), \
621 plat = sys.platform
1140 # Map sys.platform to a string containing the basenames of tests
1141 # expected to be skipped on that platform.
1151 # Tests that are expected to be skipped everywhere except on one platform
[all...]
H A Dtest_ssl.py18 import platform namespace
72 platform.linux_distribution() == ('debian', 'squeeze/sid', '')
H A Dtest_support.py13 import platform namespace
185 if sys.platform.startswith("win"):
322 socket.error will be raised at some point (depending on the platform and
418 is_jython = sys.platform.startswith('java')
428 # Unicode name only used if TEST_FN_ENCODING exists for the platform.
1155 """This function returns True or False depending on the host platform.
1162 return guards.get(platform.python_implementation().lower(), default)
1206 sys.platform == 'win32' or
H A Dtest_builtin.py3 import platform namespace
1372 linux_alpha = (platform.system().startswith('Linux') and
1373 platform.machine().startswith('alpha'))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dsymlink_support.py3 import platform namespace
92 _symlink_win32 if platform.system() == 'Windows' else None
H A Dtest__osx_support.py6 import platform namespace
16 @unittest.skipUnless(sys.platform.startswith("darwin"), "requires OS X")
70 self.assertTrue(platform.mac_ver()[0].startswith(
111 import platform namespace
112 self.assertEqual(platform.mac_ver()[0].split('.') >= ['10', '4'],
275 if sys.platform == 'darwin':
H A Dtest_platform.py4 import platform namespace
11 res = platform.architecture()
17 'import platform; print platform.architecture()']
31 res = platform.platform(aliased, terse)
34 res = platform.system()
37 res = platform.node()
40 res = platform.release()
43 res = platform
[all...]
H A Dtest_posix.py12 import platform namespace
263 elif platform.system() in ('HP-UX', 'SunOS'):
465 'sunos' in sys.platform or
466 'netbsd' in sys.platform or
467 'openbsd' in sys.platform
492 if sys.platform == 'darwin':
513 if sys.platform == 'darwin':
H A Dregrtest.py169 import platform namespace
196 if sys.platform == 'darwin':
425 # Print basic platform information
426 print "==", platform.python_implementation(), \
428 print "== ", platform.platform(aliased=True), \
621 plat = sys.platform
1140 # Map sys.platform to a string containing the basenames of tests
1141 # expected to be skipped on that platform.
1151 # Tests that are expected to be skipped everywhere except on one platform
[all...]
H A Dtest_ssl.py18 import platform namespace
72 platform.linux_distribution() == ('debian', 'squeeze/sid', '')
H A Dtest_support.py13 import platform namespace
185 if sys.platform.startswith("win"):
322 socket.error will be raised at some point (depending on the platform and
418 is_jython = sys.platform.startswith('java')
428 # Unicode name only used if TEST_FN_ENCODING exists for the platform.
1155 """This function returns True or False depending on the host platform.
1162 return guards.get(platform.python_implementation().lower(), default)
1206 sys.platform == 'win32' or
H A Dtest_builtin.py3 import platform namespace
1372 linux_alpha = (platform.system().startswith('Linux') and
1373 platform.machine().startswith('alpha'))
/prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
H A Dplatform-3.4.0.jar ... platform/unix/ com/sun/jna/platform/win32/ com/sun/jna/platform/wince/ com/sun/jna/platform/FileMonitor$FileEvent.class ...
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
H A Dupload.py6 import platform namespace
112 'platform': meta.get_platforms(),
122 dist, version, id = platform.dist()
126 comment = 'built for %s' % platform.platform(terse=1)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
H A Dupload.py6 import platform namespace
112 'platform': meta.get_platforms(),
122 dist, version, id = platform.dist()
126 comment = 'built for %s' % platform.platform(terse=1)
/prebuilts/misc/common/com.android.uiautomator.platform.common/
H A Dcom.android.uiautomator.platform.common.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/uiautomator/ com/android/uiautomator/common/ ...
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
H A Dbundlebuilder.py361 # platform, name of the subfolder of Contents that contains the executable.
362 platform = "MacOS" variable in class:AppBuilder
429 self.execdir = pathjoin("Contents", self.platform)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dplatform.py3 """ This module tries to retrieve as much platform-identifying data as
6 If called from the command line, it prints the platform
23 # Many thanks to all those who helped adding platform-specific
74 # 0.4.0 - added win32_ver() and modified the platform() output for WinXX
77 # 0.3.2 - added architecture() API and support for it in platform()
82 # 0.2.1 - added cache logic and changed the platform string format
89 # http://www.egenix.com/files/python/platform.py
120 # Determine the platform's /dev/null device
126 if sys.platform in ('dos','win32','win16','os2'):
440 if sys.platform
1555 def platform(aliased=0, terse=0): function
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dplatform.py3 """ This module tries to retrieve as much platform-identifying data as
6 If called from the command line, it prints the platform
23 # Many thanks to all those who helped adding platform-specific
74 # 0.4.0 - added win32_ver() and modified the platform() output for WinXX
77 # 0.3.2 - added architecture() API and support for it in platform()
82 # 0.2.1 - added cache logic and changed the platform string format
89 # http://www.egenix.com/files/python/platform.py
120 # Determine the platform's /dev/null device
126 if sys.platform in ('dos','win32','win16','os2'):
440 if sys.platform
1555 def platform(aliased=0, terse=0): function
[all...]
/prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/1.2.4/
H A Dgradle-experimental-1.2.4.jar ... java.lang.String) String toolchain String toolchainVersion String platform private static java.io.File findNdkDirectory (java. ...
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-p2-facade/0.20.0/
H A Dtycho-p2-facade-0.20.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/plexus/ org/ org/eclipse/ org/eclipse/tycho/ ...

Completed in 641 milliseconds

12345