Searched refs:PyType_Slot (Results 1 - 25 of 54) sorted by relevance
123
/third_party/python/Objects/ |
H A D | structseq.c | 567 PyType_Slot slots[8]; in _PyStructSequence_NewType() 581 slots[0] = (PyType_Slot){Py_tp_dealloc, (destructor)structseq_dealloc}; in _PyStructSequence_NewType() 582 slots[1] = (PyType_Slot){Py_tp_repr, (reprfunc)structseq_repr}; in _PyStructSequence_NewType() 583 slots[2] = (PyType_Slot){Py_tp_doc, (void *)desc->doc}; in _PyStructSequence_NewType() 584 slots[3] = (PyType_Slot){Py_tp_methods, structseq_methods}; in _PyStructSequence_NewType() 585 slots[4] = (PyType_Slot){Py_tp_new, structseq_new}; in _PyStructSequence_NewType() 586 slots[5] = (PyType_Slot){Py_tp_members, members}; in _PyStructSequence_NewType() 587 slots[6] = (PyType_Slot){Py_tp_traverse, (traverseproc)structseq_traverse}; in _PyStructSequence_NewType() 588 slots[7] = (PyType_Slot){0, 0}; in _PyStructSequence_NewType()
|
/third_party/python/Modules/ |
H A D | xxlimited_35.c | 115 static PyType_Slot Xxo_Type_slots[] = { 186 static PyType_Slot Str_Type_slots[] = { 207 static PyType_Slot Null_Type_slots[] = {
|
H A D | xxlimited.c | 270 static PyType_Slot Xxo_Type_slots[] = { 295 static PyType_Slot Str_Type_slots[] = {
|
H A D | _testmultiphase.c | 109 static PyType_Slot Example_Type_slots[] = { 284 static PyType_Slot StateAccessType_Type_slots[] = { 357 static PyType_Slot Str_Type_slots[] = {
|
H A D | _functoolsmodule.c | 474 static PyType_Slot partial_type_slots[] = { 549 static PyType_Slot keyobject_type_slots[] = { 778 static PyType_Slot lru_list_elem_type_slots[] = { 1405 static PyType_Slot lru_cache_type_slots[] = {
|
H A D | _threadmodule.c | 298 static PyType_Slot lock_type_slots[] = { 580 static PyType_Slot rlock_type_slots[] = { 684 static PyType_Slot local_dummy_type_slots[] = { 969 static PyType_Slot local_type_slots[] = {
|
H A D | _csv.c | 571 static PyType_Slot Dialect_Type_slots[] = { 987 static PyType_Slot Reader_Type_slots[] = { 1414 static PyType_Slot Writer_Type_slots[] = { 1601 static PyType_Slot error_slots[] = {
|
H A D | _bz2module.c | 408 static PyType_Slot bz2_compressor_type_slots[] = { 751 static PyType_Slot bz2_decompressor_type_slots[] = {
|
H A D | selectmodule.c | 1144 static PyType_Slot devpoll_Type_slots[] = { 1915 static PyType_Slot kqueue_event_Type_slots[] = { 2282 static PyType_Slot poll_Type_slots[] = { 2326 static PyType_Slot pyEpoll_Type_slots[] = { 2356 static PyType_Slot kqueue_queue_Type_slots[] = {
|
H A D | _queuemodule.c | 378 static PyType_Slot simplequeue_slots[] = {
|
H A D | _hashopenssl.c | 687 static PyType_Slot EVPtype_slots[] = { 838 static PyType_Slot EVPXOFtype_slots[] = { 1813 static PyType_Slot HMACtype_slots[] = {
|
H A D | _operator.c | 1171 static PyType_Slot itemgetter_type_slots[] = { 1537 static PyType_Slot attrgetter_type_slots[] = { 1793 static PyType_Slot methodcaller_type_slots[] = {
|
H A D | _testcapimodule.c | 1200 PyType_Slot *slots = NULL; in test_type_from_ephemeral_spec() 1234 slots = PyMem_New(PyType_Slot, 3); in test_type_from_ephemeral_spec() 1267 memset(slots, 0xdd, 3 * sizeof(PyType_Slot)); in test_type_from_ephemeral_spec() 7398 static PyType_Slot HeapDocCType_slots[] = { 7415 static PyType_Slot HeapTypeNameType_slots[] = { 7430 static PyType_Slot NullTpDocType_slots[] = { 7481 static PyType_Slot HeapGcCType_slots[] = { 7510 static PyType_Slot HeapCType_slots[] = { 7552 static PyType_Slot HeapCTypeSubclass_slots[] = { 7593 static PyType_Slot HeapCTypeWithBuffer_slot [all...] |
H A D | _curses_panel.c | 514 static PyType_Slot PyCursesPanel_Type_slots[] = {
|
/third_party/python/Modules/_sqlite/ |
H A D | prepare_protocol.c | 51 static PyType_Slot type_slots[] = {
|
H A D | statement.c | 182 static PyType_Slot stmt_slots[] = {
|
H A D | row.c | 242 static PyType_Slot row_slots[] = {
|
/third_party/python/Python/ |
H A D | Python-tokenize.c | 113 static PyType_Slot tokenizeriter_slots[] = {
|
/third_party/python/Lib/test/ |
H A D | _testcppext.cpp | 155 PyType_Slot VirtualPyObject_Slots[] = {
|
/third_party/python/Include/ |
H A D | object.h | 232 } PyType_Slot; typedef 239 PyType_Slot *slots; /* terminated by slot==0. */
|
/third_party/python/Modules/_ssl/ |
H A D | cert.c | 230 static PyType_Slot PySSLCertificate_slots[] = {
|
/third_party/python/Modules/cjkcodecs/ |
H A D | multibytecodec.c | 739 static PyType_Slot multibytecodec_slots[] = { 1099 static PyType_Slot encoder_slots[] = { 1373 static PyType_Slot decoder_slots[] = { 1694 static PyType_Slot reader_slots[] = { 1932 static PyType_Slot writer_slots[] = {
|
/third_party/python/Modules/_blake2/ |
H A D | blake2s_impl.c | 402 static PyType_Slot blake2s_type_slots[] = {
|
H A D | blake2b_impl.c | 402 static PyType_Slot blake2b_type_slots[] = {
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | map_container.cc | 548 static PyType_Slot ScalarMapContainer_Type_slots[] = { 816 static PyType_Slot MessageMapContainer_Type_slots[] = {
|
Completed in 41 milliseconds
123