Searched refs:file_exists (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/chrome/test/mini_installer/
H A Dfile_verifier.py28 file_exists = os.path.exists(file_path)
29 assert expectation['exists'] == file_exists, \
30 ('File %s exists' % file_path) if file_exists else \
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A Ddownload.php19 if (file_exists($clickFile)) {
38 if (file_exists($clickFile)) {
/external/chromium_org/chrome/browser/chromeos/drive/
H A Ddownload_handler_unittest.cc175 bool file_exists = false; local
178 google_apis::test_util::CreateCopyResultCallback(&file_exists));
182 EXPECT_TRUE(file_exists);
190 google_apis::test_util::CreateCopyResultCallback(&file_exists));
194 EXPECT_FALSE(file_exists);
/external/chromium_org/chrome/browser/chromeos/login/
H A Dstartup_utils.cc124 bool file_exists = base::PathExists(oobe_complete_flag_file_path); local
125 SaveIntegerPreferenceForced(prefs::kDeviceRegistered, file_exists ? 1 : 0);
126 return file_exists;
/external/chromium/base/files/
H A Dfile_path_watcher_win.cc141 bool file_exists = file_util::GetFileInfo(target_, &file_info); local
142 if (file_exists && (last_modified_.is_null() ||
147 } else if (file_exists && !first_notification_.is_null()) {
168 } else if (!file_exists && !last_modified_.is_null()) {
/external/chromium_org/base/files/
H A Dfile_path_watcher_win.cc152 bool file_exists = GetFileInfo(target_, &file_info); local
153 if (file_exists && (last_modified_.is_null() ||
158 } else if (file_exists && !first_notification_.is_null()) {
178 } else if (!file_exists && !last_modified_.is_null()) {
/external/chromium/chrome/browser/extensions/
H A Dfile_reader_unittest.cc62 bool file_exists = file_util::ReadFileToString(path, &file_contents); local
72 EXPECT_EQ(file_exists, receiver.succeeded());
/external/chromium_org/net/url_request/
H A Durl_request_file_job.cc52 file_exists(false),
201 meta_info->file_exists = base::GetFileInfo(file_path, &platform_info);
202 if (meta_info->file_exists) {
223 if (!meta_info_.file_exists) {
H A Durl_request_file_job.h73 bool file_exists; member in struct:net::URLRequestFileJob::FileMetaInfo
/external/llvm/lib/Support/Windows/
H A Dsystem_error.inc64 MAP_ERR_TO_COND(ERROR_ALREADY_EXISTS, file_exists);
79 MAP_ERR_TO_COND(ERROR_FILE_EXISTS, file_exists);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dandroid.py204 def file_exists(self, full_path): member in class:AndroidCommands
688 if not self._android_commands.file_exists('/system/bin/perf'):
878 if not self._android_commands.file_exists(MD5SUM_DEVICE_PATH):
1071 return (self._android_commands.file_exists(self._in_fifo_path) and
1072 self._android_commands.file_exists(self._out_fifo_path) and
1073 self._android_commands.file_exists(self._err_fifo_path))
1079 return (not self._android_commands.file_exists(self._in_fifo_path) and
1080 not self._android_commands.file_exists(self._out_fifo_path) and
1081 not self._android_commands.file_exists(self._err_fifo_path))
1130 if self._android_commands.file_exists(cmd_line_file_pat
[all...]
H A Dandroid_unittest.py151 android_commands.file_exists('/some_directory')
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_storage.h114 void OnLoadFinished(bool file_exists,
H A Dbookmark_storage.cc210 void BookmarkStorage::OnLoadFinished(bool file_exists, const FilePath& path) { argument
211 if (path == writer_.path() && !file_exists) {
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dwork_unit.py140 def file_exists(path): function
160 if file_exists(path):
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
H A Dindex.php61 if (file_exists($countFile) && file_exists($indexFile)) {
/external/libvpx/libvpx/examples/includes/geshi/contrib/
H A Daliased.php36 if(!file_exists($path)) {
/external/chromium/chrome/browser/chromeos/login/
H A Dwizard_controller.cc752 bool file_exists = file_util::PathExists(oobe_complete_flag_file_path); local
753 SaveIntegerPreferenceForced(kDeviceRegistered, file_exists ? 1 : 0);
754 return file_exists;
/external/llvm/include/llvm/Support/
H A Dsystem_error.h145 file_exists, // EEXIST
513 file_exists = EEXIST, enumerator in enum:llvm::errc::_
875 file_exists = 80, // ERROR_FILE_EXISTS, enumerator in enum:llvm::windows_error::_
/external/llvm/lib/Support/Unix/
H A DPath.inc148 if (SavedErrno == errc::file_exists)
328 if (errno != errc::file_exists)
/external/chromium_org/content/browser/download/
H A Ddownload_browsertest.cc662 DownloadItem* download, bool file_exists,
666 ASSERT_EQ(file_exists, !expected_filename.empty());
671 EXPECT_EQ(file_exists,
675 if (file_exists) {
661 ConfirmFileStatusForResume( DownloadItem* download, bool file_exists, int received_bytes, int total_bytes, const base::FilePath& expected_filename) argument

Completed in 3088 milliseconds