Home
last modified time | relevance | path

Searched refs:urlencode (Results 1 – 25 of 37) sorted by relevance

12

/third_party/curl/tests/data/
Dtest10156 --data-urlencode
28 --data-urlencode
31 …TNUMBER --data-urlencode "my name is moo[]" --data-urlencode "y e s=s_i_r" --data-urlencode "v_alu…
/third_party/python/Lib/test/
Dtest_urllib.py1307 result = urllib.parse.urlencode(given)
1340 result = urllib.parse.urlencode(given)
1344 result = urllib.parse.urlencode(given)
1351 result = urllib.parse.urlencode(given)
1353 result = urllib.parse.urlencode(given, True)
1361 self.assertEqual("", urllib.parse.urlencode({}))
1362 self.assertEqual("", urllib.parse.urlencode([]))
1365 self.assertEqual("a=1", urllib.parse.urlencode({"a": 1}))
1366 self.assertEqual("a=None", urllib.parse.urlencode({"a": None}))
1369 self.assertEqual("a=1&a=2", urllib.parse.urlencode({"a": [1, 2]}, True))
[all …]
Dtest_urlparse.py755 self.assertRaises(TypeError, urllib.parse.urlencode, "foo")
961 result = urllib.parse.urlencode({'a': [1, 2], 'b': (3, 4, 5)}, True)
969 result = urllib.parse.urlencode({'a': Trivial()}, True)
973 result = urllib.parse.urlencode({'a': 'some value'})
975 result = urllib.parse.urlencode({'a': 'some value/another'},
978 result = urllib.parse.urlencode({'a': 'some value/another'},
/third_party/flutter/skia/tools/skqp/
Dfind_commit_with_best_gold_results.py48 ('query', urllib.urlencode(qq)),
54 return 'https://public-gold.skia.org/json/export?' + urllib.urlencode(query)
Dcut_release.py49 f = urllib2.urlopen('https://public-gold.skia.org/json/export?' + urllib.urlencode([
/third_party/skia/tools/skqp/
Dfind_commit_with_best_gold_results.py48 ('query', urllib.urlencode(qq)),
54 return 'https://public-gold.skia.org/json/export?' + urllib.urlencode(query)
Dcut_release.py53 f = urlopen('https://public-gold.skia.org/json/export?' + urllib.urlencode([
/third_party/curl/docs/cmdline-opts/
Ddata.d6 See-also: data-binary data-urlencode data-raw
18 --data-urlencode.
Dget.d7 or --data-urlencode to be used in an HTTP GET request instead of the POST
Ddata-urlencode.d1 Long: data-urlencode
DMakefile.inc53 data-urlencode.d \
/third_party/curl/lib/
Durlapi.c1309 bool urlencode = (flags & CURLU_URLENCODE)? 1 : 0; in curl_url_set() local
1372 urlencode = FALSE; /* never */ in curl_url_set()
1393 urlencode = FALSE; /* never */ in curl_url_set()
1408 plusencode = urlencode; in curl_url_set()
1486 if(urlencode) { in curl_url_set()
/third_party/boost/libs/gil/doc/html/_static/
Ddoctools.js40 jQuery.urlencode = encodeURIComponent;
Dsearchtools.js459 var highlightstring = '?highlight=' + $.urlencode(hlterms.join(" "));
/third_party/boost/libs/python/doc/html/numpy/_static/
Ddoctools.js40 jQuery.urlencode = encodeURIComponent;
Dsearchtools.js459 var highlightstring = '?highlight=' + $.urlencode(hlterms.join(" "));
/third_party/boost/libs/hof/doc/html/_static/
Ddoctools.js40 jQuery.urlencode = encodeURIComponent;
Dsearchtools.js459 var highlightstring = '?highlight=' + $.urlencode(hlterms.join(" "));
/third_party/grpc/tools/failures/
Ddetect_new_failures.py58 qargs = urllib.urlencode({'q': params})
/third_party/googletest/googletest/scripts/
Dupload.py207 data=urllib.urlencode({
243 (self.host, urllib.urlencode(args)))
337 url += "?" + urllib.urlencode(args)
/third_party/curl/docs/
Doptions-in-versions42 --data-urlencode 7.18.0
/third_party/libwebsockets/lib/roles/cgi/
Dcgi-server.c42 urlencode(const char *in, int inlen, char *out, int outlen) in urlencode() function
250 i = urlencode(t, i - lws_ptr_diff(t, tok), p, lws_ptr_diff(end, p)); in lws_cgi()
/third_party/python/Doc/library/
Durllib.parse.rst207 Use the :func:`urllib.parse.urlencode` function (with the ``doseq``
252 Use the :func:`urllib.parse.urlencode` function to convert such lists of pairs into
647 .. function:: urlencode(query, doseq=False, safe='', encoding=None, \
683 :func:`urllib.parse.urlencode` method can be used for generating the query
Durllib.request.rst208 :func:`urllib.parse.urlencode` function takes a mapping or sequence
1312 >>> params = urllib.parse.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0})
1319 from urlencode is encoded to bytes before it is sent to urlopen as data::
1323 >>> data = urllib.parse.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0})
1384 :func:`urllib.parse.urlencode` function.
1468 :func:`urllib.parse.urlencode` function.
/third_party/python/Doc/howto/
Durllib2.rst125 data = urllib.parse.urlencode(values)
154 >>> url_values = urllib.parse.urlencode(data)
191 data = urllib.parse.urlencode(values)

12