Searched refs:listitems (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_node.cpp | 4392 std::vector<CXFA_Node*> listitems; in InsertItem() local 4396 listitems.push_back(pItem); in InsertItem() 4398 if (listitems.empty()) { in InsertItem() 4406 } else if (listitems.size() > 1) { in InsertItem() 4408 CXFA_Node* pNode = listitems[i]; in InsertItem() 4416 CXFA_Node* pNode = listitems[0]; in InsertItem() 4442 std::vector<CXFA_Node*> listitems; in GetItemLabel() local 4447 listitems.push_back(pItems); in GetItemLabel() 4450 if (listitems.size() <= 1) in GetItemLabel() 4453 CXFA_Node* pLabelItems = listitems[0]; 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 | 4542 _PyObject_GetItemsIter(PyObject *obj, PyObject **listitems, in _PyObject_GetItemsIter() argument 4545 if (listitems == NULL || dictitems == NULL) { in _PyObject_GetItemsIter() 4551 *listitems = Py_None; in _PyObject_GetItemsIter() 4552 Py_INCREF(*listitems); in _PyObject_GetItemsIter() 4555 *listitems = PyObject_GetIter(obj); in _PyObject_GetItemsIter() 4556 if (*listitems == NULL) in _PyObject_GetItemsIter() 4570 Py_CLEAR(*listitems); in _PyObject_GetItemsIter() 4576 Py_CLEAR(*listitems); in _PyObject_GetItemsIter() 4581 assert(*listitems != NULL && *dictitems != NULL); in _PyObject_GetItemsIter() 4591 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 | 621 def save_reduce(self, func, args, state=None, listitems=None, argument 709 if listitems is not None: 710 self._batch_appends(listitems)
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 3945 PyObject *listitems = Py_None; in save_reduce() local 3965 &callable, &argtup, &state, &listitems, &dictitems, in save_reduce() 3983 if (listitems == Py_None) in save_reduce() 3984 listitems = NULL; in save_reduce() 3985 else if (!PyIter_Check(listitems)) { in save_reduce() 3988 Py_TYPE(listitems)->tp_name); in save_reduce() 4222 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 | 4990 listitems=None, dictitems=None): argument 5000 if listitems is not None: 5001 self.assertListEqual(list(reduce_value[3]), listitems) 5140 self._check_reduce(proto, obj, listitems=list(obj))
|