Searched refs:next_colon (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/net/tools/dump_cache/
H A Durl_utilities.cc20 size_t next_colon = url.find_first_of(':', b); local
22 && next_colon != std::string::npos
23 && next_colon < next_slash) {
24 return std::string(url, b, next_colon - b);
27 if (next_colon != std::string::npos) {
28 return std::string(url, b, next_colon - b);

Completed in 786 milliseconds