Lines Matching refs:query
180 Component* query,
182 // path = [/]<segment1>/<segment2>/<...>/<segmentN>;<param>?<query>#<ref>
187 query->reset();
201 // Only match the query string if it precedes the reference fragment
228 // Query fragment: everything from the ? to the next boundary (either the end
232 *query = MakeRange(query_separator + 1, query_end);
234 query->reset();
292 // and port) and the full path (path, query, and reference).
310 ParsePath(spec, full_path, &parsed->path, &parsed->query, &parsed->ref);
346 parsed->query.reset();
391 parsed->query.reset(); // May use this; reset for convenience.
424 // Split [path_begin, path_end) into a path + query.
427 parsed->query = MakeRange(i + 1, path_end);
530 Component* query,
533 if (!query->is_nonempty())
536 int start = query->begin;
538 int end = query->end();
561 // Save the new query
562 *query = url_parse::MakeRange(cur, end);
620 if (query.is_valid()) {
621 if (type < QUERY || (type == QUERY && include_delimiter))
622 return query.begin - 1; // Back over delimiter.
623 if (type == QUERY)
624 return query.begin; // Don't want delimiter counted.
625 cur = query.end();
667 Component* query,
670 return DoExtractQueryKeyValue(url, query, key, value);
674 Component* query,
677 return DoExtractQueryKeyValue(url, query, key, value);
733 Component* query,
735 ParsePath(spec, path, filepath, query, ref);
741 Component* query,
743 ParsePath(spec, path, filepath, query, ref);