Searched refs:meth_name (Results 1 – 4 of 4) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | pyclbr.py | 164 tokentype, meth_name, start = g.next()[0:3] 171 cur_class._addmethod(meth_name, lineno) 175 dict[meth_name] = Function(fullmodule, meth_name,
|
D | urllib2.py | 364 def _call_chain(self, chain, kind, meth_name, *args): argument 370 func = getattr(handler, meth_name) 389 meth_name = protocol+"_request" 391 meth = getattr(processor, meth_name) 397 meth_name = protocol+"_response" 399 meth = getattr(processor, meth_name) 424 meth_name = 'http_error_%s' % proto 429 meth_name = proto + '_error' 431 args = (dict, proto, meth_name) + args
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_ssl.py | 1217 for meth_name, send_meth, expect_success, args in send_methods: 1218 indata = data_prefix + meth_name 1228 meth_name, outdata[:20], len(outdata), 1236 "expected to succeed.\n" % (meth_name,) 1238 if not str(e).startswith(meth_name): 1242 meth_name, e 1246 for meth_name, recv_meth, expect_success, args in recv_methods: 1247 indata = data_prefix + meth_name 1257 meth_name, outdata[:20], len(outdata), 1265 "expected to succeed.\n" % (meth_name,) [all …]
|
D | test_urllib2.py | 258 def __init__(self, meth_name, action, handle): argument 259 self.meth_name = meth_name 263 return self.handle(self.meth_name, self.action, *args)
|