Searched refs:path_ (Results 1 - 25 of 73) sorted by relevance

123

/external/chromium/base/memory/
H A Dscoped_temp_dir.cc14 if (!path_.empty() && !Delete())
19 if (!path_.empty())
25 &path_))
32 if (!path_.empty())
43 &path_))
50 if (!path_.empty())
57 path_ = path;
62 if (path_.empty())
65 bool ret = file_util::Delete(path_, true);
68 path_
[all...]
H A Dscoped_temp_dir.h48 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/prefs/
H A Dscoped_user_pref_update.cc16 path_(path),
25 value_ = service_->GetMutableUserPref(path_.c_str(), type);
31 service_->ReportUserPrefChanged(path_);
/external/chromium/app/sql/
H A Dsqlite_features_unittest.cc51 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:__anon747::SQLiteFeaturesTest
/external/chromium/chrome/common/
H A Dimportant_file_writer.cc29 : 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:__anon1964::WriteToDiskTask
82 : path_(path),
110 FROM_HERE, new WriteToDiskTask(path_, data))) {
116 WriteToDiskTask write_task(path_, data);
146 << path_.value();
H A Dimportant_file_writer.h65 const FilePath& path() const { return path_; }
96 const FilePath path_; member in class:ImportantFileWriter
H A Djson_pref_store.cc130 : path_(filename),
227 if (path_.empty()) {
240 deserializer->Start(path_);
246 if (path_.empty()) {
254 JSONFileValueSerializer serializer(path_);
259 path_,
/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_filebase.cc13 path_(path) {
21 if (file_util::GetFileSize(path_, &size)) {
25 value = WideToUTF8(path_.BaseName().value());
28 properties_[MetadataParser::kPropertyTitle] = path_.BaseName().value();
H A Dmetadata_parser_filebase.h34 FilePath path_; member in class:FileMetadataParser
/external/chromium/chrome/browser/ui/cocoa/
H A Dwindow_size_autosaver.h26 const char* path_; variable
/external/chromium/chrome/browser/sessions/
H A Dsession_backend_unittest.cc37 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...]
/external/chromium/base/
H A Dfile_path.h169 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
H A Dfile_path.cc167 FilePath::FilePath(const FilePath& that) : path_(that.path_) {
170 FilePath::FilePath(const StringType& path) : path_(path) {
177 path_ = that.path_;
183 return EqualDriveLetterCaseInsensitive(this->path_, that.path_);
185 return path_ == that.path_;
191 return !EqualDriveLetterCaseInsensitive(this->path_, tha
[all...]
/external/chromium/android/autofill/
H A Dprofile_android.cc41 : path_(path)
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_storage.cc33 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:__anon1044::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
H A Dbookmark_html_writer.h85 FilePath path_; member in class:BookmarkFaviconFetcher
/external/chromium/chrome/common/extensions/
H A Durl_pattern.cc212 path_ = path;
213 path_escaped_ = path_;
307 if (!path_.empty())
308 spec += path_;
325 DCHECK(path_.find('*') == path_.size() - 1);
329 !other.MatchesPath(path_.substr(0, path_.size() - 1)))
H A Durl_pattern.h151 const std::string& path() const { return path_; }
258 std::string path_; member in class:URLPattern
/external/chromium/net/disk_cache/
H A Ddisk_cache_test_util.h47 FilePath path() const { return path_; }
50 const FilePath path_; // Path to the cache test folder. member in class:ScopedTestCache
H A Ddisk_cache_test_util.cc108 ScopedTestCache::ScopedTestCache() : path_(GetCacheFilePath()) {
109 bool result = DeleteCache(path_);
114 : path_(BuildCachePath(name)) {
115 bool result = DeleteCache(path_);
/external/chromium/chrome/browser/ui/gtk/
H A Dcertificate_dialogs.cc30 : 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:__anon1718::Writer
/external/chromium/net/tools/dump_cache/
H A Dcache_dumper.h66 explicit DiskDumper(const std::wstring& path) : path_(path), entry_(NULL) {
78 std::wstring path_; member in class:DiskDumper
/external/chromium/chrome/browser/ui/webui/chromeos/
H A Dsystem_info_ui.cc57 std::string path_; member in class:SystemInfoUIHTMLSource
92 path_ = path;
136 strings.SetString("anchor", path_);
/external/chromium/net/spdy/
H A Dspdy_stream.h118 const std::string& path() const { return path_; }
119 void set_path(const std::string& path) { path_ = path; }
278 std::string path_; member in class:net::SpdyStream
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpcommon-inl.h84 path_.assign(1, static_cast<CTYPE>('/'));
87 path_.assign(val, path_length);
114 val->append(path_);

Completed in 430 milliseconds

123