Home
last modified time | relevance | path

Searched refs:exists (Results 126 - 150 of 2119) sorted by relevance

12345678910>>...85

/third_party/python/Tools/freeze/
H A Dfreeze.py46 by the frozen binary if it exists on the host system.
218 ishome = os.path.exists(os.path.join(prefix, 'Python', 'ceval.c'))
258 if not os.path.exists(dir):
267 if not os.path.exists(file):
274 if not os.path.exists(setup):
292 if not os.path.exists(arg):
457 if os.path.exists(makefile_in):
/third_party/python/Lib/test/
H A Dtest_dbm_dumb.py249 self.assertFalse(os.path.exists(_fname + '.dir'))
250 self.assertFalse(os.path.exists(_fname + '.bak'))
259 self.assertFalse(os.path.exists(_fname + '.dir'))
260 self.assertFalse(os.path.exists(_fname + '.bak'))
292 self.assertTrue(os.path.exists(filename + '.dat'))
293 self.assertTrue(os.path.exists(filename + '.dir'))
/test/testfwk/developer_test/src/core/command/
H A Dgen.py38 if not os.path.exists(fuzz_path):
62 if os.path.exists(filepath):
/test/testfwk/developer_test/local_coverage/interface_coverage/
H A Dget_innerkits_json.py44 if os.path.exists(output_json_path):
56 if os.path.exists(path):
/test/testfwk/xdevice/src/xdevice/
H A D__main__.py52 if os.path.exists(to_path):
63 if not os.path.exists(to_path):
/test/xts/acts/commonlibrary/toolchain/libc-test/
H A Dtar_files.py37 if os.path.exists(targetdir):
42 elif not os.path.exists(targetdir):
/third_party/benchmark/
H A D.ycm_extra_conf.py34 if os.path.exists( compilation_database_folder ):
82 # corresponding source file, if any. If one exists, the flags for that file
88 if os.path.exists( replacement_file ):
/third_party/mbedtls/scripts/
H A Decp_comb_table.py233 if not os.path.exists(shared_lib_path) and not os.path.exists(static_lib_path):
234 print("Warning: both '%s' and '%s' are not exists. This script will use "
/third_party/ltp/testcases/kernel/device-drivers/rtc/
H A Drtc02.c137 int exists = access(rtc_dev, F_OK); in rtc_setup() local
139 if (exists < 0) in rtc_setup()
/third_party/node/test/parallel/
H A Dtest-domain-with-abort-on-uncaught-exception.js67 fs.exists('/non/existing/file', function onExists(exists) {
68 throw new Error('Error from fs.exists callback');
/third_party/ltp/testcases/kernel/syscalls/ioctl/
H A Dioctl_ns06.c33 int exists = access("/proc/self/ns/user", F_OK); in setup() local
35 if (exists < 0) in setup()
H A Dioctl_ns05.c32 int exists = access("/proc/self/ns/pid", F_OK); in setup() local
34 if (exists < 0) in setup()
/third_party/skia/third_party/externals/angle2/scripts/
H A Dupdate_chrome_angle.py48 if os.path.exists(binary_path):
82 if os.path.exists(src):
/third_party/vk-gl-cts/external/openglcts/scripts/
H A Dverify_kc_cts_rev.py48 if os.path.exists(fullDstPath):
60 if not os.path.exists(fullDstPath):
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dcheck-symbols.py28 if not os.path.exists (so): continue
52 if not os.path.exists (def_path):
/third_party/skia/third_party/externals/harfbuzz/test/fuzzing/
H A Drun-draw-fuzzer-tests.py29 if not os.path.exists (hb_draw_fuzzer):
30 if len (sys.argv) == 1 or not os.path.exists (sys.argv[1]):
H A Drun-shape-fuzzer-tests.py29 if not os.path.exists (hb_shape_fuzzer):
30 if len (sys.argv) == 1 or not os.path.exists (sys.argv[1]):
H A Drun-subset-fuzzer-tests.py29 if not os.path.exists (hb_subset_fuzzer):
30 if len (sys.argv) < 2 or not os.path.exists (sys.argv[1]):
/third_party/python/Lib/test/test_zoneinfo/data/
H A Dupdate_test_data.py46 if (path / key).exists():
56 if not tzdata_zi.exists():
/third_party/skia/infra/bots/assets/svg/
H A Dcreate.py30 if not os.path.exists(target_svg_dir):
33 if not os.path.exists(target_image_dir):
/third_party/skia/build/fuchsia/skqp/
H A Dappend_assets_to_manifest26 if not os.path.exists(root_dir):
31 if not os.path.exists(base_manifest):
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeDirectoryIterator.cpp40 DE_CHECK_RUNTIME_ERR(m_path.exists()); in DirectoryIterator()
85 DE_CHECK_RUNTIME_ERR(m_path.exists());
/third_party/python/Lib/
H A Dpathlib.py26 _WINERROR_NOT_READY = 21 # drive exists but is not accessible
318 exists = path_cls.exists
322 return self._select_from(parent_path, is_dir, exists, scandir)
327 def _select_from(self, parent_path, is_dir, exists, scandir):
337 def _select_from(self, parent_path, is_dir, exists, scandir):
340 if (is_dir if self.dironly else exists)(path):
341 for p in self.successor._select_from(path, is_dir, exists, scandir):
353 def _select_from(self, parent_path, is_dir, exists, scandir):
372 for p in self.successor._select_from(path, is_dir, exists, scandi
1230 def exists(self): global() member in Path
[all...]
/third_party/vk-gl-cts/modules/glshared/
H A DglsLifetimeTests.cpp920 errors.check(m_type.exists(*name), "Gen* should have created an object, but didn't"); in testGen()
922 errors.check(!m_type.exists(*name), "Gen* should not have created an object, but did"); in testGen()
931 errors.check(!m_type.exists(name), "Object still exists after deletion"); in testDelete()
941 errors.check(m_type.exists(*name), "Object does not exist after binding"); in testBind()
958 errors.check(m_type.exists(id), in testDeleteBound()
969 errors.check(!m_type.exists(id), in testDeleteBound()
975 errors.check(!m_type.exists(id), "Name is still valid after deleting and unbinding"); in testDeleteBound()
983 if (!errors.check(!m_type.exists(id), "Randomly chosen identifier already exists")) in testBindNoGen()
[all...]
/foundation/filemanagement/file_api/interfaces/kits/cj/src/
H A Dtranslistener.cpp38 if (std::filesystem::exists(pathName, errCode)) { in RmDir()
44 LOGE("pathName is not exists, error code: %{public}d", errCode.value()); in RmDir()
52 while (std::filesystem::exists(DISTRIBUTED_PATH + random)) { in CreateDfsCopyPath()
132 if (std::filesystem::exists(sandboxDir, errCode)) { in PrepareCopySession()
156 if (std::filesystem::exists(sandboxPath) && std::filesystem::is_directory(sandboxPath)) { in CopyToSandBox()

Completed in 11 milliseconds

12345678910>>...85