HomeSort by relevance Sort by last modified time
    Searched refs:next_slash (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/tools/dump_cache/
url_utilities.cc 19 size_t next_slash = url.find_first_of('/', b); local
21 if (next_slash != std::string::npos
23 && next_colon < next_slash) {
26 if (next_slash == std::string::npos) {
30 next_slash = url.size();
33 return std::string(url, b, next_slash - b);
  /external/chromium/googleurl/src/
url_parse_file.cc 80 int next_slash = FindNextSlash(spec, after_slashes, spec_len); local
81 if (next_slash == spec_len) {
97 if (DoesBeginWindowsDriveSpec(spec, next_slash + 1, spec_len)) {
99 ParsePathInternal(spec, MakeRange(next_slash, spec_len),
110 int host_len = next_slash - after_slashes;
112 parsed->host = MakeRange(after_slashes, next_slash);
115 if (next_slash < spec_len) {
116 ParsePathInternal(spec, MakeRange(next_slash, spec_len),

Completed in 58 milliseconds