Home
last modified time | relevance | path

Searched refs:PyType_Slot (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Objects/
Dstructseq.c451 PyType_Slot slots[8]; in PyStructSequence_NewType()
465 slots[0] = (PyType_Slot){Py_tp_dealloc, (destructor)structseq_dealloc}; in PyStructSequence_NewType()
466 slots[1] = (PyType_Slot){Py_tp_repr, (reprfunc)structseq_repr}; in PyStructSequence_NewType()
467 slots[2] = (PyType_Slot){Py_tp_doc, (void *)desc->doc}; in PyStructSequence_NewType()
468 slots[3] = (PyType_Slot){Py_tp_methods, structseq_methods}; in PyStructSequence_NewType()
469 slots[4] = (PyType_Slot){Py_tp_new, structseq_new}; in PyStructSequence_NewType()
470 slots[5] = (PyType_Slot){Py_tp_members, members}; in PyStructSequence_NewType()
471 slots[6] = (PyType_Slot){Py_tp_traverse, (traverseproc)structseq_traverse}; in PyStructSequence_NewType()
472 slots[7] = (PyType_Slot){0, 0}; in PyStructSequence_NewType()
Dtypeobject.c2853 PyType_Slot *slot; in PyType_FromSpecWithBases()
/external/python/cpython3/Doc/c-api/
Dtype.rst106 See :c:member:`PyType_Slot.slot` for possible values of the *slot* argument.
160 .. c:member:: PyType_Slot *PyType_Spec.slots
162 Array of :c:type:`PyType_Slot` structures.
165 .. c:type:: PyType_Slot
170 .. c:member:: int PyType_Slot.slot
184 The following fields cannot be set using :c:type:`PyType_Spec` and :c:type:`PyType_Slot`:
201 .. c:member:: void *PyType_Slot.pfunc
/external/python/cpython3/Modules/
Dxxlimited.c112 static PyType_Slot Xxo_Type_slots[] = {
182 static PyType_Slot Str_Type_slots[] = {
203 static PyType_Slot Null_Type_slots[] = {
D_testmultiphase.c87 static PyType_Slot Example_Type_slots[] = {
164 static PyType_Slot Str_Type_slots[] = {
D_curses_panel.c483 static PyType_Slot PyCursesPanel_Type_slots[] = {
D_tkinter.c941 static PyType_Slot PyTclObject_Type_slots[] = {
3232 static PyType_Slot Tktt_Type_slots[] = {
3287 static PyType_Slot Tkapp_Type_slots[] = {
D_testcapimodule.c5999 static PyType_Slot HeapGcCType_slots[] = {
6027 static PyType_Slot HeapCType_slots[] = {
6069 static PyType_Slot HeapCTypeSubclass_slots[] = {
6145 static PyType_Slot HeapCTypeSubclassWithFinalizer_slots[] = {
D_ssl.c576 static PyType_Slot sslerror_type_slots[] = {
/external/python/cpython3/Include/
Dobject.h183 } PyType_Slot; typedef
190 PyType_Slot *slots; /* terminated by slot==0. */
/external/protobuf/python/google/protobuf/pyext/
Dmap_container.cc559 static PyType_Slot ScalarMapContainer_Type_slots[] = {
841 static PyType_Slot MessageMapContainer_Type_slots[] = {
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tensor.cc758 static PyType_Slot EagerTensor_Type_slots[] = {