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 | 4141 _PyObject_GetItemsIter(PyObject *obj, PyObject **listitems, in _PyObject_GetItemsIter() argument 4144 if (listitems == NULL || dictitems == NULL) { in _PyObject_GetItemsIter() 4150 *listitems = Py_None; in _PyObject_GetItemsIter() 4151 Py_INCREF(*listitems); in _PyObject_GetItemsIter() 4154 *listitems = PyObject_GetIter(obj); in _PyObject_GetItemsIter() 4155 if (*listitems == NULL) in _PyObject_GetItemsIter() 4169 Py_CLEAR(*listitems); in _PyObject_GetItemsIter() 4175 Py_CLEAR(*listitems); in _PyObject_GetItemsIter() 4180 assert(*listitems != NULL && *dictitems != NULL); in _PyObject_GetItemsIter() 4190 PyObject *newobj, *newargs, *state, *listitems, *dictitems; in reduce_newobj() local [all …]
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 2387 PyObject *listitems = Py_None; in save_reduce() local 2409 &listitems, in save_reduce() 2423 if (listitems == Py_None) in save_reduce() 2424 listitems = NULL; in save_reduce() 2425 else if (!PyIter_Check(listitems)) { in save_reduce() 2428 "Os", fn, Py_TYPE(listitems)->tp_name); in save_reduce() 2564 if (listitems && batch_list(self, listitems) < 0) in save_reduce()
|
/external/python/cpython3/Lib/ |
D | pickle.py | 539 def save_reduce(self, func, args, state=None, listitems=None, argument 627 if listitems is not None: 628 self._batch_appends(listitems)
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 3483 PyObject *listitems = Py_None; in save_reduce() local 3502 &callable, &argtup, &state, &listitems, &dictitems)) in save_reduce() 3519 if (listitems == Py_None) in save_reduce() 3520 listitems = NULL; in save_reduce() 3521 else if (!PyIter_Check(listitems)) { in save_reduce() 3524 Py_TYPE(listitems)->tp_name); in save_reduce() 3750 if (listitems && batch_list(self, listitems) < 0) in save_reduce()
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 3276 PyObject *slots = NULL, *listitems = NULL, *dictitems = NULL; in reduce_2() local 3374 listitems = Py_None; in reduce_2() 3375 Py_INCREF(listitems); in reduce_2() 3378 listitems = PyObject_GetIter(obj); in reduce_2() 3379 if (listitems == NULL) in reduce_2() 3412 res = PyTuple_Pack(5, newobj, args2, state, listitems, dictitems); in reduce_2() 3421 Py_XDECREF(listitems); in reduce_2()
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 4770 listitems=None, dictitems=None): argument 4780 if listitems is not None: 4781 self.assertListEqual(list(reduce_value[3]), listitems) 4920 self._check_reduce(proto, obj, listitems=list(obj))
|