/third_party/rust/crates/rust-openssl/openssl-sys/build/ |
H A D | main.rs | 51 // OPENSSL_NO_VENDOR exists and isn't `0` in find_openssl() 75 if !lib_dirs.iter().all(|p| Path::new(p).exists()) { in main() 78 if !Path::new(&include_dir).exists() { in main()
|
/third_party/rust/crates/unicode-width/scripts/ |
H A D | unicode.py | 68 if not os.path.exists(os.path.basename(filename)): 330 if os.path.exists(out_name):
|
/third_party/python/Lib/ |
H A D | shutil.py | 283 if not os.path.exists(dst): 359 # use the real function if it exists 363 # use the real function only if it exists 487 if not os.path.exists(linkto) and ignore_dangling_symlinks: 552 If dirs_exist_ok is false (the default) and `dst` already exists, a 792 If the destination already exists but is not a directory, it may be 822 if os.path.exists(real_dst): 823 raise Error("Destination path '%s' already exists" % real_dst) 933 if archive_dir and not os.path.exists(archive_dir): 981 if archive_dir and not os.path.exists(archive_di [all...] |
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_config.py | 170 self.assertFalse(os.path.exists(path)) 172 self.assertTrue(os.path.exists(path)) 177 self.assertFalse(os.path.exists(path)) 228 with mock.patch('os.path.exists', return_value=True): 238 # Check user dir not exists and created failed should raise SystemExit 239 with mock.patch('os.path.join', return_value='/path/not/exists'): 251 with mock.patch('os.path.exists', return_value=True): 261 # Check user dir not exists and created failed should raise SystemExit 262 with mock.patch('os.path.join', return_value='/path/not/exists'): 487 # Test keybinding not exists [all...] |
/third_party/rust/crates/nix/src/sys/ |
H A D | statfs.rs | 475 // The f_flags field exists on Android and Fuchsia too, but without man 780 if !Path::new(path).exists() { in check_fstatfs() 790 if !Path::new(path).exists() { in check_statfs() 829 if !Path::new(path).exists() { in check_fstatfs_strict() 839 if !Path::new(path).exists() { in check_statfs_strict()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | dumpICUrules.bat | 110 # Flag a rule as JAVA_ONLY if it exists and we use it in Java, 198 if (($ID && $leaf =~ /$ID/) || exists $USED_FILES{$leaf}) { 225 if (!exists $NAME_MAP{$id}) {
|
H A D | varsub.bat | 58 if (exists $VAR{$var}) {
|
/third_party/mbedtls/scripts/ |
H A D | abi_check.py | 141 self.can_remove_report_dir = not (os.path.exists(self.report_dir) or 209 if version.crypto_revision exists, update it to that revision, 217 if not (os.path.exists(os.path.join(git_worktree_path, "crypto")) 245 if os.path.exists(os.path.join(git_worktree_path, "crypto")):
|
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | code_generator.py | 581 if not os.path.exists(config.protocol.output): 583 if len(protocol.exported_domains) and not os.path.exists( 690 if (not os.path.exists(output_file)
|
/third_party/node/deps/v8/tools/release/ |
H A D | test_scripts.py | 211 if not os.path.exists(os.path.dirname(version_file)): 225 if not os.path.exists(os.path.dirname(watchlists_file)): 283 if os.path.exists(TEST_CONFIG["PERSISTFILE_BASENAME"]):
|
/third_party/node/deps/v8/tools/gcmole/ |
H A D | gcmole.py | 662 if not (options.clang_bin_dir / 'clang++').exists(): 683 if not options.v8_build_dir.exists() and os.getenv("CLANG_BIN"): 691 if options.v8_build_dir.exists():
|
/third_party/node/tools/inspector_protocol/ |
H A D | code_generator.py | 581 if not os.path.exists(config.protocol.output): 583 if len(protocol.exported_domains) and not os.path.exists(config.exported.output): 689 if not os.path.exists(output_file) or os.path.getmtime(output_file) < inputs_ts:
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | generate_stats.py | 713 if not os.path.exists(auth_path): 716 if not os.path.exists(credentials_path): 722 if os.path.exists(token_path):
|
H A D | process_angle_perf_results.py | 183 if os.path.exists(benchmark_log_file): 408 if not os.path.exists(merge_perf_dir): 634 if os.path.exists(output_file):
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-directwrite.cc | 828 BOOL exists; in _hb_directwrite_reference_table() local 830 &length, &table_context, &exists))) in _hb_directwrite_reference_table() 833 if (!data || !exists || !length) in _hb_directwrite_reference_table()
|
/third_party/python/Lib/test/ |
H A D | test_sysconfig.py | 454 self.assertTrue(os.path.exists(Python_h), Python_h) 455 # <srcdir>/PC/pyconfig.h always exists even if unused on POSIX. 457 self.assertTrue(os.path.exists(pyconfig_h), pyconfig_h) 459 self.assertTrue(os.path.exists(pyconfig_h_in), pyconfig_h_in)
|
/third_party/glslang/ |
H A D | update_glslang_sources.py | 113 if not os.path.exists(os.path.join(self.subdir,'.git')):
|
/third_party/googletest/googletest/scripts/ |
H A D | fuse_gtest_files.py | 90 """Verifies that the given file exists; aborts on failure. 121 if os.path.exists(output_file): 125 print('%s already exists in directory %s - overwrite it? (y/N) ' % 132 # Makes sure the directory holding the output file exists; creates
|
/third_party/googletest/googletest/test/ |
H A D | gtest_test_utils.py | 165 if not os.path.exists(path):
|
/third_party/mbedtls/tests/scripts/ |
H A D | test_psa_compliance.py | 48 if not os.path.exists(crypto_lib_filename):
|
H A D | generate_test_cert_macros.py | 23 if self.dest in ('string', 'binary') and not os.path.exists(filename):
|
/third_party/ltp/testcases/commands/mkswap/ |
H A D | mkswap01.sh | 126 udevadm settle --exit-if-exists==$TST_DEVICE
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/tools/ |
H A D | workbench.py | 40 if os.path.exists(TEST_CASES):
|
/third_party/node/deps/v8/tools/ |
H A D | generate-builtins-tests.py | 111 if os.path.exists(options.outdir):
|
/third_party/node/deps/v8/tools/generate_shim_headers/ |
H A D | generate_shim_headers.py | 70 if options.generate and not os.path.exists(target_directory):
|