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

1 2

  /external/chromium_org/tools/gn/
build_settings.cc 34 secondary_source_path_ = GetFullPath(d).NormalizePathSeparatorsTo('/');
42 base::FilePath BuildSettings::GetFullPath(const SourceFile& file) const {
46 base::FilePath BuildSettings::GetFullPath(const SourceDir& dir) const {
function_read_file.cc 58 scope->settings()->build_settings()->GetFullPath(source_file);
build_settings.h 72 base::FilePath GetFullPath(const SourceFile& file) const;
73 base::FilePath GetFullPath(const SourceDir& dir) const;
77 // buildfile, the GetFullPath should always be consulted first.
function_rebase_path.cc 73 system_path = scope->settings()->build_settings()->GetFullPath(
76 system_path = scope->settings()->build_settings()->GetFullPath(
function_write_file.cc 77 scope->settings()->build_settings()->GetFullPath(source_file);
function_exec_script.cc 310 base::FilePath script_path = build_settings->GetFullPath(script_source);
332 build_settings->GetFullPath(cur_dir.ResolveRelativeFile(
368 build_settings->GetFullPath(build_settings->build_dir());
ninja_toolchain_writer.cc 44 base::FilePath ninja_file(settings->build_settings()->GetFullPath(
setup.cc 303 build_settings_.GetFullPath(build_arg_source_file);
371 build_settings_.GetFullPath(GetBuildArgFile());
command_args.cc 243 setup.build_settings().GetFullPath(setup.GetBuildArgFile())
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_util/src/
dm_uri_utils.cc 38 return GetFullPath(m_szWFS,name,path);
43 return GetFullPath(m_szMainRFS,name,path);
46 CPCHAR CEnv::GetFullPath(CPCHAR fs_path, CPCHAR name, DMString & path)
56 return GetFullPath(GetRFS(index),name,path);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs.cc 45 filesystem_resource_, GetFullPath(path).Join().c_str());
58 Path Html5Fs::GetFullPath(const Path& path) {
81 GetFullPath(path).Join().c_str()));
109 GetFullPath(path).Join().c_str()));
150 const char* oldpath_full = GetFullPath(path).Join().c_str();
158 const char* newpath_full = GetFullPath(newpath).Join().c_str();
html5_fs.h 47 Path GetFullPath(const Path& path);
  /external/chromium_org/chrome/browser/download/
download_crx_util.cc 109 installer->InstallUserScript(download_item.GetFullPath(),
113 installer->InstallCrx(download_item.GetFullPath());
download_target_determiner.cc 666 if (is_resumption_ && !download_->GetFullPath().empty() &&
667 local_path_.DirName() == download_->GetFullPath().DirName()) {
670 DCHECK_EQ(kCrdownloadSuffix, download_->GetFullPath().Extension());
671 intermediate_path_ = download_->GetFullPath();
    [all...]
  /external/pdfium/fpdfsdk/include/
fsdk_define.h 110 virtual CFX_ByteString GetFullPath() { return ""; }
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_util/hdr/
dm_uri_utils.h 109 CPCHAR GetFullPath(CPCHAR fs_path, CPCHAR name, DMString & path);
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/hdr/
dmtTreeImpl.hpp 86 SYNCML_DM_RET_STATUS_T GetFullPath( CPCHAR path, DMString & fullPath ) const;
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
dmtTree.cc 59 SYNCML_DM_RET_STATUS_T DmtTreeImpl::GetFullPath( CPCHAR path, DMString & fullPath ) const
85 XPL_LOG_DM_TMN_Debug(("GetFullPath: rootpath:%s, path:%s, fullPath:%s, len:%d\n", m_strRootPath.c_str(), path, fullPath.c_str(), fullPath.length()));
103 XPL_LOG_DM_TMN_Debug(("GetFullPath: rootpath:%s, path:%s, fullPath:%s, len:%d\n", m_strRootPath.c_str(), path, fullPath.c_str(), fullPath.length()));
116 dm_stat = GetFullPath( path, strFullPath );
119 XPL_LOG_DM_TMN_Debug(("GetFullPath failed: path:%s, full path:%s\n", path, strFullPath.c_str()));
225 dm_stat = GetFullPath( path, strFullPath );
253 dm_stat = GetFullPath( path, strFullPath );
284 dm_stat = GetFullPath( path, strFullPath );
287 XPL_LOG_DM_TMN_Debug(("CreateInteriorNode GetFullPath, path:%s, full path:%s\n", path, strFullPath.c_str()));
291 XPL_LOG_DM_TMN_Debug(("W21034:CreateInteriorNode GetFullPath, path:%s, full path:%s\n", path, strFullPath.c_str()))
    [all...]
  /external/chromium_org/content/public/browser/
download_item.h 207 // intermediate file named by GetFullPath() may be renamed or disappear
210 virtual const base::FilePath& GetFullPath() const = 0;
213 // temporary or intermediate file (specified by GetFullPath()); this is the
241 // become true, GetFullPath() will become empty, and
244 // GetFullPath() is already empty. The callback is always run, and it is
  /external/chromium_org/content/public/test/
mock_download_item.h 70 MOCK_CONST_METHOD0(GetFullPath, const base::FilePath&());
  /external/chromium_org/chrome/browser/safe_browsing/
download_protection_service_unittest.cc 368 EXPECT_CALL(item, GetFullPath()).WillRepeatedly(ReturnRef(a_tmp));
384 EXPECT_CALL(item, GetFullPath()).WillRepeatedly(ReturnRef(a_tmp));
416 EXPECT_CALL(item, GetFullPath()).WillRepeatedly(ReturnRef(a_tmp));
506 EXPECT_CALL(item, GetFullPath()).WillRepeatedly(ReturnRef(a_tmp));
550 EXPECT_CALL(item, GetFullPath()).WillRepeatedly(ReturnRef(a_tmp));
698 EXPECT_CALL(item, GetFullPath()).WillRepeatedly(ReturnRef(a_tmp));
751 EXPECT_CALL(item, GetFullPath()).WillRepeatedly(ReturnRef(a_tmp));
    [all...]
download_protection_service.cc 507 this, item_->GetFullPath()),
540 item_->GetFullPath(),
552 VLOG(1) << "Zip analysis finished for " << item_->GetFullPath().value()
556 VLOG(1) << "Zip analysis failed for " << item_->GetFullPath().value();
    [all...]
  /external/chromium_org/content/browser/download/
download_browsertest.cc 721 download->GetFullPath().BaseName().value());
723 (!download->GetFullPath().empty() &&
724 base::PathExists(download->GetFullPath())));
729 download->GetFullPath(), &file_contents));
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/plugin/src/
dmtPlugin.cc 189 SYNCML_DM_RET_STATUS_T DmtPluginTree::GetFullPath(CPCHAR path, DMString & fullPath) const
465 dm_stat = ptrTree->GetFullPath(path,fullPath);
  /external/chromium_org/content/shell/browser/
shell_download_manager_delegate.cc 105 net::FilePathToFileURL(item->GetFullPath()));

Completed in 555 milliseconds

1 2