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

1 2 3

  /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 = base::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_org/chrome/browser/net/
net_log_temp_file_unittest.cc 110 // Verify state and GetFilePath return correct values if EnsureInit() fails.
117 EXPECT_FALSE(net_log_temp_file_->GetFilePath(&net_export_file_path));
120 // When we lie in NetExportLogExists, make sure state and GetFilePath return
129 EXPECT_FALSE(net_log_temp_file_->GetFilePath(&net_export_file_path));
140 // Check GetFilePath returns false, if we are still writing to file.
142 EXPECT_FALSE(net_log_temp_file_->GetFilePath(&net_export_file_path));
156 // Check GetFilePath returns false, if we are still writing to file.
158 EXPECT_FALSE(net_log_temp_file_->GetFilePath(&net_export_file_path));
172 EXPECT_TRUE(net_log_temp_file_->GetFilePath(&net_export_file_path));
222 EXPECT_TRUE(net_log_temp_file_->GetFilePath(&net_export_file_path))
    [all...]
net_log_temp_file.h 59 bool GetFilePath(base::FilePath* path);
net_log_temp_file.cc 143 bool NetLogTempFile::GetFilePath(base::FilePath* path) {
  /external/chromium_org/extensions/common/manifest_handlers/
launcher_page_info.cc 62 const base::FilePath path = extension->GetResource(info->page).GetFilePath();
background_info.cc 279 extension->GetResource(background_scripts[i]).GetFilePath())) {
294 const base::FilePath path = extension->GetResource(page_path).GetFilePath();
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
video_source.h 67 std::string GetFilePath() const;
  /external/chromium_org/chrome/browser/chromeos/drive/sync/
entry_revert_performer.cc 48 error = metadata->GetFilePath(local_id, &original_path);
75 error = metadata->GetFilePath(local_id, &new_path);
entry_update_performer.cc 55 error = metadata->GetFilePath(local_id, &local_state->drive_file_path);
138 error = metadata->GetFilePath(existing_local_id, &existing_entry_path);
170 error = metadata->GetFilePath(local_id, &entry_path);
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_metadata.h 100 FileError GetFilePath(const std::string& id, base::FilePath* out_file_path);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.cc 152 base::FilePath idb_directory = GetFilePath(origin_url);
185 info->SetString("path", GetFilePath(origin_url).value());
304 base::FilePath idb_directory = GetFilePath(origin_url);
317 base::FilePath idb_directory = GetFilePath(origin_url);
365 base::FilePath IndexedDBContextImpl::GetFilePath(const GURL& origin_url) const {
480 base::FilePath file_path = GetFilePath(origin_url);
indexed_db_context_impl.h 93 base::FilePath GetFilePath(const GURL& origin_url) const;
  /external/chromium_org/chrome/browser/sync/test/integration/
preferences_helper.cc 182 reference_value = GetVerifierPrefs()->GetFilePath(pref_name);
184 reference_value = GetPrefs(0)->GetFilePath(pref_name);
187 if (reference_value != GetPrefs(i)->GetFilePath(pref_name)) {
  /external/chromium_org/components/nacl/browser/
nacl_browser.h 115 bool GetFilePath(uint64 file_token_lo, uint64 file_token_hi,
  /external/clang/lib/Driver/
ToolChain.cpp 142 std::string ToolChain::GetFilePath(const char *Name) const {
143 return D.GetFilePath(Name, *this);
414 std::string Path = GetFilePath("crtfastmath.o");
  /external/chromium_org/base/prefs/
pref_service.h 176 base::FilePath GetFilePath(const char* path) const;
  /external/chromium_org/chrome/browser/android/thumbnail/
thumbnail_store.h 108 base::FilePath GetFilePath(TabId tab_id) const;
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
search_operation.cc 72 error = resource_metadata->GetFilePath(local_id, &path);
  /external/chromium_org/extensions/shell/browser/
shell_nacl_browser_delegate.cc 157 // (GetFilePath()), so that this can be called on the IO thread. It only
175 // GetFilePath is a blocking function call.
176 const base::FilePath resource_file_path = resource.GetFilePath();
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIX.cpp 179 ProcessPOSIX::GetFilePath(
228 stdin_path = GetFilePath(file_action, stdin_path);
231 stdout_path = GetFilePath(file_action, stdout_path);
234 stderr_path = GetFilePath(file_action, stderr_path);
ProcessPOSIX.h 157 GetFilePath(const lldb_private::ProcessLaunchInfo::FileAction *file_action,

Completed in 504 milliseconds

1 2 3