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

  /external/chromium/googleurl/src/
url_parse_file.cc 159 int num_slashes; local
168 num_slashes = CountConsecutiveSlashes(spec, begin, spec_len);
169 after_slashes = begin + num_slashes;
200 num_slashes = CountConsecutiveSlashes(spec, after_scheme, spec_len);
202 after_slashes = after_scheme + num_slashes;
209 num_slashes != 3) {
218 if (num_slashes == 2) {
229 num_slashes > 0 ? after_scheme + num_slashes - 1 : after_scheme,
url_canon_internal_file.h 57 int num_slashes = CountConsecutiveSlashes(spec, begin, end); local
58 int after_slashes = begin + num_slashes;
86 int num_slashes = CountConsecutiveSlashes(spec, begin, end); local
87 int after_slashes = begin + num_slashes;
url_canon_relative.cc 162 int num_slashes = url_parse::CountConsecutiveSlashes(url, colon_offset + 1, local
165 if (num_slashes == 0 || num_slashes == 1) {
468 int num_slashes = url_parse::CountConsecutiveSlashes( local
485 int after_slashes = relative_component.begin + num_slashes;
488 ((num_slashes == 0 || base_is_file) &&
501 (num_slashes > 2 || num_slashes == relative_component.len)) {
508 if (num_slashes >= 2) {
url_canon_fileurl.cc 53 int num_slashes = url_parse::CountConsecutiveSlashes(spec, begin, end); local
54 int after_slashes = begin + num_slashes;
url_parse.cc 288 int num_slashes = CountConsecutiveSlashes(spec, after_scheme, spec_len); local
289 int after_slashes = after_scheme + num_slashes;

Completed in 158 milliseconds