Home
last modified time | relevance | path

Searched refs:PyType_Spec (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython3/Doc/c-api/
Dtype.rst119 .. c:function:: PyObject* PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)
134 .. c:function:: PyObject* PyType_FromSpec(PyType_Spec *spec)
138 .. c:type:: PyType_Spec
142 .. c:member:: const char* PyType_Spec.name
146 .. c:member:: int PyType_Spec.basicsize
147 .. c:member:: int PyType_Spec.itemsize
153 .. c:member:: int PyType_Spec.flags
160 .. c:member:: PyType_Slot *PyType_Spec.slots
184 The following fields cannot be set using :c:type:`PyType_Spec` and :c:type:`PyType_Slot`:
Dtypeobj.rst1966 This is done by filling a :c:type:`PyType_Spec` structure and calling
/external/python/cpython3/Modules/
Dxxlimited.c122 static PyType_Spec Xxo_Type_spec = {
187 static PyType_Spec Str_Type_spec = {
210 static PyType_Spec Null_Type_spec = {
D_testmultiphase.c97 static PyType_Spec Example_Type_spec = {
169 static PyType_Spec Str_Type_spec = {
D_curses_panel.c489 static PyType_Spec PyCursesPanel_Type_spec = {
D_tkinter.c951 static PyType_Spec PyTclObject_Type_spec = {
3239 static PyType_Spec Tktt_Type_spec = {
3294 static PyType_Spec Tkapp_Type_spec = {
D_testcapimodule.c6007 static PyType_Spec HeapGcCType_spec = {
6035 static PyType_Spec HeapCType_spec = {
6076 static PyType_Spec HeapCTypeSubclass_spec = {
6153 static PyType_Spec HeapCTypeSubclassWithFinalizer_spec = {
D_ssl.c583 static PyType_Spec sslerror_type_spec = {
/external/python/cpython3/Include/
Dobject.h191 } PyType_Spec; typedef
193 PyAPI_FUNC(PyObject*) PyType_FromSpec(PyType_Spec*);
195 PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
/external/protobuf/python/google/protobuf/pyext/
Dmap_container.cc570 PyType_Spec ScalarMapContainer_Type_spec = {
852 PyType_Spec MessageMapContainer_Type_spec = {
/external/python/cpython3/Objects/
Dstructseq.c452 PyType_Spec spec; in PyStructSequence_NewType()
Dtypeobject.c2846 PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases) in PyType_FromSpecWithBases()
3019 PyType_FromSpec(PyType_Spec *spec) in PyType_FromSpec()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tensor.cc943 static PyType_Spec EagerTensor_Type_spec = { in TFE_Py_InitEagerTensor()
/external/python/cpython3/Doc/data/
Drefcounts.dat2306 PyType_FromSpec:PyType_Spec*:spec::
2309 PyType_FromSpecWithBases:PyType_Spec*:spec::
/external/python/cpython3/Misc/
DHISTORY6304 - Issue #16086: PyTypeObject.tp_flags and PyType_Spec.flags are now unsigned
10645 - Issue #11135: Remove redundant doc field from PyType_Spec.