Home
last modified time | relevance | path

Searched refs:spec_len (Results 1 – 1 of 1) sorted by relevance

/external/openscreen/third_party/mozilla/
Durl_parse.cc58 int spec_len) { in FindNextAuthorityTerminator() argument
59 for (int i = start_offset; i < spec_len; i++) { in FindNextAuthorityTerminator()
63 return spec_len; // Not found. in FindNextAuthorityTerminator()
284 int spec_len, in DoParseAfterScheme() argument
287 int num_slashes = CountConsecutiveSlashes(spec, after_scheme, spec_len); in DoParseAfterScheme()
298 int end_auth = FindNextAuthorityTerminator(spec, after_slashes, spec_len); in DoParseAfterScheme()
301 if (end_auth == spec_len) // No beginning of path found. in DoParseAfterScheme()
304 full_path = Component(end_auth, spec_len - end_auth); in DoParseAfterScheme()
314 void DoParseStandardURL(const char* spec, int spec_len, Parsed* parsed) { in DoParseStandardURL() argument
315 assert(spec_len >= 0); in DoParseStandardURL()
[all …]