/external/python/cpython2/Lib/plat-mac/ |
D | gensuitemodule.py | 341 def getlist(f, description, getitem): function 383 (getlist, "optional arguments", getargument) 392 (getlist, "keyform", getostype) 398 (getlist, "properties", getproperty), 399 (getlist, "elements", getelement) 413 (getlist, "enumerator", getenumerator) 421 (getlist, "events", getevent), 422 (getlist, "classes", getclass), 423 (getlist, "comparisons", getcomparison), 424 (getlist, "enumerations", getenumeration) [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_cgi.py | 119 result[k] = isinstance(v, list) and form.getlist(k) or v.value 172 self.assertItemsEqual(sd.getlist(key), expect_val)
|
/external/python/oauth2client/oauth2client/contrib/django_util/ |
D | views.py | 184 scopes = request.GET.getlist('scopes', django_util.oauth2_settings.scopes)
|
/external/python/cpython2/Lib/ |
D | cgi.py | 568 def getlist(self, key): member in FieldStorage 819 def getlist(self, key): member in SvFormContentDict
|
/external/python/cpython2/Doc/library/ |
D | cgi.rst | 132 same name), use the :meth:`~FieldStorage.getlist` method, which always returns 137 value = form.getlist("username") 230 and :meth:`~FieldStorage.getlist` provided by this higher level interface. 244 .. method:: FieldStorage.getlist(name) 255 for item in form.getlist("item"):
|
/external/python/cpython3/Doc/library/ |
D | cgi.rst | 131 same name), use the :meth:`~FieldStorage.getlist` method, which always returns 136 value = form.getlist("username") 242 and :meth:`~FieldStorage.getlist` provided by this higher level interface. 256 .. method:: FieldStorage.getlist(name) 267 for item in form.getlist("item"):
|
/external/python/oauth2client/oauth2client/contrib/ |
D | flask_util.py | 373 args['scopes'] = request.args.getlist('scopes')
|
/external/python/cpython3/Lib/ |
D | cgi.py | 216 return {k: fs.getlist(k) for k in fs} 556 def getlist(self, key): member in FieldStorage
|
/external/python/cpython3/Lib/test/ |
D | test_cgi.py | 112 result[k] = isinstance(v, list) and form.getlist(k) or v.value
|
D | test_configparser.py | 1989 self.assertEqual(cfg.getlist('s', 'list'), ['a', 'b', 'c', 'd', 1995 self.assertEqual(s.getlist('list'), ['a', 'b', 'c', 'd',
|
/external/toybox/toys/pending/ |
D | ip.c | 234 static struct arglist **getlist(u_int8_t whichDB) in getlist() function 313 alist = getlist(whichDB); in namefromRPDB() 329 for (alist = getlist(whichDB); i < RPDB_ENTRIES; i++) { in idxfromRPDB()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 1010 >>> cfg.getlist('s', 'list') 1013 >>> section.getlist('list')
|