/external/webkit/Tools/Scripts/webkitpy/common/system/ |
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/ |
extension_file_util.cc | 522 std::string url_path = url.path(); local 523 if (url_path.empty() || url_path[0] != '/') 527 std::string file_path = UnescapeURLComponent(url_path,
|
/external/chromium/chrome/browser/download/ |
save_package.cc | 1149 std::string url_path; local [all...] |
/external/chromium/net/base/ |
cookie_monster.cc | 260 const std::string& url_path = url.path(); local 262 size_t idx = url_path.find_last_of('/'); 269 return url_path.substr(0, idx); [all...] |
cookie_monster.h | 615 bool IsOnPath(const std::string& url_path) const; [all...] |
/external/chromium/net/tools/testserver/ |
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"): [all...] |