Home
last modified time | relevance | path

Searched refs:exists (Results 301 - 325 of 775) sorted by relevance

1...<<11121314151617181920>>...31

/third_party/rust/crates/rust-openssl/openssl-sys/build/
H A Dmain.rs51 // 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 Dunicode.py68 if not os.path.exists(os.path.basename(filename)):
330 if os.path.exists(out_name):
/third_party/python/Lib/
H A Dshutil.py283 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 Dtest_config.py170 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 Dstatfs.rs475 // 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 DdumpICUrules.bat110 # 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 Dvarsub.bat58 if (exists $VAR{$var}) {
/third_party/mbedtls/scripts/
H A Dabi_check.py141 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 Dcode_generator.py581 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 Dtest_scripts.py211 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 Dgcmole.py662 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 Dcode_generator.py581 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 Dgenerate_stats.py713 if not os.path.exists(auth_path):
716 if not os.path.exists(credentials_path):
722 if os.path.exists(token_path):
H A Dprocess_angle_perf_results.py183 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 Dhb-directwrite.cc828 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 Dtest_sysconfig.py454 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 Dupdate_glslang_sources.py113 if not os.path.exists(os.path.join(self.subdir,'.git')):
/third_party/googletest/googletest/scripts/
H A Dfuse_gtest_files.py90 """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 Dgtest_test_utils.py165 if not os.path.exists(path):
/third_party/mbedtls/tests/scripts/
H A Dtest_psa_compliance.py48 if not os.path.exists(crypto_lib_filename):
H A Dgenerate_test_cert_macros.py23 if self.dest in ('string', 'binary') and not os.path.exists(filename):
/third_party/ltp/testcases/commands/mkswap/
H A Dmkswap01.sh126 udevadm settle --exit-if-exists==$TST_DEVICE
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/tools/
H A Dworkbench.py40 if os.path.exists(TEST_CASES):
/third_party/node/deps/v8/tools/
H A Dgenerate-builtins-tests.py111 if os.path.exists(options.outdir):
/third_party/node/deps/v8/tools/generate_shim_headers/
H A Dgenerate_shim_headers.py70 if options.generate and not os.path.exists(target_directory):

Completed in 17 milliseconds

1...<<11121314151617181920>>...31