Home | History | Annotate | Download | only in src

Lines Matching refs:after_slashes

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;
169 after_slashes = begin + num_slashes;
170 if (DoesBeginWindowsDriveSpec(spec, after_slashes, spec_len)) {
173 after_scheme = after_slashes;
202 after_slashes = after_scheme + num_slashes;
208 if (!DoesBeginWindowsDriveSpec(spec, after_slashes, spec_len) &&
213 DoParseUNC(spec, after_slashes, spec_len, parsed);
219 DoParseUNC(spec, after_slashes, spec_len, parsed);