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

1 2 3

  /external/chromium/base/memory/
scoped_temp_dir.cc 14 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_.clear()
    [all...]
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/prefs/
scoped_user_pref_update.cc 16 path_(path),
25 value_ = service_->GetMutableUserPref(path_.c_str(), type);
31 service_->ReportUserPrefChanged(path_);
scoped_user_pref_update.h 50 std::string path_; member in class:subtle::ScopedUserPrefUpdateBase
  /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:__anon2225::SQLiteFeaturesTest
  /external/chromium/chrome/common/
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:__anon3442::WriteToDiskTask
82 : path_(path),
110 FROM_HERE, new WriteToDiskTask(path_, data))) {
116 WriteToDiskTask write_task(path_, data);
146 << path_.value();
important_file_writer.h 65 const FilePath& path() const { return path_; }
96 const FilePath path_; member in class:ImportantFileWriter
json_pref_store.cc 130 : 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/
metadata_parser_filebase.cc 13 path_(path) {
21 if (file_util::GetFileSize(path_, &size)) {
25 value = WideToUTF8(path_.BaseName().value());
28 properties_[MetadataParser::kPropertyTitle] = path_.BaseName().value();
metadata_parser_filebase.h 34 FilePath path_; member in class:FileMetadataParser
  /external/chromium/chrome/browser/ui/cocoa/
window_size_autosaver.h 26 const char* path_; variable
  /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...]
  /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
file_path.cc 167 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_, that.path_)
    [all...]
  /external/chromium/android/autofill/
profile_android.cc 41 : path_(path)
  /external/chromium/chrome/browser/bookmarks/
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:__anon2522::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
bookmark_html_writer.h 85 FilePath path_; member in class:BookmarkFaviconFetcher
  /external/chromium/chrome/common/extensions/
url_pattern.cc 212 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)))
  /external/chromium/net/disk_cache/
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
disk_cache_test_util.cc 108 ScopedTestCache::ScopedTestCache() : path_(GetCacheFilePath()) {
109 bool result = DeleteCache(path_);
114 : path_(BuildCachePath(name)) {
115 bool result = DeleteCache(path_);
  /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:__anon3196::Writer
  /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
  /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/net/spdy/
spdy_stream.h 118 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/
httpcommon-inl.h 84 path_.assign(1, static_cast<CTYPE>('/'));
87 path_.assign(val, path_length);
114 val->append(path_);

Completed in 1496 milliseconds

1 2 3