Home | History | Annotate | Download | only in src

Lines Matching refs:query

208 // Converts query strings into a custom encoding. The embedder can supply an
220 // converter supports. This is used only for the query encoding conversion,
465 // Query: Prepends the ? if needed.
478 const url_parse::Component& query,
483 const url_parse::Component& query,
554 // Use for mailto URLs. This "canonicalizes" the url into a path and query
556 // the query encoding if there is a query. This is because a mailto URL is
558 // etc. which would influence a query encoding normally are irrelevant.
597 query(NULL),
610 query(default_value),
620 const CHAR* query;
703 // Query
705 sources_.query = s;
706 components_.query = comp;
709 sources_.query = Placeholder();
710 components_.query = url_parse::Component();
712 bool IsQueryOverridden() const { return sources_.query != NULL; }
767 // the host, path, query, and ref will be ignored.
794 // Mailto URLs can only have the scheme, path, and query replaced.
848 // The query charset converter follows the same rules as CanonicalizeQuery.