/third_party/python/Doc/c-api/ |
D | dict.rst | 163 .. 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/ |
D | dictobject.h | 27 PyAPI_FUNC(int) PyDict_Next(
|
/third_party/python/Objects/ |
D | moduleobject.c | 589 while (PyDict_Next(d, &pos, &key, &value)) { in _PyModule_ClearDict() 609 while (PyDict_Next(d, &pos, &key, &value)) { in _PyModule_ClearDict()
|
D | call.c | 936 while (PyDict_Next(kwargs, &pos, &key, &value)) { in _PyStack_UnpackDict()
|
D | dictobject.c | 985 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()
|
D | typeobject.c | 343 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()
|
D | exceptions.c | 158 while (PyDict_Next(state, &i, &d_key, &d_value)) { in BaseException_setstate()
|
/third_party/python/Modules/ |
D | _functoolsmodule.c | 385 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.c | 501 while (PyDict_Next(grandchildren, &i, NULL, &grandchildren)) { in set_collection_flag_recursive()
|
D | _pickle.c | 1939 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.c | 1613 while (PyDict_Next(mc->kwds, &pos, &key, &value)) { in methodcaller_repr()
|
D | selectmodule.c | 425 while (PyDict_Next(self->dict, &pos, &key, &value)) { in update_ufd_array()
|
D | _xxsubinterpretersmodule.c | 137 if (PyDict_Next(shareable, &pos, &key, &value) == 0) { in _get_shared_ns()
|
D | _elementtree.c | 879 while (PyDict_Next(object, &pos, &key, &value)) { in deepcopy()
|
/third_party/python/Python/ |
D | pylifecycle.c | 1378 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()
|
D | getargs.c | 1821 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()
|
D | symtable.c | 594 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()
|
D | marshal.c | 488 while (PyDict_Next(v, &pos, &key, &value)) { in w_complex_object()
|
D | compile.c | 6769 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/ |
D | refcounts.dat | 549 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:
|
D | stable_abi.dat | 113 function,PyDict_Next,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 179 EXPORT_FUNC(PyDict_Next)
|
/third_party/python/Misc/ |
D | stable_abi.txt | 494 function PyDict_Next
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 1104 while (PyDict_Next(kwargs, &pos, &name, &value)) { in InitAttributes()
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes.c | 4453 while(PyDict_Next(kwds, &pos, &key, &value)) { in Struct_init()
|