OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetUrlPath
(Results
1 - 10
of
10
) sorted by null
/external/chromium/net/tools/dump_cache/
url_utilities_unittest.cc
49
TEST(UrlUtilitiesTest,
GetUrlPath
) {
51
UrlUtilities::
GetUrlPath
("http://www.foo.com"));
53
UrlUtilities::
GetUrlPath
("http://www.foo.com:80"));
55
UrlUtilities::
GetUrlPath
("http://www.foo.com:80/"));
57
UrlUtilities::
GetUrlPath
("http://www.foo.com/news"));
59
UrlUtilities::
GetUrlPath
("www.foo.com:80/news?q=hello"));
61
UrlUtilities::
GetUrlPath
("www.foo.com/news?q=a:b"));
63
UrlUtilities::
GetUrlPath
("www.foo.com:80"));
url_utilities.h
27
static std::string
GetUrlPath
(const std::string& url);
url_to_filename_encoder.h
121
std::string url_filename = UrlUtilities::
GetUrlPath
(clean_url);
url_utilities.cc
45
std::string UrlUtilities::
GetUrlPath
(const std::string& url) {
/external/chromium_org/net/tools/dump_cache/
url_utilities_unittest.cc
49
TEST(UrlUtilitiesTest,
GetUrlPath
) {
51
UrlUtilities::
GetUrlPath
("http://www.foo.com"));
53
UrlUtilities::
GetUrlPath
("http://www.foo.com:80"));
55
UrlUtilities::
GetUrlPath
("http://www.foo.com:80/"));
57
UrlUtilities::
GetUrlPath
("http://www.foo.com/news"));
59
UrlUtilities::
GetUrlPath
("www.foo.com:80/news?q=hello"));
61
UrlUtilities::
GetUrlPath
("www.foo.com/news?q=a:b"));
63
UrlUtilities::
GetUrlPath
("www.foo.com:80"));
url_utilities.h
26
static std::string
GetUrlPath
(const std::string& url);
url_to_filename_encoder.h
120
std::string url_filename = UrlUtilities::
GetUrlPath
(clean_url);
url_utilities.cc
45
std::string UrlUtilities::
GetUrlPath
(const std::string& url) {
/external/chromium_org/net/tools/flip_server/
spdy_interface.cc
154
// UrlUtilities::
GetUrlPath
will fail and always return a / breaking
155
// the request.
GetUrlPath
assumes the absolute URL is being passed in.
156
std::string path_string = UrlUtilities::
GetUrlPath
(url->second);
451
block["url"] = UrlUtilities::
GetUrlPath
(original_url);
461
block[":path"] = UrlUtilities::
GetUrlPath
(original_url);
462
block[":host"] = UrlUtilities::
GetUrlPath
(original_url);
/external/chromium/net/tools/flip_server/
spdy_interface.cc
180
// UrlUtilities::
GetUrlPath
will fail and always return a / breaking
181
// the request.
GetUrlPath
assumes the absolute URL is being passed in.
184
uri = UrlUtilities::
GetUrlPath
(url->second);
471
block["path"] = UrlUtilities::
GetUrlPath
(original_url);
Completed in 120 milliseconds