Searched refs:url_path (Results 1 – 6 of 6) sorted by relevance
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | autoinstall.py | 380 url_path = urlparse.urlsplit(url)[2] 381 url_path = os.path.normpath(url_path) # Removes trailing slash. 382 target_filename = os.path.basename(url_path)
|
/external/chromium/chrome/common/extensions/ |
D | extension_file_util.cc | 522 std::string url_path = url.path(); in ExtensionURLToRelativeFilePath() local 523 if (url_path.empty() || url_path[0] != '/') in ExtensionURLToRelativeFilePath() 527 std::string file_path = UnescapeURLComponent(url_path, in ExtensionURLToRelativeFilePath()
|
/external/chromium/chrome/browser/download/ |
D | save_package.cc | 1149 std::string url_path; in GetSuggestedNameForSaveAs() local 1154 url_path = url_parts[i]; in GetSuggestedNameForSaveAs() 1155 if (!url_path.empty()) in GetSuggestedNameForSaveAs() 1159 if (url_path.empty()) in GetSuggestedNameForSaveAs() 1160 url_path = page_url_.host(); in GetSuggestedNameForSaveAs() 1161 name_with_proper_ext = FilePath::FromWStringHack(UTF8ToWide(url_path)); in GetSuggestedNameForSaveAs()
|
/external/chromium/net/base/ |
D | cookie_monster.cc | 260 const std::string& url_path = url.path(); in CanonPathWithString() local 262 size_t idx = url_path.find_last_of('/'); in CanonPathWithString() 269 return url_path.substr(0, idx); in CanonPathWithString() 2057 const std::string& url_path) const { in IsOnPath() 2072 if (url_path.find(path_) != 0) in IsOnPath() 2084 if (path_.length() != url_path.length() && in IsOnPath() 2086 url_path[path_.length()] != '/') in IsOnPath()
|
D | cookie_monster.h | 615 bool IsOnPath(const std::string& url_path) const;
|
/external/chromium/net/tools/testserver/ |
D | testserver.py | 761 _, _, url_path, _, query, _ = urlparse.urlparse(self.path) 762 sub_path = url_path[len(prefix):] 859 _, _, url_path, _, query, _ = urlparse.urlparse(self.path) 903 elif url_path.endswith(".gif"):
|