HomeSort by relevance Sort by last modified time
    Searched refs:relative_path (Results 76 - 100 of 133) sorted by null

1 2 34 5 6

  /external/protobuf/gtest/src/
gtest-filepath.cc 158 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
161 const FilePath& relative_path) {
163 return relative_path;
166 relative_path.c_str()));
  /ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 192 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
195 const FilePath& relative_path) {
197 return relative_path;
199 return FilePath(dir.string() + kPathSeparator + relative_path.string());
  /external/chromium_org/extensions/common/
extension.cc 163 const std::string& relative_path) {
167 std::string path = relative_path;
172 if (relative_path.size() > 0 && relative_path[0] == '/')
173 path = relative_path.substr(1);
187 const std::string& relative_path) const {
188 std::string new_path = relative_path;
user_script.cc 60 const base::FilePath& relative_path,
63 relative_path_(relative_path),
user_script.h 55 const base::FilePath& relative_path,
61 const base::FilePath& relative_path() const { return relative_path_; } function in class:extensions::UserScript::File
  /external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker.cc 780 base::FilePath relative_path = base::FilePath::FromUTF8Unsafe(it.key()); local
781 relative_path = relative_path.Append(kMessagesFilename);
782 if (relative_path.IsAbsolute() || relative_path.ReferencesParent()) {
791 base::FilePath path = extension_root_.Append(relative_path);
user_script_master.cc 191 script_file->extension_root(), script_file->relative_path(),
196 script_file->extension_root(), script_file->relative_path(),
202 << script_file->relative_path().value() << " from "
  /external/chromium/chrome/common/extensions/
extension_l10n_util.cc 297 FilePath relative_path; local
298 if (!locales_path.AppendRelativePath(locale_path, &relative_path)) {
302 std::string subdir = relative_path.MaybeAsASCII();
user_script.cc 51 const FilePath& relative_path,
54 relative_path_(relative_path),
extension.h 393 // |relative_path| can be untrusted user input. The returned URL will either
397 const std::string& relative_path);
398 GURL GetResourceURL(const std::string& relative_path) const {
399 return GetResourceURL(url(), relative_path);
402 // Returns an extension resource object. |relative_path| should be UTF8
404 ExtensionResource GetResource(const std::string& relative_path) const;
406 // As above, but with |relative_path| following the file system's encoding.
407 ExtensionResource GetResource(const FilePath& relative_path) const;
    [all...]
  /external/chromium_org/apps/
launcher.cc 92 base::FilePath relative_path(command_line->GetArgs()[0]);
93 base::FilePath absolute_path(relative_path);
95 LOG(WARNING) << "Cannot make absolute path from " << relative_path.value();
  /external/chromium_org/chrome/browser/drive/
fake_drive_service.h 27 bool LoadResourceListForWapi(const std::string& relative_path);
34 bool LoadAccountMetadataForWapi(const std::string& relative_path);
37 bool LoadAppListForDriveApi(const std::string& relative_path);
  /external/chromium_org/chrome/utility/extensions/
unpacker.cc 305 base::FilePath relative_path; local
307 if (!temp_install_dir_.AppendRelativePath(message_path, &relative_path)) {
312 std::string dir_name = relative_path.DirName().MaybeAsASCII();
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_delegate_impl_linux.cc 32 base::FilePath relative_path;
33 if (!registered_dev_path.AppendRelativePath(file_path, &relative_path))
35 DCHECK(!relative_path.empty());
36 return relative_path.value();
  /external/llvm/include/llvm/Support/
Path.h 223 const StringRef relative_path(StringRef path);
328 /// relative_path != ""
  /external/chromium/chrome/browser/extensions/
file_manager_util.cc 95 FilePath relative_path(components[components.size() - 1]);
96 *url = GURL(base_url.spec() + relative_path.Append(path).value());
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_browser_handler_api_test.cc 182 const base::FilePath& relative_path) {
183 return tmp_mount_point_.Append(relative_path);
  /external/chromium_org/chrome/test/chromedriver/
chrome_launcher_unittest.cc 32 bool AddExtensionForInstall(const std::string& relative_path,
37 "chrome/test/data/chromedriver/" + relative_path);
  /external/chromium_org/chrome_frame/test/
mock_ie_event_sink_test.h 298 // Returns the url for the test file given. |relative_path| should be
300 std::wstring GetTestUrl(const std::wstring& relative_path);
302 // Returns the absolute FilePath for the test file given. |relative_path|
304 base::FilePath GetTestFilePath(const std::wstring& relative_path);
  /external/chromium_org/extensions/common/manifest_handlers/
shared_module_info.cc 81 const std::string& relative_path) {
83 exported_set_.MatchesURL(extension->url().Resolve(relative_path));
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSNew.py 249 relative_path = gyp.common.RelativePath(e.path, sln_root)
251 # use '.' in case relative_path is empty.
252 folder_name = relative_path.replace('/', '\\') or '.'
  /external/protobuf/gtest/test/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
  /external/chromium_org/chrome/browser/plugins/
plugin_prefs.cc 396 base::FilePath relative_path; local
399 // |last_internal_dir|. For example, |relative_path| will be
403 // removed and prepended to |relative_path| until we get up to
406 relative_path = plugin_path.BaseName().Append(relative_path);
417 // If |relative_path| is empty, |plugin_path| is not within
419 if (!relative_path.empty()) {
420 plugin_path = cur_internal_dir.Append(relative_path);
  /external/chromium_org/chrome/common/extensions/
extension_l10n_util.cc 440 base::FilePath relative_path; local
441 if (!locales_path.AppendRelativePath(locale_path, &relative_path)) {
445 std::string subdir = relative_path.MaybeAsASCII();
  /external/chromium/chrome/browser/ui/views/infobars/
extension_infobar.cc 97 if (!icon_resource.relative_path().empty()) {

Completed in 667 milliseconds

1 2 34 5 6