Lines Matching full:gurl
14 class GURL;
18 // Returns a new GURL by appending the given query parameter name and the
24 // AppendQueryParameter(GURL("http://example.com"), "name", "value").spec()
26 // AppendQueryParameter(GURL("http://example.com?x=y"), "name", "value").spec()
28 NET_EXPORT GURL AppendQueryParameter(const GURL& url,
32 // Returns a new GURL by appending or replacing the given query parameter name
40 // GURL("http://example.com"), "name", "new").spec()
43 // GURL("http://example.com?x=y&name=old"), "name", "new").spec()
45 NET_EXPORT GURL AppendOrReplaceQueryParameter(const GURL& url,
52 explicit QueryIterator(const GURL& url);
63 const GURL& url_;
76 NET_EXPORT bool GetValueForKeyInQuery(const GURL& url,