HomeSort by relevance Sort by last modified time
    Searched full:relative_path (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_preferences_unittest.cc 226 base::FilePath relative_path,
231 expected_galleries_[id].path = relative_path.NormalizePathSeparators();
243 base::FilePath relative_path,
247 AddGalleryExpectation(id, display_name, device_id, relative_path,
256 const base::FilePath& relative_path,
262 device_id, display_name, relative_path, type,
269 const base::FilePath& relative_path,
275 device_id, display_name, relative_path, type,
282 const base::FilePath& relative_path,
285 device_id, display_name, relative_path, type
295 base::FilePath relative_path; local
345 base::FilePath relative_path; local
562 base::FilePath relative_path; local
600 base::FilePath relative_path; local
638 base::FilePath relative_path; local
681 base::FilePath relative_path; local
721 base::FilePath relative_path; local
751 base::FilePath relative_path; local
931 base::FilePath relative_path; local
959 base::FilePath relative_path; local
1039 base::FilePath relative_path; local
1152 base::FilePath relative_path; local
    [all...]
  /external/chromium_org/extensions/common/manifest_handlers/
web_accessible_resources_info.cc 38 const std::string& relative_path) {
48 info->web_accessible_resources_, relative_path);
74 std::string relative_path; local
75 if (!list_value->GetString(i, &relative_path)) {
86 while (relative_path[0] == '/')
87 relative_path = relative_path.substr(1, relative_path.length() - 1);
88 pattern.SetPath(pattern.path() + relative_path);
sandboxed_page_info.cc 54 const std::string& relative_path) {
55 return extension->ResourceMatches(GetPages(extension), relative_path);
74 std::string relative_path; local
75 if (!list_value->GetString(i, &relative_path)) {
86 while (relative_path[0] == '/')
87 relative_path = relative_path.substr(1, relative_path.length() - 1);
88 pattern.SetPath(pattern.path() + relative_path);
webview_info.cc 74 const std::string& relative_path) {
86 relative_path)) {
160 std::string relative_path; local
161 if (!url_list->GetString(i, &relative_path)) {
168 relative_path).spec());
  /external/chromium_org/extensions/browser/
computed_hashes.h 30 // The block size and hashes for |relative_path| will be copied into the
32 bool GetHashes(const base::FilePath& relative_path,
48 // Adds hashes for |relative_path|. Should not be called more than once
49 // for a given |relative_path|.
50 void AddHashes(const base::FilePath& relative_path,
computed_hashes.cc 58 base::FilePath relative_path =
61 data_[relative_path] = HashInfo(block_size, std::vector<std::string>());
62 std::vector<std::string>* hashes = &(data_[relative_path].second);
80 bool ComputedHashes::Reader::GetHashes(const base::FilePath& relative_path,
83 std::map<base::FilePath, HashInfo>::iterator i = data_.find(relative_path);
97 void ComputedHashes::Writer::AddHashes(const base::FilePath& relative_path,
103 dict->SetString(kPathKey, relative_path.AsUTF8Unsafe());
content_hash_reader.h 26 // Create one of these to get expected hashes for the file at |relative_path|
31 const base::FilePath& relative_path,
35 const base::FilePath& relative_path() const { return relative_path_; } function in class:extensions::ContentHashReader
content_verifier.cc 57 const base::FilePath& relative_path) {
66 paths.insert(relative_path);
76 relative_path,
152 const base::FilePath& relative_path = *i; local
154 if (relative_path == base::FilePath(kManifestFilename))
157 if (ContainsKey(browser_images, relative_path))
160 base::FilePath full_path = extension->path().Append(relative_path);
content_hash_reader.cc 28 const base::FilePath& relative_path,
33 relative_path_(relative_path),
  /external/chromium_org/mojo/public/cpp/test_support/
test_support.h 23 inline FILE* OpenSourceRootRelativeFile(const std::string& relative_path) {
24 return MojoTestSupportOpenSourceRootRelativeFile(relative_path.c_str());
29 const std::string& relative_path);
  /external/chromium_org/mojo/common/test/
test_support_impl.cc 22 base::FilePath ResolveSourceRootRelativePath(const char* relative_path) {
28 base::SplitString(relative_path, '/', &components);
52 FILE* TestSupportImpl::OpenSourceRootRelativeFile(const char* relative_path) {
53 return base::OpenFile(ResolveSourceRootRelativePath(relative_path), "rb");
57 const char* relative_path) {
59 base::FileEnumerator e(ResolveSourceRootRelativePath(relative_path), false,
test_support_impl.h 22 virtual FILE* OpenSourceRootRelativeFile(const char* relative_path) OVERRIDE;
23 virtual char** EnumerateSourceRootRelativeDirectory(const char* relative_path)
  /external/chromium_org/mojo/public/cpp/test_support/lib/
test_support.cc 13 const std::string& relative_path) {
15 relative_path.c_str());
  /external/chromium_org/mojo/public/tests/
test_support_private.cc 24 FILE* MojoTestSupportOpenSourceRootRelativeFile(const char* relative_path) {
26 return g_test_support->OpenSourceRootRelativeFile(relative_path);
32 const char* relative_path) {
34 return g_test_support->EnumerateSourceRootRelativeDirectory(relative_path);
test_support_private.h 28 virtual FILE* OpenSourceRootRelativeFile(const char* relative_path) = 0;
30 const char* relative_path) = 0;
  /external/chromium_org/chrome/browser/extensions/
chrome_component_extension_resource_manager.cc 71 base::FilePath relative_path; local
73 !resources_dir.AppendRelativePath(directory_path, &relative_path)) {
76 relative_path = relative_path.Append(resource_path);
77 relative_path = relative_path.NormalizePathSeparators();
80 path_to_resource_id_.find(relative_path);
url_request_util.cc 217 base::FilePath relative_path; local
225 resources_path.AppendRelativePath(directory_path, &relative_path)) {
232 relative_path = relative_path.Append(request_path);
233 relative_path = relative_path.NormalizePathSeparators();
236 relative_path,
  /external/chromium_org/components/cloud_devices/common/
cloud_devices_urls.h 20 GURL GetCloudPrintRelativeURL(const std::string& relative_path);
28 GURL GetCloudDevicesRelativeURL(const std::string& relative_path);
cloud_devices_urls.cc 51 GURL GetCloudPrintRelativeURL(const std::string& relative_path) {
57 base::TrimString(relative_path, kURLPathSeparator, &trimmed_path);
113 GURL GetCloudDevicesRelativeURL(const std::string& relative_path) {
119 base::TrimString(relative_path, kURLPathSeparator, &trimmed_path);
  /external/chromium_org/extensions/common/
extension_resource_unittest.cc 23 EXPECT_TRUE(resource.relative_path().empty());
37 base::FilePath relative_path; local
38 relative_path = relative_path.AppendASCII("cira.js");
40 ExtensionResource resource(extension_id, root_path, relative_path);
44 EXPECT_EQ(relative_path.value(), resource.relative_path().value());
161 ToLower(resource.relative_path().value()));
extension_resource.cc 18 const base::FilePath& relative_path)
21 relative_path_(relative_path),
51 const base::FilePath& relative_path,
60 base::FilePath full_path = clean_extension_root.Append(relative_path);
66 relative_path.GetComponents(&components);
extension_resource.h 31 const base::FilePath& relative_path);
54 const base::FilePath& relative_path,
60 const base::FilePath& relative_path() const { return relative_path_; } function in class:extensions::ExtensionResource
  /external/chromium_org/chrome/browser/chromeos/file_manager/
fileapi_util.cc 32 GURL ConvertRelativeFilePathToFileSystemUrl(const base::FilePath& relative_path,
38 net::EscapeUrlEncodedData(relative_path.AsUTF8Unsafe(),
261 base::FilePath relative_path; local
265 &relative_path);
266 return relative_path;
272 const base::FilePath relative_path = local
275 if (relative_path.empty())
277 return ConvertRelativeFilePathToFileSystemUrl(relative_path, extension_id);
284 base::FilePath relative_path; local
288 &relative_path)) {
    [all...]
  /external/chromium_org/components/storage_monitor/
media_storage_util.h 42 // Given |path|, fill in |device_info|, and |relative_path|
46 base::FilePath* relative_path);
  /external/chromium_org/testing/gtest/scripts/
fuse_gtest_files.py 86 def VerifyFileExists(directory, relative_path):
89 relative_path is the file path relative to the given directory.
92 if not os.path.isfile(os.path.join(directory, relative_path)):
93 print 'ERROR: Cannot find %s in directory %s.' % (relative_path,
110 def VerifyOutputFile(output_dir, relative_path):
113 relative_path is relative to the output_dir directory.
117 output_file = os.path.join(output_dir, relative_path)
123 (relative_path, output_dir))

Completed in 362 milliseconds

1 2 3 4 5 6 7 8