Home
last modified time | relevance | path

Searched refs:PyObject_GenericSetAttr (Results 1 – 22 of 22) sorted by relevance

/third_party/python/PC/
D_msi.c617 PyObject_GenericSetAttr,/*tp_setattro*/
837 PyObject_GenericSetAttr,/*tp_setattro*/
1015 PyObject_GenericSetAttr,/*tp_setattro*/
1148 PyObject_GenericSetAttr,/*tp_setattro*/
Dpython3dll.c448 EXPORT_FUNC(PyObject_GenericSetAttr)
/third_party/python/Objects/
Dclassobject.c349 PyObject_GenericSetAttr, /* tp_setattro */
589 PyObject_GenericSetAttr, /* tp_setattro */
Dnamespaceobject.c220 PyObject_GenericSetAttr, /* tp_setattro */
Dmoduleobject.c931 PyObject_GenericSetAttr, /* tp_setattro */
Dframeobject.c758 PyObject_GenericSetAttr, /* tp_setattro */
Dobject.c1401 PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value) in PyObject_GenericSetAttr() function
Dexceptions.c399 PyObject_GenericSetAttr, /*tp_setattro*/
Dtypeobject.c3022 type->tp_setattro = PyObject_GenericSetAttr; in type_new_set_slots()
5531 PyObject_GenericSetAttr, /* tp_setattro */
/third_party/python/Include/
Dobject.h279 PyAPI_FUNC(int) PyObject_GenericSetAttr(PyObject *, PyObject *, PyObject *);
/third_party/python/Doc/data/
Drefcounts.dat1673 PyObject_GenericSetAttr:int:::
1674 PyObject_GenericSetAttr:PyObject*:o:0:
1675 PyObject_GenericSetAttr:PyObject*:name:0:
1676 PyObject_GenericSetAttr:PyObject*:value:+1:
Dstable_abi.dat492 function,PyObject_GenericSetAttr,3.2,
/third_party/python/Doc/c-api/
Dobject.rst99 .. c:function:: int PyObject_GenericSetAttr(PyObject *o, PyObject *name, PyObject *value)
Dtypeobj.rst976 :c:func:`PyObject_GenericSetAttr`, which implements the normal
989 :c:type:`PyBaseObject_Type` uses :c:func:`PyObject_GenericSetAttr`.
/third_party/python/Modules/
D_testcapimodule.c6025 PyObject_GenericSetAttr, /* tp_setattro */
6128 PyObject_GenericSetAttr, /* tp_setattro */
6242 PyObject_GenericSetAttr, /* tp_setattro */
6985 return PyObject_GenericSetAttr((PyObject*) self, attr, value); in heapctypesetattr_setattro()
D_functoolsmodule.c478 {Py_tp_setattro, PyObject_GenericSetAttr},
D_struct.c2080 {Py_tp_setattro, PyObject_GenericSetAttr},
D_pickle.c4927 PyObject_GenericSetAttr, /* tp_setattro */
7439 PyObject_GenericSetAttr, /* tp_setattro */
/third_party/python/Misc/
Dstable_abi.txt1069 function PyObject_GenericSetAttr
/third_party/python/Modules/_ctypes/
D_ctypes.c908 if (-1 == PyObject_GenericSetAttr(self, key, value)) in UnionType_setattro()
/third_party/python/Modules/_decimal/
D_decimal.c1153 return PyObject_GenericSetAttr(self, name, value); in context_setattr()
/third_party/python/Python/
DPython-ast.c898 {Py_tp_setattro, PyObject_GenericSetAttr},