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

  /external/chromium/net/tools/dump_cache/
url_utilities.cc 20 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 55 milliseconds