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

  /external/chromium/googleurl/src/
url_canon_internal_file.h 58 int after_slashes = begin + num_slashes; local
60 if (!DoesBeginWindowsDriveSpec(spec, after_slashes, end))
67 if (spec[after_slashes] >= 'a' && spec[after_slashes] <= 'z')
68 output->push_back(spec[after_slashes] - 'a' + 'A');
70 output->push_back(static_cast<char>(spec[after_slashes]));
75 return after_slashes + 2;
87 int after_slashes = begin + num_slashes; local
93 ParsedURL::Component sub_path(after_slashes, end - after_slashes);
    [all...]
url_parse_file.cc 72 // the scheme given in |after_slashes|. This will initialize the host, path,
77 int after_slashes,
80 int next_slash = FindNextSlash(spec, after_slashes, spec_len);
84 int host_len = spec_len - after_slashes;
86 parsed->host = Component(after_slashes, host_len);
110 int host_len = next_slash - after_slashes;
112 parsed->host = MakeRange(after_slashes, next_slash);
161 int after_slashes; local
169 after_slashes = begin + num_slashes;
170 if (DoesBeginWindowsDriveSpec(spec, after_slashes, spec_len))
    [all...]
url_canon_fileurl.cc 54 int after_slashes = begin + num_slashes; local
56 if (!url_parse::DoesBeginWindowsDriveSpec(spec, after_slashes, end))
67 if (spec[after_slashes] >= 'a' && spec[after_slashes] <= 'z')
68 output->push_back(spec[after_slashes] - 'a' + 'A');
70 output->push_back(static_cast<char>(spec[after_slashes]));
74 return after_slashes + 2;
url_parse.cc 91 int after_slashes = after_scheme + num_slashes; local
101 int end_auth = FindNextAuthorityTerminator(spec, after_slashes, spec_len);
102 authority = Component(after_slashes, end_auth - after_slashes);
url_canon_relative.cc 484 int after_slashes = relative_component.begin + num_slashes; local
488 url_parse::DoesBeginWindowsDriveSpec(relative_url, after_slashes,

Completed in 25 milliseconds