HomeSort by relevance Sort by last modified time
    Searched full:url_path (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/chrome/installer/util/
l10n_string_util.cc 79 std::wstring url_path = local
82 // The cast is safe because url_path has limited length
84 DCHECK(kuint32max > (url_path.size() * 3));
85 DWORD count = static_cast<DWORD>(url_path.size() * 3);
87 HRESULT hr = ::UrlCanonicalizeW(url_path.c_str(), url_canon.get(),
91 return url_path;
  /external/chromium_org/extensions/common/
file_util.cc 18 std::string url_path = url.path(); local
19 if (url_path.empty() || url_path[0] != '/')
23 std::string file_path = net::UnescapeURLComponent(url_path,
  /external/chromium_org/chrome/browser/safe_browsing/
two_phase_testserver.py 51 _, _, url_path, _, query, _ = urlparse.urlparse(self.path)
60 url_path,
68 _, _, url_path, _, query, _ = urlparse.urlparse(self.path)
69 if url_path != '/put':
70 self.send_error(400, 'invalid path on 2nd phase: ' + url_path)
  /external/chromium_org/build/android/pylib/host_driven/
test_server.py 54 'url_path': '/',
58 'url_path': 'chromiumsync/time',
104 TEST_SERVER_CHECK_PARAMS[test_server_path]['url_path'])
  /external/chromium_org/net/cookies/
canonical_cookie.cc 93 const std::string& url_path = url.path(); local
95 size_t idx = url_path.find_last_of('/');
102 return url_path.substr(0, idx);
299 bool CanonicalCookie::IsOnPath(const std::string& url_path) const {
315 if (url_path.find(path_) != 0)
318 // Now we know that url_path is >= cookie_path, and that cookie_path
319 // is a prefix of url_path. If they are the are the same length then
327 if (path_.length() != url_path.length() &&
329 url_path[path_.length()] != '/')
canonical_cookie.h 111 // Returns true if the given |url_path| path-matches the cookie-path as
113 bool IsOnPath(const std::string& url_path) const;
  /external/chromium_org/build/linux/
install-arm-sysroot.py 36 URL_PATH = 'nativeclient-archive2/toolchain'
53 url = "%s/%s/%s/%s" % (URL_PREFIX, URL_PATH, REVISION, TARBALL)
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_favicon_loader_browsertest.cc 86 std::string url_path = base::StringPrintf("files/ash/launcher/%s", url); local
87 ui_test_utils::NavigateToURL(browser(), test_server()->GetURL(url_path));
  /external/chromium_org/chrome/browser/ui/webui/
fileicon_source.cc 131 const std::string& url_path,
139 GetFilePathAndQuery(url_path, &file_path, &query);
  /external/chromium_org/chrome/installer/linux/sysroot_scripts/
install-debian.wheezy.sysroot.py 29 URL_PATH = 'chrome-linux-sysroot/toolchain'
87 url = '%s/%s/%s/%s' % (URL_PREFIX, URL_PATH, REVISION, tarball_filename)
  /external/chromium_org/native_client_sdk/src/tools/
httpd.py 104 def _FindDelegateForURL(self, url_path):
105 path = self.translate_path(url_path)
114 logging.info('No handler found for path %s. Using default.' % url_path)
  /external/chromium_org/cloud_print/service/win/
chrome_launcher.cc 101 std::string url_path(url.path() + "/enable_chrome_connector/enable.html");
103 replacements.SetPathStr(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_org/content/browser/download/
save_package.cc 1224 std::string url_path; local
    [all...]
  /external/chromium/chrome/browser/download/
save_package.cc 1149 std::string url_path; local
    [all...]
  /external/chromium_org/ui/gfx/
text_elider.cc 243 base::string16 url_path = url_string.substr(path_start_index, path_len); local
285 base::SplitString(url_path, ':', &file_path_split);
293 url_path_query_etc = url_path = file_path_split.at(1);
328 // Parse url_path using '/'.
330 base::SplitString(url_path, kForwardSlash, &url_path_elements);
401 final_elided_url_string += url_path;
    [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_org/net/base/
mime_sniffer.cc 464 std::string url_path = url.path(); local
466 if (url_path.length() < kOfficeExtensionTypes[i].extension_len)
470 &url_path[url_path.length() - kOfficeExtensionTypes[i].extension_len];
    [all...]
  /external/chromium_org/net/tools/testserver/
testserver.py 813 _, _, url_path, _, query, _ = urlparse.urlparse(self.path)
818 sub_path = url_path[len(prefix):]
883 _, _, url_path, _, query, _ = urlparse.urlparse(self.path)
902 sub_path = url_path[len(prefix):]
    [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...]

Completed in 1437 milliseconds