HomeSort by relevance Sort by last modified time
    Searched defs:path_ (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium/chrome/browser/ui/cocoa/
window_size_autosaver.h 26 const char* path_; variable
  /external/chromium/base/memory/
scoped_temp_dir.h 48 const FilePath& path() const { return path_; }
50 // Returns true if path_ is non-empty and exists.
54 FilePath path_; member in class:ScopedTempDir
  /external/chromium/chrome/browser/parsers/
metadata_parser_filebase.h 34 FilePath path_; member in class:FileMetadataParser
  /external/chromium/net/disk_cache/
block_files.h 90 FilePath path_; // Path to the backing folder. member in class:disk_cache::BlockFiles
disk_cache_test_util.h 47 FilePath path() const { return path_; }
50 const FilePath path_; // Path to the cache test folder. member in class:ScopedTestCache
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.h 85 FilePath path_; member in class:BookmarkFaviconFetcher
bookmark_html_writer_unittest.cc 49 path_ = temp_dir_.path().AppendASCII("bookmarks.html");
120 FilePath path_; member in class:BookmarkHTMLWriterTest
214 bookmark_html_writer::WriteBookmarks(&profile, path_, &observer);
226 Firefox2Importer::ImportBookmarksFile(path_,
bookmark_storage.cc 33 explicit BackupTask(const FilePath& path) : path_(path) {
37 FilePath backup_path = path_.ReplaceExtension(kBackupExtension);
38 file_util::CopyFile(path_, backup_path);
42 const FilePath path_; member in class:__anon2918::BackupTask
54 : path_(path),
60 bool bookmark_file_exists = file_util::PathExists(path_);
62 JSONFileValueSerializer serializer(path_);
92 bookmark_file_exists, path_));
107 const FilePath path_; member in class:BookmarkStorage::LoadTask
  /external/chromium/chrome/browser/prefs/
scoped_user_pref_update.h 50 std::string path_; member in class:subtle::ScopedUserPrefUpdateBase
  /external/chromium/chrome/common/
important_file_writer.h 65 const FilePath& path() const { return path_; }
96 const FilePath path_; member in class:ImportantFileWriter
json_pref_store.h 72 FilePath path_; member in class:JsonPrefStore
important_file_writer.cc 29 : path_(path),
40 path_.DirName(), &tmp_file_path);
59 if (!file_util::ReplaceFile(tmp_file_path, path_)) {
68 PLOG(WARNING) << "failed to write " << path_.value()
72 const FilePath path_; member in class:__anon3838::WriteToDiskTask
82 : path_(path),
110 FROM_HERE, new WriteToDiskTask(path_, data))) {
116 WriteToDiskTask write_task(path_, data);
146 << path_.value();
  /external/chromium/net/tools/dump_cache/
cache_dumper.h 66 explicit DiskDumper(const std::wstring& path) : path_(path), entry_(NULL) {
78 std::wstring path_; member in class:DiskDumper
dump_files.cc 111 : path_(path),
130 std::wstring path_; member in class:__anon4226::CacheDumper
146 std::wstring index_name(path_);
  /external/chromium/app/sql/
sqlite_features_unittest.cc 51 ASSERT_TRUE(PathService::Get(base::DIR_TEMP, &path_));
52 path_ = path_.AppendASCII("SQLStatementTest.db");
53 file_util::Delete(path_, false);
54 ASSERT_TRUE(db_.Open(path_));
67 ASSERT_TRUE(file_util::Delete(path_, false));
76 FilePath path_; member in class:__anon2621::SQLiteFeaturesTest
  /external/chromium/chrome/browser/history/
text_database.h 152 const FilePath path_; member in class:history::TextDatabase
  /external/chromium/chrome/browser/sessions/
session_backend_unittest.cc 37 path_ = temp_dir_.path().Append(FILE_PATH_LITERAL("SessionTestDirs"));
38 file_util::CreateDirectory(path_);
49 FilePath path_; member in class:SessionBackendTest
55 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
64 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_);
73 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_);
103 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
128 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
143 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_);
162 new SessionBackend(BaseSessionService::SESSION_RESTORE, path_));
    [all...]
base_session_service.h 169 const FilePath& path_; member in class:BaseSessionService
session_service_unittest.cc 41 path_ = temp_dir_.path().Append(FILE_PATH_LITERAL("SessionTestDirs"));
42 file_util::CreateDirectory(path_);
43 path_deleter_.reset(new FileAutoDeleter(path_));
44 path_ = path_.AppendASCII(b);
46 SessionService* session_service = new SessionService(path_);
88 SessionService* session_service = new SessionService(path_);
138 FilePath path_; member in class:SessionServiceTest
  /external/chromium/base/
file_path.h 169 return path_ < that.path_;
172 const StringType& value() const { return path_; }
174 bool empty() const { return path_.empty(); }
176 void clear() { path_.clear(); }
369 StringType path_; member in class:FilePath
  /external/chromium/chrome/browser/extensions/
extension_cookies_api.h 148 std::string path_; member in class:SetCookieFunction
  /external/chromium/chrome/browser/ui/gtk/
certificate_dialogs.cc 30 : path_(path), data_(data) {
34 int bytes_written = file_util::WriteFile(path_, data_.data(), data_.size());
36 LOG(ERROR) << "Writing " << path_.value() << " ("
41 FilePath path_; member in class:__anon3592::Writer
  /external/chromium/chrome/browser/ui/webui/chromeos/
system_info_ui.cc 57 std::string path_; member in class:SystemInfoUIHTMLSource
92 path_ = path;
136 strings.SetString("anchor", path_);
  /external/chromium/chrome/browser/policy/
user_policy_cache.cc 36 : path_(path),
44 const FilePath path_; member in class:policy::PersistPolicyTask
66 if (file_util::WriteFile(path_, data.c_str(), size) != size) {
67 LOG(WARNING) << "Failed to write " << path_.value();
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
cookie_details.h 77 scoped_nsobject<NSString> path_; variable

Completed in 540 milliseconds

1 2 3