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

1 2 3

  /external/chromium/chrome/common/extensions/
extension_resource.h 30 const FilePath& GetFilePath() const;
36 static FilePath GetFilePath(const FilePath& extension_root,
extension_resource.cc 24 const FilePath& ExtensionResource::GetFilePath() const {
35 GetFilePath(extension_root_, relative_path_);
40 FilePath ExtensionResource::GetFilePath(
84 GetFilePath();
extension_resource_unittest.cc 22 EXPECT_TRUE(resource.GetFilePath().empty());
43 EXPECT_TRUE(resource.GetFilePath().empty());
76 FilePath resolved_path = resource.GetFilePath();
extension_file_util.cc 147 const FilePath path = extension->GetResource(iter->second).GetFilePath();
186 const FilePath& path = ExtensionResource::GetFilePath(
195 const FilePath& path = ExtensionResource::GetFilePath(
223 if (!file_util::PathExists(extension->GetResource(*iter).GetFilePath())) {
239 !file_util::PathExists(extension->GetResource(path).GetFilePath())) {
254 const FilePath path = extension->GetResource(page_path).GetFilePath();
269 const FilePath path = extension->GetResource(options_path).GetFilePath();
284 const FilePath path = extension->GetResource(page_path).GetFilePath();
  /external/chromium_org/extensions/common/
extension_resource.h 43 const base::FilePath& GetFilePath() const;
53 static base::FilePath GetFilePath(const base::FilePath& extension_root,
extension_resource_unittest.cc 24 EXPECT_TRUE(resource.GetFilePath().empty());
45 EXPECT_TRUE(resource.GetFilePath().empty());
73 EXPECT_FALSE(r1.GetFilePath().empty());
78 EXPECT_TRUE(r2.GetFilePath().empty());
85 EXPECT_FALSE(r3.GetFilePath().empty());
91 EXPECT_TRUE(r4.GetFilePath().empty());
101 EXPECT_TRUE(r4a.GetFilePath().empty());
108 EXPECT_TRUE(r5.GetFilePath().empty());
114 EXPECT_FALSE(r6.GetFilePath().empty());
149 base::FilePath resolved_path = resource.GetFilePath();
    [all...]
extension_resource.cc 31 const base::FilePath& ExtensionResource::GetFilePath() const {
41 full_resource_path_ = GetFilePath(
49 base::FilePath ExtensionResource::GetFilePath(
119 GetFilePath();
  /external/chromium_org/extensions/browser/
file_reader.cc 30 bool success = file_util::ReadFileToString(resource_.GetFilePath(), &data);
  /external/chromium_org/chrome/browser/themes/
theme_service_browsertest.cc 55 profile->GetPrefs()->GetFilePath(prefs::kCurrentThemePackFilename));
64 profile->GetPrefs()->GetFilePath(prefs::kCurrentThemePackFilename));
  /external/chromium/chrome/browser/extensions/
file_reader.cc 29 bool success = file_util::ReadFileToString(resource_.GetFilePath(), &data);
extension_protocols.cc 174 resource_file_path = resource.GetFilePath();
193 return new net::URLRequestFileJob(request, resource.GetFilePath());
  /external/chromium_org/chrome/browser/net/
net_log_temp_file.h 57 bool GetFilePath(base::FilePath* path);
net_log_temp_file_unittest.cc 104 // Verify state and GetFilePath return correct values if EnsureInit() fails.
111 EXPECT_FALSE(net_log_temp_file_->GetFilePath(&net_export_file_path));
114 // When we lie in NetExportLogExists, make sure state and GetFilePath return
121 EXPECT_FALSE(net_log_temp_file_->GetFilePath(&net_export_file_path));
130 // Check GetFilePath returns false, if we are still writing to file.
132 EXPECT_FALSE(net_log_temp_file_->GetFilePath(&net_export_file_path));
144 EXPECT_TRUE(net_log_temp_file_->GetFilePath(&net_export_file_path));
193 EXPECT_TRUE(net_log_temp_file_->GetFilePath(&net_export_file_path));
197 // GetFilePath should return false if NetExportLogExists() fails.
199 EXPECT_FALSE(net_log_temp_file_->GetFilePath(&net_export_file_path))
    [all...]
net_log_temp_file.cc 119 bool NetLogTempFile::GetFilePath(base::FilePath* path) {
  /external/chromium_org/chrome/browser/chromeos/drive/
change_list_processor.cc 192 resource_metadata_->GetFilePath(entry.resource_id());
210 resource_metadata_->GetFilePath(entry.resource_id());
229 resource_metadata_->GetFilePath(entry.resource_id());
235 resource_metadata_->GetFilePath(entry.resource_id());
resource_metadata.cc 102 *out_file_path = metadata->GetFilePath(entry.resource_id());
486 child_directories->insert(GetFilePath(entry.resource_id()));
504 base::FilePath ResourceMetadata::GetFilePath(
512 path = GetFilePath(entry.parent_resource_id());
541 *out_file_path = GetFilePath(entry.resource_id());
570 *out_file_path = GetFilePath(entry.resource_id());
668 *out_file_path = GetFilePath(directory.resource_id());
  /external/chromium_org/chrome/browser/sync/test/integration/
preferences_helper.cc 188 reference_value = GetVerifierPrefs()->GetFilePath(pref_name);
190 reference_value = GetPrefs(0)->GetFilePath(pref_name);
193 if (reference_value != GetPrefs(i)->GetFilePath(pref_name)) {
  /external/clang/lib/Driver/
ToolChain.cpp 133 std::string ToolChain::GetFilePath(const char *Name) const {
134 return D.GetFilePath(Name, *this);
410 std::string Path = GetFilePath("crtfastmath.o");
Tools.cpp     [all...]
  /external/chromium_org/chrome/browser/nacl_host/
nacl_browser.h 107 bool GetFilePath(uint64 file_token_lo, uint64 file_token_hi,
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
create_directory_operation.cc 40 *file_path = metadata->GetFilePath(entry.resource_id());
119 return metadata->GetFilePath(resource_id);
update_operation.cc 48 local_state->drive_file_path = metadata->GetFilePath(resource_id);
83 *drive_file_path = metadata->GetFilePath(entry.resource_id());
  /external/chromium_org/chrome/common/extensions/
background_info.cc 267 extension->GetResource(background_scripts[i]).GetFilePath())) {
283 const base::FilePath path = extension->GetResource(page_path).GetFilePath();
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.cc 146 base::FilePath idb_directory = GetFilePath(origin_url);
178 info->SetString("path", GetFilePath(origin_url).value());
261 base::FilePath idb_directory = GetFilePath(origin_url);
274 base::FilePath idb_directory = GetFilePath(origin_url);
317 base::FilePath IndexedDBContextImpl::GetFilePath(const GURL& origin_url) {
  /external/chromium/chrome/browser/download/
download_prefs.cc 71 FilePath current_download_dir = prefs->GetFilePath(

Completed in 531 milliseconds

1 2 3