Searched defs:file_path (Results 1 - 25 of 314) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/value_store/
H A Dleveldb_value_store_unittest.cc12 ValueStore* Param(const base::FilePath& file_path) { argument
13 return new LeveldbValueStore(file_path);
H A Dtesting_value_store_unittest.cc13 ValueStore* Param(const base::FilePath& file_path) { argument
/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_node_data_mac.cc23 base::FilePath file_path; local
27 &file_path)) {
31 profile_path_ = file_path;
36 base::FilePath file_path; local
40 &file_path)) {
44 profile_path_ = file_path;
/external/chromium_org/chrome/browser/extensions/
H A Dextension_creator_filter.cc7 #include "base/files/file_path.h"
16 const base::FilePath& file_path) {
17 const base::FilePath& base_name = file_path.BaseName();
44 // It's correct that we use file_path, not base_name, here, because we
46 DWORD file_attributes = ::GetFileAttributes(file_path.value().c_str());
15 ShouldPackageFile( const base::FilePath& file_path) argument
H A Dad_view_browsertest.cc134 base::FilePath file_path = test_data_dir_ local
146 interceptor.SetResponse(url, file_path);
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsignature_util_posix.cc17 const base::FilePath& file_path,
16 CheckSignature( const base::FilePath& file_path, ClientDownloadRequest_SignatureInfo* signature_info) argument
/external/chromium_org/media/base/
H A Dtest_data_util.cc15 base::FilePath file_path; local
16 CHECK(PathService::Get(base::DIR_SOURCE_ROOT, &file_path));
18 file_path = file_path.Append(FILE_PATH_LITERAL("media"))
21 return file_path;
25 base::FilePath file_path; local
26 CHECK(PathService::Get(base::DIR_SOURCE_ROOT, &file_path));
28 file_path = file_path.Append(FILE_PATH_LITERAL("media"))
33 CHECK(file_util::GetFileSize(file_path,
[all...]
/external/chromium_org/ui/shell_dialogs/
H A Dselected_file_info.h10 #include "base/files/file_path.h"
19 base::FilePath file_path; member in struct:ui::SelectedFileInfo
23 // |real_path| can differ from |file_path| for drive files (e.g.
26 // If not set, defaults to |file_path|.
/external/chromium/base/
H A Dvalue_conversions.cc7 #include "base/file_path.h"
19 std::string FilePathToUTF8(const FilePath& file_path) { argument
21 return WideToUTF8(SysNativeMBToWide(file_path.value()));
23 return UTF16ToUTF8(file_path.value());
43 bool GetValueAsFilePath(const Value& value, FilePath* file_path) { argument
47 if (file_path)
48 *file_path = UTF8ToFilePath(str);
/external/chromium/chrome/browser/download/
H A Ddownload_types.h11 #include "base/file_path.h"
42 FilePath file_path; member in struct:DownloadSaveInfo
/external/chromium_org/base/mac/
H A Dmac_logging.cc15 OSStatusLogMessage::OSStatusLogMessage(const char* file_path, argument
19 : LogMessage(file_path, line, severity),
/external/chromium_org/chrome/browser/
H A Dicon_loader.cc13 IconLoader::IconLoader(const base::FilePath& file_path, argument
17 file_path_(file_path),
/external/chromium_org/chrome_frame/test/
H A Dsimple_resource_loader_test.cc7 #include "base/files/file_path.h"
15 base::FilePath file_path; local
/external/chromium_org/content/public/browser/
H A Ddownload_save_info.h8 #include "base/files/file_path.h"
16 // In the case of download continuation, |file_path| is set to the current file
26 base::FilePath file_path; member in struct:content::DownloadSaveInfo
29 // a path (only a filename), and is only effective if |file_path| is empty.
41 // If |prompt_for_save_location| is true, and |file_path| is empty, then
43 // the location will be determined automatically using |file_path| as a
44 // basis if |file_path| is not empty.
/external/chromium_org/courgette/
H A Dbase_test_unittest.cc21 base::FilePath file_path = test_dir_; local
22 file_path = file_path.AppendASCII(file_name);
25 EXPECT_TRUE(file_util::ReadFileToString(file_path, &file_bytes));
/external/chromium_org/net/url_request/
H A Dfile_protocol_handler.cc21 base::FilePath file_path; local
22 const bool is_file = FileURLToFilePath(request->url(), &file_path);
26 !network_delegate->CanAccessFile(*request, file_path)) {
37 file_path.EndsWithSeparator() &&
38 file_path.IsAbsolute()) {
39 return new URLRequestFileDirJob(request, network_delegate, file_path);
44 return new URLRequestFileJob(request, network_delegate, file_path);
/external/chromium_org/ppapi/shared_impl/
H A Dfile_ref_util.cc7 #include "base/files/file_path.h"
22 const base::FilePath::StringType& file_path = path.value(); local
23 size_t pos = file_path.rfind(base::FilePath::kSeparators[0]);
26 return WideToUTF8(file_path.substr(pos + 1));
28 return file_path.substr(pos + 1);
41 base::FilePath file_path = base::FilePath::FromUTF8Unsafe(path);
42 if (file_path.ReferencesParent())
/external/chromium/chrome/browser/
H A Dmock_browsing_data_indexed_db_helper.cc28 const FilePath& file_path) {
29 CHECK(files_.find(file_path.value()) != files_.end());
30 last_deleted_file_ = file_path;
31 files_[file_path.value()] = false;
27 DeleteIndexedDBFile( const FilePath& file_path) argument
H A Dmock_browsing_data_local_storage_helper.cc29 const FilePath& file_path) {
30 CHECK(files_.find(file_path.value()) != files_.end());
31 last_deleted_file_ = file_path;
32 files_[file_path.value()] = false;
28 DeleteLocalStorageFile( const FilePath& file_path) argument
/external/chromium/net/base/
H A Dmime_util_unittest.cc37 const FilePath::CharType* file_path; member in struct:net::__anon2974
53 rv = GetMimeTypeFromFile(FilePath(tests[i].file_path),
/external/chromium/webkit/glue/
H A Dsimple_webmimeregistry_impl.cc103 const WebString& file_path) {
106 FilePath(WebStringToFilePathString(file_path)), &mime_type);
102 mimeTypeFromFile( const WebString& file_path) argument
/external/chromium_org/base/
H A Dvalue_conversions.cc7 #include "base/files/file_path.h"
20 bool GetValueAsFilePath(const Value& value, FilePath* file_path) { argument
24 if (file_path)
25 *file_path = FilePath::FromUTF8Unsafe(str);
/external/chromium_org/cc/test/
H A Dpixel_test_utils.cc17 bool WritePNGFile(const SkBitmap& bitmap, const base::FilePath& file_path, argument
23 file_util::CreateDirectory(file_path.DirName())) {
26 return file_util::WriteFile(file_path, data, size) == size;
31 bool ReadPNGFile(const base::FilePath& file_path, SkBitmap* bitmap) { argument
34 return file_util::ReadFileToString(file_path, &png_data) &&
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dopen_file_operation_unittest.cc10 #include "base/files/file_path.h"
42 base::FilePath file_path; local
48 &error, &file_path, &close_callback));
52 ASSERT_TRUE(base::PathExists(file_path));
54 ASSERT_TRUE(file_util::GetFileSize(file_path, &local_file_size));
69 base::FilePath file_path; local
75 &error, &file_path, &close_callback));
88 base::FilePath file_path; local
94 &error, &file_path, &close_callback));
106 base::FilePath file_path; local
136 base::FilePath file_path; local
163 base::FilePath file_path; local
193 base::FilePath file_path; local
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_system_backend_delegate.cc8 #include "base/files/file_path.h"
53 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); local
54 if (file_path.empty())
61 file_path, offset, expected_modification_time));
72 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); local
73 if (file_path.empty())
79 context->default_file_task_runner(),file_path, offset));

Completed in 729 milliseconds

1234567891011>>