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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/base/files/
scoped_temp_dir.cc 16 if (!path_.empty() && !Delete())
21 if (!path_.empty())
26 if (!base::CreateNewTempDirectory(FILE_PATH_LITERAL("scoped_dir"), &path_))
33 if (!path_.empty())
43 &path_))
50 if (!path_.empty())
56 path_ = path;
61 if (path_.empty())
64 bool ret = base::DeleteFile(path_, true);
67 path_.clear()
    [all...]
scoped_temp_dir.h 49 const FilePath& path() const { return path_; }
51 // Returns true if path_ is non-empty and exists.
55 FilePath path_; member in class:base::ScopedTempDir
important_file_writer.h 72 const FilePath& path() const { return path_; }
118 const FilePath path_; member in class:base::ImportantFileWriter
  /external/chromium_org/ppapi/shared_impl/
file_path.cc 9 PepperFilePath::PepperFilePath() : domain_(DOMAIN_INVALID), path_() {}
12 : domain_(domain), path_(path) {
file_path.h 32 const base::FilePath& path() const { return path_; }
36 base::FilePath path_; member in class:ppapi::PepperFilePath
  /external/chromium_org/chrome/installer/util/
create_dir_work_item.cc 14 : path_(path),
19 if (base::PathExists(path_)) {
24 base::FilePath parent_dir(path_);
33 VLOG(1) << "creating directory " << path_.value();
39 bool result = base::CreateDirectory(path_);
54 // Instead we walk through path_ to top_path_ and delete directories
56 base::FilePath path_to_delete(path_);
delete_reg_key_work_item.cc 22 path_(path),
33 if (path_.empty())
40 if (!backup.Initialize(predefined_root_, path_.c_str(), wow64_access_)) {
48 predefined_root_, path_.c_str(), wow64_access_)) {
65 path_.c_str(),
70 if (!backup_.WriteTo(predefined_root_, path_.c_str(), wow64_access_))
create_dir_work_item.h 33 // "path_", and set "top_path_" accordingly. if "path_" already exists,
38 base::FilePath path_; member in class:CreateDirWorkItem
  /external/chromium_org/base/prefs/
scoped_user_pref_update.cc 16 path_(path),
25 value_ = service_->GetMutableUserPref(path_.c_str(), type);
31 service_->ReportUserPrefChanged(path_);
  /external/chromium_org/chrome/browser/chromeos/drive/
file_change.h 39 return path_ == file_change.path() && type_ == file_change.type();
43 return (path_ < file_change.path()) ||
44 (path_ == file_change.path() && type_ < file_change.type());
47 const base::FilePath& path() const { return path_; }
52 const base::FilePath path_; member in class:drive::FileChange
file_change.cc 10 : path_(path), type_(type) {
  /external/chromium_org/webkit/common/blob/
scoped_file.cc 23 : path_(path),
49 base::FilePath path = path_;
50 path_.clear();
57 if (path_.empty())
62 iter->second->PostTask(FROM_HERE, base::Bind(iter->first, path_));
69 path_, false /* recursive */));
82 path_ = other.Release();
  /external/chromium_org/ui/events/ozone/device/
device_event.cc 14 path_(path) {}
device_event.h 31 base::FilePath path() const { return path_; }
36 base::FilePath path_; member in class:ui::DeviceEvent
  /external/chromium_org/content/shell/browser/
shell_browser_context.cc 87 path_ = cmd_line->GetSwitchValuePath(switches::kContentShellDataPath);
91 CHECK(PathService::Get(base::DIR_LOCAL_APP_DATA, &path_));
92 path_ = path_.Append(std::wstring(L"content_shell"));
99 path_ = config_dir.Append("content_shell");
101 CHECK(PathService::Get(base::DIR_APP_DATA, &path_));
102 path_ = path_.Append("Chromium Content Shell");
104 CHECK(PathService::Get(base::DIR_ANDROID_APP_DATA, &path_));
105 path_ = path_.Append(FILE_PATH_LITERAL("content_shell"))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
filelock.cc 38 : path_(path), file_(file) {
52 LOG(LS_INFO) << "Unlocking:" << path_;
54 Filesystem::DeleteFile(path_);
filelock.h 62 std::string path_; member in class:talk_base::FileLock
  /external/chromium_org/third_party/webrtc/base/
filelock.cc 21 : path_(path), file_(file) {
35 LOG(LS_INFO) << "Unlocking:" << path_;
37 Filesystem::DeleteFile(path_);
filelock.h 45 std::string path_; member in class:rtc::FileLock
  /external/chromium_org/chrome/browser/parsers/
metadata_parser_filebase.cc 13 path_(path) {
21 if (base::GetFileSize(path_, &size)) {
25 value = base::WideToUTF8(path_.BaseName().value());
28 properties_[MetadataParser::kPropertyTitle] = path_.BaseName().value();
  /external/chromium_org/chrome/browser/ui/cocoa/
window_size_autosaver.h 26 const char* path_; variable
  /external/chromium_org/content/public/browser/
indexed_db_info.cc 17 path_(path),
indexed_db_info.h 26 base::FilePath path_; member in class:content::IndexedDBInfo
  /external/chromium_org/webkit/browser/fileapi/
file_system_url.cc 45 path_ = virtual_path_;
57 path_(virtual_path.NormalizePathSeparators()),
75 path_(cracked_path.NormalizePathSeparators()),
114 ss << path_.value();
117 ss << path_.value();
136 path_ == that.path_ &&
150 return lhs.path_ < rhs.path_;
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_messaging_host_manifest.h 41 const base::FilePath& path() const { return path_; }
54 base::FilePath path_; member in class:extensions::NativeMessagingHostManifest

Completed in 1628 milliseconds

1 2 3 4 5 6 7 8 9