Home
last modified time | relevance | path

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

12

/third_party/python/Doc/c-api/
Ddict.rst163 .. c:function:: int PyDict_Next(PyObject *p, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue)
181 while (PyDict_Next(self->dict, &pos, &key, &value)) {
193 while (PyDict_Next(self->dict, &pos, &key, &value)) {
/third_party/python/Include/
Ddictobject.h27 PyAPI_FUNC(int) PyDict_Next(
/third_party/python/Objects/
Dmoduleobject.c589 while (PyDict_Next(d, &pos, &key, &value)) { in _PyModule_ClearDict()
609 while (PyDict_Next(d, &pos, &key, &value)) { in _PyModule_ClearDict()
Dcall.c936 while (PyDict_Next(kwargs, &pos, &key, &value)) { in _PyStack_UnpackDict()
Ddictobject.c985 while (PyDict_Next(dict, &pos, &key, &value)) in _PyDict_HasOnlyStringKeys()
1880 PyDict_Next(PyObject *op, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue) in PyDict_Next() function
2123 while (PyDict_Next((PyObject *)mp, &i, &key, &value)) { in dict_repr()
Dtypeobject.c343 while (PyDict_Next(raw, &i, NULL, &ref)) { in PyType_Modified()
1800 while (PyDict_Next(set, &i, &k, &v) && (size_t)off < sizeof(buf)) { in set_mro_error()
4088 while (PyDict_Next(raw, &i, NULL, &ref)) { in type___subclasses___impl()
8463 while (PyDict_Next(names_to_set, &i, &key, &value)) { in type_new_set_names()
8547 while (PyDict_Next(subclasses, &i, NULL, &ref)) { in recurse_down_subclasses()
Dexceptions.c158 while (PyDict_Next(state, &i, &d_key, &d_value)) { in BaseException_setstate()
/third_party/python/Modules/
D_functoolsmodule.c385 for (i = 0; PyDict_Next(pto->kw, &i, &key, &value);) { in partial_repr()
853 for (pos = 0; PyDict_Next(kwds, &pos, &keyword, &value);) { in lru_cache_make_key()
868 for (pos = 0; PyDict_Next(kwds, &pos, &keyword, &value);) { in lru_cache_make_key()
D_abc.c501 while (PyDict_Next(grandchildren, &i, NULL, &grandchildren)) { in set_collection_flag_recursive()
D_pickle.c1939 while (PyDict_Next(modules, &i, &module_name, &module)) { in whichmodule()
3260 PyDict_Next(obj, &ppos, &key, &value); in batch_dict_exact()
3275 while (PyDict_Next(obj, &ppos, &key, &value)) { in batch_dict_exact()
4989 while (PyDict_Next(obj, &i, &key, &value)) { in Pickler_set_memo()
6704 while (PyDict_Next(state, &i, &d_key, &d_value)) { in load_build()
6731 while (PyDict_Next(slotstate, &i, &d_key, &d_value)) { in load_build()
7511 while (PyDict_Next(obj, &i, &key, &value)) { in Unpickler_set_memo()
D_operator.c1613 while (PyDict_Next(mc->kwds, &pos, &key, &value)) { in methodcaller_repr()
Dselectmodule.c425 while (PyDict_Next(self->dict, &pos, &key, &value)) { in update_ufd_array()
D_xxsubinterpretersmodule.c137 if (PyDict_Next(shareable, &pos, &key, &value) == 0) { in _get_shared_ns()
D_elementtree.c879 while (PyDict_Next(object, &pos, &key, &value)) { in deepcopy()
/third_party/python/Python/
Dpylifecycle.c1378 while (PyDict_Next(modules, &pos, &key, &value)) { in finalize_remove_modules()
2587 while (PyDict_Next(interp->sysdict, &pos, &key, &value)) { in _Py_DumpExtensionModules()
2605 while (PyDict_Next(modules, &pos, &key, &value)) { in _Py_DumpExtensionModules()
Dgetargs.c1821 while (PyDict_Next(kwargs, &j, &key, NULL)) { in vgetargskeywords()
2215 if (!PyDict_Next(kwargs, &j, &keyword, NULL)) in vgetargskeywordsfast_impl()
2440 if (!PyDict_Next(kwargs, &j, &keyword, NULL)) in _PyArg_UnpackKeywords()
Dsymtable.c594 while (PyDict_Next(scopes, &pos, &name, &v)) { in analyze_cells()
644 while (PyDict_Next(symbols, &pos, &name, &v)) { in update_symbols()
805 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block()
Dmarshal.c488 while (PyDict_Next(v, &pos, &key, &value)) { in w_complex_object()
Dcompile.c6769 while (PyDict_Next(dict, &pos, &k, &v)) { in dict_keys_inorder()
6788 while (PyDict_Next(dict, &pos, &k, &v)) { in consts_dict_keys_inorder()
/third_party/python/Doc/data/
Drefcounts.dat549 PyDict_Next:int:::
550 PyDict_Next:PyObject*:p:0:
551 PyDict_Next:Py_ssize_t:ppos::
552 PyDict_Next:PyObject**:pkey:0:
553 PyDict_Next:PyObject**:pvalue:0:
Dstable_abi.dat113 function,PyDict_Next,3.2,
/third_party/python/PC/
Dpython3dll.c179 EXPORT_FUNC(PyDict_Next)
/third_party/python/Misc/
Dstable_abi.txt494 function PyDict_Next
/third_party/protobuf/python/google/protobuf/pyext/
Dmessage.cc1104 while (PyDict_Next(kwargs, &pos, &name, &value)) { in InitAttributes()
/third_party/python/Modules/_ctypes/
D_ctypes.c4453 while(PyDict_Next(kwds, &pos, &key, &value)) { in Struct_init()

12