Home
last modified time | relevance | path

Searched refs:PyProperty_Type (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Include/
Ddescrobject.h89 PyAPI_DATA(PyTypeObject) PyProperty_Type;
/external/python/cpython2/Doc/c-api/
Ddescriptor.rst12 .. c:var:: PyTypeObject PyProperty_Type
/external/python/cpython3/Doc/c-api/
Ddescriptor.rst13 .. c:var:: PyTypeObject PyProperty_Type
/external/python/cpython3/Include/
Ddescrobject.h103 PyAPI_DATA(PyTypeObject) PyProperty_Type;
/external/python/pybind11/include/pybind11/detail/
Dclass.h48 return PyProperty_Type.tp_descr_get(self, cls, cls); in pybind11_static_get()
54 return PyProperty_Type.tp_descr_set(self, cls, value); in pybind11_static_set()
79 type->tp_base = type_incref(&PyProperty_Type); in make_static_property_type()
/external/python/cpython2/Objects/
Ddescrobject.c1334 if (Py_TYPE(self) == &PyProperty_Type) { in property_init()
1397 PyTypeObject PyProperty_Type = { variable
Dobject.c2155 if (PyType_Ready(&PyProperty_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython3/PC/
Dpython3.def501 PyProperty_Type=python39.PyProperty_Type DATA
/external/python/cpython3/Objects/
Ddescrobject.c1708 if (Py_IS_TYPE(self, &PyProperty_Type)) { in property_init_impl()
1827 PyTypeObject PyProperty_Type = { variable
Dobject.c1782 INIT_TYPE(&PyProperty_Type, "property"); in _PyTypes_Init()
/external/python/cpython2/PC/os2emx/
Dpython27.def264 "PyProperty_Type"
/external/python/cpython2/Doc/howto/
Ddescriptor.rst213 "Emulate PyProperty_Type() in Objects/descrobject.c"
/external/python/pybind11/include/pybind11/
Dpybind11.h1169 : &PyProperty_Type)); in PYBIND11_NAMESPACE_BEGIN()
1627 auto property = handle((PyObject *) &PyProperty_Type);
/external/python/cpython3/Python/
Dbltinmodule.c2822 SETBUILTIN("property", &PyProperty_Type); in _PyBuiltin_Init()
/external/python/cpython3/Tools/c-analyzer/
DTODO699 Objects/descrobject.c:PyProperty_Type PyTypeObject PyProperty_Type
Dknown.tsv1527 Objects/descrobject.c - PyProperty_Type variable PyTypeObject PyProperty_Type
/external/python/cpython2/Python/
Dbltinmodule.c2736 SETBUILTIN("property", &PyProperty_Type); in _PyBuiltin_Init()
/external/python/cpython3/Doc/howto/
Ddescriptor.rst928 "Emulate PyProperty_Type() in Objects/descrobject.c"