Searched refs:next_colon (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/net/tools/dump_cache/ |
D | url_utilities.cc | 20 size_t next_colon = url.find_first_of(':', b); in GetUrlHost() local 22 && next_colon != std::string::npos in GetUrlHost() 23 && next_colon < next_slash) { in GetUrlHost() 24 return std::string(url, b, next_colon - b); in GetUrlHost() 27 if (next_colon != std::string::npos) { in GetUrlHost() 28 return std::string(url, b, next_colon - b); in GetUrlHost()
|
/external/chromium/net/tools/dump_cache/ |
D | url_utilities.cc | 20 size_t next_colon = url.find_first_of(':', b); in GetUrlHost() local 22 && next_colon != std::string::npos in GetUrlHost() 23 && next_colon < next_slash) { in GetUrlHost() 24 return std::string(url, b, next_colon - b); in GetUrlHost() 27 if (next_colon != std::string::npos) { in GetUrlHost() 28 return std::string(url, b, next_colon - b); in GetUrlHost()
|