/external/chromium/chrome/common/extensions/ |
extension_sidebar_utils.cc | 25 GURL ResolveRelativePath(const std::string& relative_path, 28 GURL url(extension->GetResourceURL(relative_path)); 31 relative_path);
|
extension_resource_unittest.cc | 21 EXPECT_TRUE(resource.relative_path().empty()); 34 FilePath relative_path; local 35 relative_path = relative_path.AppendASCII("cira.js"); 38 ExtensionResource resource(extension_id, root_path, relative_path); 42 EXPECT_EQ(relative_path.value(), resource.relative_path().value()); 88 ToLower(resource.relative_path().value()));
|
extension_sidebar_utils.h | 19 // Resolves |relative_path| relative to |extension|'s url. 22 GURL ResolveRelativePath(const std::string& relative_path,
|
extension_resource.h | 23 const FilePath& relative_path); 37 const FilePath& relative_path); 42 const FilePath& relative_path() const { return relative_path_; } function in class:ExtensionResource
|
extension_resource.cc | 16 const FilePath& relative_path) 19 relative_path_(relative_path) { 41 const FilePath& extension_root, const FilePath& relative_path) { 48 FilePath full_path = clean_extension_root.Append(relative_path);
|
extension_file_util.cc | 39 static bool IsScriptValid(const FilePath& path, const FilePath& relative_path, 187 js_script.extension_root(), js_script.relative_path()); 188 if (!IsScriptValid(path, js_script.relative_path(), 196 css_script.extension_root(), css_script.relative_path()); 197 if (!IsScriptValid(path, css_script.relative_path(), 461 const FilePath& relative_path, 469 relative_path.LossyDisplayName()); 476 relative_path.LossyDisplayName());
|
user_script.cc | 51 const FilePath& relative_path, 54 relative_path_(relative_path),
|
/external/chromium/chrome/browser/extensions/ |
extension_webstore_private_browsertest.cc | 121 // |relative_path|, but replaces the hostname with kTestUrlHostname so that 124 GURL GetUrl(const std::string& relative_path) { 126 "files/extensions/webstore_private/" + relative_path); 134 const std::string& relative_path, 153 GURL url = GetUrl(relative_path); 165 void RunLoginTest(const std::string& relative_path, 170 relative_path, 175 relative_path,
|
execute_code_in_tab_function.cc | 107 std::string relative_path; local 109 if (!script_info->GetString(keys::kFileKey, &relative_path)) 111 resource_ = GetExtension()->GetResource(relative_path); 113 if (resource_.extension_root().empty() || resource_.relative_path().empty()) { 135 resource_.relative_path().value()); 138 WideToUTF8(resource_.relative_path().value()));
|
extension_protocols.cc | 143 FilePath relative_path = directory_path.BaseName().Append( local 146 relative_path = relative_path.NormalizeWindowsPathSeparators(); 158 if (relative_path == bm_resource_path) { 159 return new URLRequestResourceBundleJob(request, relative_path,
|
convert_user_script_unittest.cc | 49 extension->path().Append(script.js_scripts()[0].relative_path()))); 88 extension->path().Append(script.js_scripts()[0].relative_path())));
|
sandboxed_extension_unpacker.cc | 584 FilePath relative_path = FilePath::FromWStringHack(UTF8ToWide(*key_it)); local 585 relative_path = relative_path.Append(Extension::kMessagesFilename); 586 if (relative_path.IsAbsolute() || relative_path.ReferencesParent()) { 595 FilePath path = extension_root_.Append(relative_path);
|
/external/v8/test/cctest/ |
testcfg.py | 93 relative_path = raw_test.split('/') 94 full_path = current_path + relative_path 96 dependency = relative_path[0] + '/' + dependency
|
/external/chromium/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))
|
/external/gtest/scripts/ |
fuse_gtest_files.py | 102 def VerifyFileExists(relative_path): 105 relative_path is the file path relative to the gtest root. 108 if not os.path.isfile(os.path.join(gtest_root, relative_path)): 109 print 'ERROR: Cannot find %s in directory %s.' % (relative_path, 125 def VerifyOutputFile(relative_path): 128 relative_path is relative to the output_dir directory. 132 output_file = os.path.join(output_dir, relative_path) 135 (relative_path, output_dir))
|
/external/protobuf/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))
|
/external/webkit/Tools/Scripts/ |
check-for-inappropriate-files-in-framework | 43 def print_inappropriate_file_error framework, relative_path 44 print_error "#{framework}.framework/#{relative_path} should not be present in the framework."
|
make-gypi | 49 relative_path = os.path.join(directory_path, file_name) 50 collected_files.append(os.path.relpath(relative_path, '.'))
|
/external/bluetooth/glib/gio/tests/ |
desktop-app-info.c | 185 char *relative_path; local 202 relative_path = g_file_get_relative_path (root, descend); 203 g_assert (relative_path != NULL);
|
live-g-file.c | 488 char *relative_path; local 508 relative_path = g_file_get_relative_path (root, descend); 509 g_assert (relative_path != NULL); 514 if (strcmp (sample_struct[i].filename, relative_path) == 0) 526 g_file_info_get_display_name (info), relative_path); 1030 char *relative_path; local 1048 relative_path = g_file_get_relative_path (root, descend); 1049 g_assert (relative_path != NULL); [all...] |
/external/chromium/chrome/browser/ui/webui/ |
chrome_url_data_manager_backend.cc | 415 std::string relative_path; local 416 URLToRequest(stripped_url, &source_name, &relative_path); 421 // Check that |relative_path| is not an absolute path (otherwise 424 FilePath p(FilePath::StringType(relative_path.begin(), relative_path.end())); 432 *path = inspector_dir.AppendASCII(relative_path);
|
/external/chromium/chrome/browser/ui/gtk/infobars/ |
extension_infobar_gtk.cc | 52 if (!icon_resource.relative_path().empty()) {
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
test.py | 367 relative_path = self.relative_test_filename(filename) 371 if (relative_path.startswith(LAYOUTTEST_WEBSOCKET_DIR) 372 or relative_path.startswith(LAYOUTTEST_HTTP_DIR)): 373 relative_path = relative_path[len(LAYOUTTEST_HTTP_DIR):] 380 if (port and not relative_path.startswith("local/") and 381 not relative_path.startswith("media/")): 382 if relative_path.startswith("ssl/"): 387 return "%s://127.0.0.1:%u/%s" % (protocol, port, relative_path)
|
/external/bison/tests/ |
existing.at | 1426 relative_path: 1435 relative_path 1436 | '(' relative_path ',' relative_path ')' 1439 | ORDINAL LAST object_type relative_path 1440 | LAST object_type relative_path 1441 | ORDINAL object_type relative_path 1442 | LABEL relative_path
|
/external/chromium/testing/gtest/test/ |
gtest-options_test.cc | 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) { 64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
|