/third_party/python/Doc/includes/ |
H A D | typestruct.h | 43 inquiry tp_clear; member
|
H A D | custom4.c | 171 .tp_clear = (inquiry) Custom_clear,
|
/third_party/python/Objects/ |
H A D | picklebufobject.c | 215 .tp_clear = (inquiry) picklebuf_clear,
|
H A D | genericaliasobject.c | 917 .tp_clear = (inquiry)ga_iter_clear,
|
H A D | weakrefobject.c | 381 .tp_clear = (inquiry)gc_clear, 743 (inquiry)gc_clear, /* tp_clear */ 777 (inquiry)gc_clear, /* tp_clear */
|
H A D | typeobject.c | 142 // Note: tp_clear is optional. in _PyType_CheckConsistency() 1274 /* Find the nearest base with a different tp_clear in subtype_clear() 1278 while ((baseclear = base->tp_clear) == subtype_clear) { in subtype_clear() 2781 type->tp_clear = subtype_clear; in type_new_alloc() 4351 tp_clear handler). in type_clear() 4367 dicts have their own tp_clear. in type_clear() 4420 (inquiry)type_clear, /* tp_clear */ 5632 0, /* tp_clear */ 5781 /* Copying tp_traverse and tp_clear is connected to the GC flags */ in inherit_special() 5784 (!type->tp_traverse && !type->tp_clear)) { in inherit_special() [all...] |
/third_party/python/Python/ |
H A D | context.c | 725 .tp_clear = (inquiry)context_tp_clear, 1075 .tp_clear = (inquiry)contextvar_tp_clear, 1216 .tp_clear = (inquiry)token_tp_clear,
|
H A D | hamt.c | 2615 .tp_clear = (inquiry)hamt_baseiter_tp_clear, \ 2914 .tp_clear = (inquiry)hamt_tp_clear,
|
/third_party/python/Modules/_sqlite/ |
H A D | row.c | 59 tp->tp_clear(self); in pysqlite_row_dealloc()
|
H A D | blob.c | 53 tp->tp_clear((PyObject *)self); in blob_dealloc()
|
H A D | connection.c | 194 tp->tp_clear((PyObject *)self); in pysqlite_connection_init_impl() 363 tp->tp_clear((PyObject *)self); in connection_dealloc()
|
H A D | cursor.c | 184 tp->tp_clear((PyObject *)self); in cursor_dealloc()
|
/third_party/python/Include/cpython/ |
H A D | object.h | 190 inquiry tp_clear; member
|
/third_party/python/Modules/ |
H A D | _csv.c | 362 tp->tp_clear((PyObject *)self); in Dialect_dealloc() 940 tp->tp_clear((PyObject *)self); in Reader_dealloc() 1399 tp->tp_clear((PyObject *)self); in Writer_dealloc()
|
H A D | _asynciomodule.c | 1520 .tp_clear = (inquiry)FutureObj_clear, 1875 .tp_clear = (inquiry)TaskStepMethWrapper_clear, 2534 .tp_clear = (inquiry)TaskObj_clear,
|
H A D | gcmodule.c | 782 * could expose objects that have tp_clear already called on in handle_weakrefs() 1011 if ((clear = Py_TYPE(op)->tp_clear) != NULL) { in delete_garbage() 1015 _PyErr_WriteUnraisableMsg("in tp_clear of", in delete_garbage() 1282 /* Call tp_clear on objects in the final_unreachable set. This will cause in gc_collect_main()
|
H A D | _collectionsmodule.c | 1647 (inquiry)deque_clear, /* tp_clear */ 1814 0, /* tp_clear */ 1936 0, /* tp_clear */ 2179 return PyDict_Type.tp_clear((PyObject *)dd); in defdict_tp_clear() 2252 (inquiry)defdict_tp_clear, /* tp_clear */ 2539 (inquiry)tuplegetter_clear, /* tp_clear */
|
H A D | _testcapimodule.c | 372 0, /* tp_clear */ 3967 tp->tp_clear = NULL; 6855 0, /* tp_clear */ 6958 0, /* tp_clear */ 7072 0, /* tp_clear */ 7117 0, /* tp_clear */ 7198 0, /* tp_clear */
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | message.cc | 356 return PyType_Type.tp_clear(pself); in GcClear() 521 message_meta::GcClear, // tp_clear 2795 0, // tp_clear
|
/third_party/python/Modules/_ctypes/ |
H A D | _ctypes.c | 202 0, /* tp_clear */ 891 return PyType_Type.tp_clear((PyObject *)self); in CDataType_clear() 954 (inquiry)CDataType_clear, /* tp_clear */ 996 (inquiry)CDataType_clear, /* tp_clear */ 1254 (inquiry)CDataType_clear, /* tp_clear */ 1629 0, /* tp_clear */ 2323 0, /* tp_clear */ 2612 (inquiry)CDataType_clear, /* tp_clear */ 2934 (inquiry)PyCData_clear, /* tp_clear */ 4332 (inquiry)PyCFuncPtr_clear, /* tp_clear */ [all...] |