/external/chromium/chrome/browser/download/ |
download_types.h | 11 #include "base/file_path.h" 42 FilePath file_path; member in struct:DownloadSaveInfo
|
save_file_manager.cc | 456 FilePath file_path; local 457 net::FileURLToFilePath(original_file_url, &file_path); 460 if (file_path.empty()) 465 bool success = file_util::CopyFile(file_path, save_file->full_path());
|
save_package.cc | 9 #include "base/file_path.h" 428 FilePath file_path = FilePath(suggested_name); local 430 FilePath file_path = FilePath( local 434 DCHECK(!file_path.empty()); 436 file_path.RemoveExtension().BaseName().value(); 437 FilePath::StringType file_name_ext = file_path.Extension(); [all...] |
/external/chromium/chrome/browser/tab_contents/ |
web_drag_dest_gtk.cc | 9 #include "base/file_path.h" 172 FilePath file_path; local 174 net::FileURLToFilePath(url, &file_path)) { 175 drop_data_->filenames.push_back(UTF8ToUTF16(file_path.value()));
|
/external/chromium/chrome/browser/ui/ |
shell_dialogs_unittest.cc | 5 #include "base/file_path.h" 33 const FilePath file_path; local 39 file_path,
|
/external/chromium/net/base/ |
mime_util_unittest.cc | 37 const FilePath::CharType* file_path; member in struct:net::__anon3482 53 rv = GetMimeTypeFromFile(FilePath(tests[i].file_path),
|
gzip_filter_unittest.cc | 69 FilePath file_path; local 70 PathService::Get(base::DIR_SOURCE_ROOT, &file_path); 71 file_path = file_path.AppendASCII("net"); 72 file_path = file_path.AppendASCII("data"); 73 file_path = file_path.AppendASCII("filter_unittests"); 74 file_path = file_path.AppendASCII("google.txt") [all...] |
upload_data.h | 12 #include "base/file_path.h" 58 const FilePath& file_path() const { return file_path_; } function in class:net::UploadData::Element 147 void AppendFile(const FilePath& file_path); 149 void AppendFileRange(const FilePath& file_path, 207 return a.file_path() == b.file_path() &&
|
/external/chromium/chrome/browser/ |
browsing_data_local_storage_helper.h | 13 #include "base/file_path.h" 41 const FilePath& file_path, 55 FilePath file_path; member in struct:BrowsingDataLocalStorageHelper::LocalStorageInfo 72 virtual void DeleteLocalStorageFile(const FilePath& file_path); 100 void DeleteLocalStorageFileInWebKitThread(const FilePath& file_path);
|
browsing_data_indexed_db_helper.h | 13 #include "base/file_path.h" 40 const FilePath& file_path, 54 FilePath file_path; member in struct:BrowsingDataIndexedDBHelper::IndexedDBInfo 73 virtual void DeleteIndexedDBFile(const FilePath& file_path) = 0; 108 virtual void DeleteIndexedDBFile(const FilePath& file_path) {}
|
browsing_data_local_storage_helper_browsertest.cc | 9 #include "base/file_path.h" 49 FilePath file_path = storage_path.Append(kFilesToCreate[i]); local 50 file_util::WriteFile(file_path, NULL, 0); 128 for (FilePath file_path = file_enumerator.Next(); 129 !file_path.empty(); 130 file_path = file_enumerator.Next()) { 131 ASSERT_FALSE(FilePath(kTestFile0) == file_path.BaseName()); 159 EXPECT_EQ(FilePath(file1).value(), result[0].file_path.BaseName().value()); 160 EXPECT_EQ(FilePath(file2).value(), result[1].file_path.BaseName().value()); 181 EXPECT_EQ(FilePath(file).value(), result[0].file_path.BaseName().value()) [all...] |
browsing_data_database_helper.cc | 103 FilePath file_path = tracker_->GetFullDBFilePath(ori->GetOrigin(), *db); local 105 if (file_util::GetFileInfo(file_path, &file_info)) {
|
browser_focus_uitest.cc | 144 FilePath file_path; local 145 bool r = PathService::Get(chrome::DIR_TEST_DATA, &file_path); 147 file_path = file_path.AppendASCII("focus"); 148 file_path = file_path.AppendASCII(kTypicalPageName); 149 r = file_util::ReadFileToString(file_path, &html_contents_); [all...] |
/external/chromium/chrome/browser/net/ |
url_request_mock_net_error_job.cc | 77 FilePath file_path; local 78 net::FileURLToFilePath(GURL(WideToUTF8(file_url)), &file_path); 81 file_path); 86 const FilePath& file_path) 87 : URLRequestMockHTTPJob(request, file_path),
|
url_request_mock_http_job.cc | 69 FilePath file_path; local 70 net::FileURLToFilePath(GURL(url), &file_path); local 71 return file_path; 75 const FilePath& file_path) 76 : net::URLRequestFileJob(request, file_path) { }
|
/external/chromium/webkit/glue/ |
webfileutilities_impl.cc | 7 #include "base/file_path.h" 32 FilePath::StringType file_path = WebStringToFilePathString(path); local 33 return file_util::PathExists(FilePath(file_path)); 70 FilePath file_path(WebStringToFilePathString(path)); 71 return FilePathToWebString(file_path.DirName()); 85 FilePath::StringType file_path = WebStringToFilePathString(path); local 86 return file_util::CreateDirectory(FilePath(file_path)); 90 FilePath file_path(WebStringToFilePathString(path)); 91 file_util::AbsolutePath(&file_path); 92 return FilePathStringToWebString(file_path.value()) [all...] |
dom_serializer_unittest.cc | 6 #include "base/file_path.h" 178 WebString file_path = webkit_glue::FilePathStringToWebString( local 180 local_paths_.assign(&file_path, 1); [all...] |
glue_serialize.cc | 272 WebString file_path = ReadString(obj); local 281 http_body.appendFileRange(file_path, file_start, file_length,
|
/external/chromium/base/ |
path_service.cc | 13 #include "base/file_path.h" 213 FilePath file_path = path; local 218 if (!file_util::PathExists(file_path) && 219 !file_util::CreateDirectory(file_path)) 225 if (!file_util::AbsolutePath(&file_path)) 234 path_data->cache[key] = file_path; 235 path_data->overrides[key] = file_path;
|
platform_file_unittest.cc | 64 FilePath file_path = temp_dir.path().AppendASCII("create_file_1"); local 69 file_path, base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ, 78 file_path, base::PLATFORM_FILE_OPEN_ALWAYS | base::PLATFORM_FILE_READ, 88 file_path, base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ, 97 file_path, base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_READ, 106 file_path, base::PLATFORM_FILE_CREATE_ALWAYS | base::PLATFORM_FILE_READ, 115 file_path = temp_dir.path().AppendASCII("create_file_2"); 117 file_path, 127 EXPECT_FALSE(file_util::PathExists(file_path)); 133 FilePath file_path = temp_dir.path().AppendASCII("read_write_file") local 205 FilePath file_path = temp_dir.path().AppendASCII("truncate_file"); local [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
tab_contents_drag_source.cc | 233 FilePath file_path; local 234 if (net::FileURLToFilePath(file_url, &file_path)) { 237 drag_download_util::CreateFileStreamForDrop(&file_path); 242 new DragDownloadFile(file_path,
|
/external/chromium/net/url_request/ |
url_request_file_job.cc | 51 void Resolve(const FilePath& file_path) { 53 bool exists = file_util::GetFileInfo(file_path, &file_info); 86 const FilePath& file_path) 88 file_path_(file_path), 100 FilePath file_path; local 101 const bool is_file = FileURLToFilePath(request->url(), &file_path); 105 if (AccessDisabled(file_path)) 116 file_util::EndsWithSeparator(file_path) && 117 file_path.IsAbsolute()) 118 return new URLRequestFileDirJob(request, file_path); [all...] |
/external/chromium/chrome/browser/chromeos/cros/ |
mount_library.h | 41 const std::string& file_path, 58 const std::string& file_path() const { return file_path_; } function in class:chromeos::MountLibrary::Disk
|
/external/chromium/chrome/browser/first_run/ |
first_run.cc | 434 FilePath file_path = cmdline.GetSwitchValuePath(switches::kImportFromFile); local 435 if (file_path.empty()) { 444 source_profile.source_path = file_path;
|
/external/chromium/chrome/browser/ui/webui/ |
plugins_ui.cc | 265 FilePath::StringType file_path; local 266 if (!args->GetString(0, &file_path)) 269 plugin_updater->EnablePlugin(enable, file_path);
|