Searched refs:xlist (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Modules/clinic/ |
H A D | selectmodule.c.h | 6 "select($module, rlist, wlist, xlist, timeout=None, /)\n" 14 "xlist -- wait for an \"exceptional condition\"\n" 37 PyObject *xlist, PyObject *timeout_obj); 45 PyObject *xlist; in select_select() local 53 xlist = args[2]; in select_select() 59 return_value = select_select_impl(module, rlist, wlist, xlist, timeout_obj); in select_select()
|
/third_party/libexif/contrib/c++/ |
H A D | exif_module.cxx | 171 extract<list> xlist(data); in setData() 172 if(xlist.check()) in setData() 174 list l= xlist(); in setData()
|
/third_party/python/Modules/ |
H A D | selectmodule.c | 227 xlist: object 236 xlist -- wait for an "exceptional condition" 257 PyObject *xlist, PyObject *timeout_obj) in select_select_impl() 324 if ((emax = seq2set(xlist, &efdset, efd2obj)) < 0) in select_select_impl() 384 xlist = set2list(&efdset, efd2obj); in select_select_impl() 388 ret = PyTuple_Pack(3, rlist, wlist, xlist); in select_select_impl() 392 Py_XDECREF(xlist); in select_select_impl() 256 select_select_impl(PyObject *module, PyObject *rlist, PyObject *wlist, PyObject *xlist, PyObject *timeout_obj) select_select_impl() argument
|
/third_party/python/Lib/test/ |
H A D | test_buffer.py | 1888 xlist = x.tolist() 1893 self.assertEqual(mvlist, xlist) 1899 self.assertEqual(xlist, ylist)
|
Completed in 10 milliseconds