Home
last modified time | relevance | path

Searched refs:is_windows (Results 1 – 6 of 6) sorted by relevance

/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
Dfake_filesystem_vs_real_test.py44 is_windows = sys.platform.startswith('win') variable in TestCase
318 os_method_names = [] if self.is_windows else ['readlink']
327 if not self.is_windows:
452 @unittest.skipIf(TestCase.is_windows, 'no symlink in Windows')
458 @unittest.skipIf(TestCase.is_windows, 'no symlink in Windows')
464 @unittest.skipIf(TestCase.is_windows, 'no symlink in Windows')
470 @unittest.skipIf(TestCase.is_windows, 'no symlink in Windows')
476 @unittest.skipIf(TestCase.is_windows, 'no symlink in Windows')
488 @unittest.skipIf(TestCase.is_windows, 'no symlink in Windows')
496 @unittest.skipIf(TestCase.is_windows, 'no symlink in Windows')
[all …]
Dfake_filesystem_test.py42 is_windows = sys.platform.startswith('win') variable in TestCase
1847 @unittest.skipIf(TestCase.is_windows, 'realpath does not follow symlinks in win32')
1883 if self.is_windows:
1890 @unittest.skipIf(TestCase.is_windows or TestCase.is_cygwin,
1976 @unittest.skipIf(sys.version_info >= (3, 0) or TestCase.is_windows,
1994 @unittest.skipIf(sys.version_info >= (3, 0) or TestCase.is_windows,
/external/libcxx/utils/libcxx/test/
Dconfig.py58 self.is_windows = platform.system() == 'Windows'
113 if self.is_windows:
401 if self.is_windows:
425 if self.is_windows:
479 if self.is_windows and self.debug_build:
490 not self.is_windows:
498 if self.is_windows and self.debug_build and \
640 if self.is_windows:
669 if self.is_windows and self.link_shared:
672 if not self.is_windows:
[all …]
Dexecutor.py37 self.is_windows = platform.system() == 'Windows'
47 if not self.is_windows:
61 if not self.is_windows or exec_env is None:
/external/clang/
Dbuild.py240 is_windows = host.startswith('windows')
242 bin_ext = '.exe' if is_windows else ''
244 if is_windows:
255 if not is_windows:
266 if is_windows:
597 is_windows = host.startswith('windows')
598 bin_ext = '.exe' if is_windows else ''
605 if is_windows:
/external/clang/utils/check_cfc/
Dcheck_cfc.py64 def is_windows(): function
233 stderr=subprocess.PIPE, env=my_env, shell=is_windows())
351 p = subprocess.Popen(arguments_a, env=my_env, shell=is_windows())