Home
last modified time | relevance | path

Searched refs:PyDict_Next (Results 1 – 25 of 25) sorted by relevance

/external/python/cpython2/Objects/
Dmoduleobject.c119 while (PyDict_Next(d, &pos, &key, &value)) { in _PyModule_Clear()
133 while (PyDict_Next(d, &pos, &key, &value)) { in _PyModule_Clear()
Dfuncobject.c511 while (PyDict_Next(kw, &pos, &k[i], &k[i+1])) { in function_call()
Ddictobject.c974 PyDict_Next(PyObject *op, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue) in PyDict_Next() function
1137 while (PyDict_Next((PyObject *)mp, &i, &key, &value)) { in dict_repr()
2142 while (PyDict_Next(op, &i, &pk, &pv)) { in dict_traverse()
Dexceptions.c206 while (PyDict_Next(state, &i, &d_key, &d_value)) { in BaseException_setstate()
Dtypeobject.c1488 while (PyDict_Next(set, &i, &k, &v) && (size_t)off < sizeof(buf)) { in set_mro_error()
/external/python/cpython2/Doc/c-api/
Ddict.rst151 .. c:function:: int PyDict_Next(PyObject *p, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue)
169 while (PyDict_Next(self->dict, &pos, &key, &value)) {
182 while (PyDict_Next(self->dict, &pos, &key, &value)) {
/external/python/cpython2/Include/
Ddictobject.h115 PyAPI_FUNC(int) PyDict_Next(
/external/python/cpython2/PC/os2vacpp/
Dpython.def128 PyDict_Next
/external/python/cpython2/Python/
Dsymtable.c457 while (PyDict_Next(scope, &pos, &name, &v)) { in analyze_cells()
535 while (PyDict_Next(symbols, &pos, &name, &v)) { in update_symbols()
559 while (PyDict_Next(free, &pos, &name, &v)) { in update_symbols()
667 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block()
Dimport.c500 while (PyDict_Next(modules, &pos, &key, &value)) { in PyImport_Cleanup()
521 while (PyDict_Next(modules, &pos, &key, &value)) { in PyImport_Cleanup()
Dmarshal.c391 while (PyDict_Next(v, &pos, &key, &value)) { in w_object()
Dgetargs.c1687 while (PyDict_Next(keywords, &pos, &key, &value)) { in vgetargskeywords()
Dcompile.c3752 while (PyDict_Next(dict, &pos, &k, &v)) { in dict_keys_inorder()
DPython-ast.c427 while (PyDict_Next(kw, &i, &key, &value)) { in ast_type_init()
/external/python/cpython2/Doc/data/
Drefcounts.dat234 PyDict_Next:int:::
235 PyDict_Next:PyObject*:p:0:
236 PyDict_Next:int:ppos::
237 PyDict_Next:PyObject**:pkey:0:
238 PyDict_Next:PyObject**:pvalue:0:
/external/python/cpython2/RISCOS/Modules/
Ddrawfmodule.c335 while(PyDict_Next(d,&n,&key,&value)) in DrawF_FontTable()
352 while(PyDict_Next(d,&n,&key,&value)) in DrawF_FontTable()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc486 while (PyDict_Next(self->composite_fields, &pos, &key, &field)) { in ForEachCompositeField()
504 while (PyDict_Next(self->extensions->values, &pos, &key, &field)) { in ForEachCompositeField()
1052 while (PyDict_Next(kwargs, &pos, &name, &value)) { in CheckAndGetInteger()
1076 while (PyDict_Next(value, &map_pos, &map_key, &map_value)) { in CheckAndGetInteger()
/external/python/cpython2/Modules/
DcPickle.c907 while ((j = PyDict_Next(modules_dict, &i, &name, &module))) { in whichmodule()
1934 PyDict_Next(obj, &ppos, &key, &value); in batch_dict_exact()
1949 while (PyDict_Next(obj, &ppos, &key, &value)) { in batch_dict_exact()
4624 while (PyDict_Next(state, &i, &d_key, &d_value)) { in load_build()
4647 while (PyDict_Next(slotstate, &i, &d_key, &d_value)) { in load_build()
6059 for (i=0; PyDict_Next(di, &i, &k, &v); ) { in initcPickle()
Dselectmodule.c345 while (PyDict_Next(self->dict, &pos, &key, &value)) { in update_ufd_array()
D_testcapimodule.c135 while (PyDict_Next(dict, &pos, &k, &v)) { in test_dict_inner()
/external/python/cpython2/Mac/Modules/
DNav.c143 while ( PyDict_Next(d, &pos, &key, &value) ) { in filldialogoptions()
/external/python/cpython2/PC/os2emx/
Dpython27.def277 "PyDict_Next"
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c4227 while(PyDict_Next(kwds, &pos, &key, &value)) { in Struct_init()
/external/python/cpython2/Misc/
DHISTORY7468 PyDict_Next() calling dict_resize(), and the GC code's use of
7469 PyDict_Next() violating an assumption in dict_items(). This was
7712 - PyDict_Next(): it is now safe to call PyDict_SetItem() with a key
7713 that's already in the dictionary during a PyDict_Next() iteration.
7717 PyDict_Next() iteration!
DNEWS12009 - Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next