Searched refs:PyDict_Update (Results 1 - 13 of 13) sorted by relevance
/third_party/python/Objects/ |
H A D | namespaceobject.c | 54 return PyDict_Update(ns->ns_dict, kwds); in namespace_init() 256 if (PyDict_Update(((_PyNamespaceObject *)ns)->ns_dict, kwds) != 0) { in _PyNamespace_New()
|
H A D | dictobject.c | 2988 PyDict_Update(PyObject *a, PyObject *b) in PyDict_Update() function
|
H A D | typeobject.c | 4205 int status = PyDict_Update(dict, classdict); in merge_class_dict()
|
/third_party/python/Include/ |
H A D | dictobject.h | 36 /* PyDict_Update(mp, other) is equivalent to PyDict_Merge(mp, other, 1). */ 37 PyAPI_FUNC(int) PyDict_Update(PyObject *mp, PyObject *other);
|
/third_party/python/Modules/_ctypes/ |
H A D | _ctypes.c | 532 if (-1 == PyDict_Update((PyObject *)dict, result->tp_dict)) { in StructUnionType_new() 1137 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) { in PyCPointerType_new() 1581 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) in PyCArrayType_new() 2003 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) { in CreateSwappedType() 2134 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) { in PyCSimpleType_new() 2574 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) { in PyCFuncPtrType_new() 2887 res = PyDict_Update(mydict, dict); in PyCData_setstate()
|
/third_party/python/Modules/_io/ |
H A D | bytesio.c | 874 if (PyDict_Update(self->dict, dict) < 0) in bytesio_setstate()
|
H A D | stringio.c | 932 if (PyDict_Update(self->dict, dict) < 0) in stringio_setstate()
|
/third_party/python/PC/ |
H A D | python3dll.c | 187 EXPORT_FUNC(PyDict_Update)
|
/third_party/python/Modules/ |
H A D | _elementtree.c | 364 if (attrib != NULL && PyDict_Update(attrib, kwds) < 0) { in get_attrib_from_keywords() 395 if (PyDict_Update(attrib, kwds) < 0) { in element_init() 596 if (kwds != NULL && PyDict_Update(attrib, kwds) < 0) { in subelement()
|
H A D | _collectionsmodule.c | 2157 if (PyDict_Update(new, right)) { in defdict_or()
|
/third_party/python/Python/ |
H A D | import.c | 522 if (PyDict_Update(mdict, def->m_base.m_copy)) { in import_find_extension()
|
H A D | pylifecycle.c | 1471 if (PyDict_Update(interp->builtins, interp->builtins_copy)) { in finalize_restore_builtins()
|
H A D | ceval.c | 3420 if (PyDict_Update(dict, update) < 0) {
|
Completed in 58 milliseconds