Searched refs:after_slashes (Results 1 - 12 of 12) sorted by relevance

/external/chromium/googleurl/src/
H A Durl_canon_internal_file.h58 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...]
H A Durl_parse_file.cc72 // 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_le
76 DoParseUNC(const CHAR* spec, int after_slashes, int spec_len, Parsed* parsed) argument
[all...]
H A Durl_canon_fileurl.cc54 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;
H A Durl_parse.cc289 int after_slashes = after_scheme + num_slashes; local
299 int end_auth = FindNextAuthorityTerminator(spec, after_slashes, spec_len);
300 authority = Component(after_slashes, end_auth - after_slashes);
H A Durl_canon_relative.cc485 int after_slashes = relative_component.begin + num_slashes; local
489 url_parse::DoesBeginWindowsDriveSpec(relative_url, after_slashes,
/external/chromium_org/url/
H A Durl_canon_internal_file.h34 int after_slashes = begin + num_slashes; local
36 if (!DoesBeginWindowsDriveSpec(spec, after_slashes, end))
43 if (spec[after_slashes] >= 'a' && spec[after_slashes] <= 'z')
44 output->push_back(spec[after_slashes] - 'a' + 'A');
46 output->push_back(static_cast<char>(spec[after_slashes]));
51 return after_slashes + 2;
63 int after_slashes = begin + num_slashes; local
69 ParsedURL::Component sub_path(after_slashes, end - after_slashes);
[all...]
H A Durl_parse_file.cc47 // the scheme given in |after_slashes|. This will initialize the host, path,
52 int after_slashes,
55 int next_slash = FindNextSlash(spec, after_slashes, spec_len);
59 int host_len = spec_len - after_slashes;
61 parsed->host = Component(after_slashes, host_len);
85 int host_len = next_slash - after_slashes;
87 parsed->host = MakeRange(after_slashes, next_slash);
137 int after_slashes; local
144 after_slashes = begin + num_slashes;
145 if (DoesBeginWindowsDriveSpec(spec, after_slashes, spec_le
51 DoParseUNC(const CHAR* spec, int after_slashes, int spec_len, Parsed* parsed) argument
[all...]
H A Durl_canon_fileurl.cc29 int after_slashes = begin + num_slashes; local
31 if (!url_parse::DoesBeginWindowsDriveSpec(spec, after_slashes, end))
42 if (spec[after_slashes] >= 'a' && spec[after_slashes] <= 'z')
43 output->push_back(spec[after_slashes] - 'a' + 'A');
45 output->push_back(static_cast<char>(spec[after_slashes]));
49 return after_slashes + 2;
H A Durl_canon_relative.cc472 int after_slashes = relative_component.begin + num_slashes; local
476 url_parse::DoesBeginWindowsDriveSpec(relative_url, after_slashes,
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_provider.cc142 const size_t after_slashes = std::min(url->length(), prefix_end + 2); local
143 while ((prefix_end < after_slashes) && ((*url)[prefix_end] == '/'))
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_provider.cc222 const size_t after_slashes = std::min(url->length(), prefix_end + 2); local
223 while ((prefix_end < after_slashes) && ((*url)[prefix_end] == '/'))
/external/chromium_org/url/third_party/mozilla/
H A Durl_parse.cc291 int after_slashes = after_scheme + num_slashes; local
301 int end_auth = FindNextAuthorityTerminator(spec, after_slashes, spec_len);
302 authority = Component(after_slashes, end_auth - after_slashes);

Completed in 243 milliseconds