Searched refs:num_slashes (Results 1 - 11 of 11) sorted by relevance
/external/chromium/googleurl/src/ |
H A D | 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,
|
H A D | 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;
|
H A D | 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) {
|
H A D | url_canon_fileurl.cc | 53 int num_slashes = url_parse::CountConsecutiveSlashes(spec, begin, end); local 54 int after_slashes = begin + num_slashes;
|
H A D | url_parse.cc | 288 int num_slashes = CountConsecutiveSlashes(spec, after_scheme, spec_len); local 289 int after_slashes = after_scheme + num_slashes;
|
/external/chromium_org/url/ |
H A D | url_parse_file.cc | 135 int num_slashes = CountConsecutiveSlashes(spec, begin, spec_len); local 144 after_slashes = begin + num_slashes; 160 if (!num_slashes && 180 num_slashes = CountConsecutiveSlashes(spec, after_scheme, spec_len); 181 after_slashes = after_scheme + num_slashes; 188 num_slashes != 3) { 197 if (num_slashes == 2) { 208 num_slashes > 0 ? after_scheme + num_slashes - 1 : after_scheme,
|
H A D | url_canon_internal_file.h | 33 int num_slashes = CountConsecutiveSlashes(spec, begin, end); local 34 int after_slashes = begin + num_slashes; 62 int num_slashes = CountConsecutiveSlashes(spec, begin, end); local 63 int after_slashes = begin + num_slashes;
|
H A D | url_canon_relative.cc | 150 int num_slashes = url_parse::CountConsecutiveSlashes(url, colon_offset + 1, local 153 if (num_slashes == 0 || num_slashes == 1) { 455 int num_slashes = url_parse::CountConsecutiveSlashes( local 472 int after_slashes = relative_component.begin + num_slashes; 475 ((num_slashes == 0 || base_is_file) && 491 (num_slashes >= 2 || num_slashes == relative_component.len)) { 498 if (num_slashes >= 2) {
|
H A D | url_canon_fileurl.cc | 28 int num_slashes = url_parse::CountConsecutiveSlashes(spec, begin, end); local 29 int after_slashes = begin + num_slashes;
|
H A D | url_util.cc | 220 int num_slashes = url_parse::CountConsecutiveSlashes( local 222 base_is_authority_based = num_slashes > 1; 223 base_is_hierarchical = num_slashes > 0;
|
/external/chromium_org/url/third_party/mozilla/ |
H A D | url_parse.cc | 290 int num_slashes = CountConsecutiveSlashes(spec, after_scheme, spec_len); local 291 int after_slashes = after_scheme + num_slashes;
|
Completed in 490 milliseconds