Searched refs:listitems (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/xfa/fxfa/ |
D | cxfa_widgetacc.cpp | 2083 std::vector<CXFA_Node*> listitems; in InsertItem() local 2087 listitems.push_back(pItem); in InsertItem() 2089 if (listitems.empty()) { in InsertItem() 2097 } else if (listitems.size() > 1) { in InsertItem() 2099 CXFA_Node* pNode = listitems[i]; in InsertItem() 2107 CXFA_Node* pNode = listitems[0]; in InsertItem() 2138 std::vector<CXFA_Node*> listitems; in GetItemLabel() local 2144 listitems.push_back(pItems); in GetItemLabel() 2152 CXFA_Node* pLabelItems = listitems[0]; in GetItemLabel() 2157 pLabelItems = listitems[1]; in GetItemLabel() [all …]
|
/external/python/cpython2/Lib/ |
D | pickle.py | 346 listitems=None, dictitems=None, obj=None): argument 418 if listitems is not None: 419 self._batch_appends(listitems)
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 4345 _PyObject_GetItemsIter(PyObject *obj, PyObject **listitems, in _PyObject_GetItemsIter() argument 4348 if (listitems == NULL || dictitems == NULL) { in _PyObject_GetItemsIter() 4354 *listitems = Py_None; in _PyObject_GetItemsIter() 4355 Py_INCREF(*listitems); in _PyObject_GetItemsIter() 4358 *listitems = PyObject_GetIter(obj); in _PyObject_GetItemsIter() 4359 if (*listitems == NULL) in _PyObject_GetItemsIter() 4373 Py_CLEAR(*listitems); in _PyObject_GetItemsIter() 4379 Py_CLEAR(*listitems); in _PyObject_GetItemsIter() 4384 assert(*listitems != NULL && *dictitems != NULL); in _PyObject_GetItemsIter() 4394 PyObject *newobj, *newargs, *state, *listitems, *dictitems; in reduce_newobj() local [all …]
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 2403 PyObject *listitems = Py_None; in save_reduce() local 2425 &listitems, in save_reduce() 2439 if (listitems == Py_None) in save_reduce() 2440 listitems = NULL; in save_reduce() 2441 else if (!PyIter_Check(listitems)) { in save_reduce() 2444 "Os", fn, Py_TYPE(listitems)->tp_name); in save_reduce() 2580 if (listitems && batch_list(self, listitems) < 0) in save_reduce()
|
/external/python/cpython3/Lib/ |
D | pickle.py | 567 def save_reduce(self, func, args, state=None, listitems=None, argument 655 if listitems is not None: 656 self._batch_appends(listitems)
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 3655 PyObject *listitems = Py_None; in save_reduce() local 3674 &callable, &argtup, &state, &listitems, &dictitems)) in save_reduce() 3691 if (listitems == Py_None) in save_reduce() 3692 listitems = NULL; in save_reduce() 3693 else if (!PyIter_Check(listitems)) { in save_reduce() 3696 Py_TYPE(listitems)->tp_name); in save_reduce() 3921 if (listitems && batch_list(self, listitems) < 0) in save_reduce()
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 3316 PyObject *slots = NULL, *listitems = NULL, *dictitems = NULL; in reduce_2() local 3437 listitems = Py_None; in reduce_2() 3438 Py_INCREF(listitems); in reduce_2() 3441 listitems = PyObject_GetIter(obj); in reduce_2() 3442 if (listitems == NULL) in reduce_2() 3475 res = PyTuple_Pack(5, newobj, args2, state, listitems, dictitems); in reduce_2() 3484 Py_XDECREF(listitems); in reduce_2()
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 4840 listitems=None, dictitems=None): argument 4850 if listitems is not None: 4851 self.assertListEqual(list(reduce_value[3]), listitems) 4990 self._check_reduce(proto, obj, listitems=list(obj))
|