Searched refs:tp_call (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Doc/includes/ |
D | typestruct.h | 24 ternaryfunc tp_call; member
|
/external/python/cpython3/Doc/includes/ |
D | typestruct.h | 25 ternaryfunc tp_call; member
|
/external/python/cpython3/Objects/ |
D | typeslots.inc | 51 offsetof(PyHeapTypeObject, ht_type.tp_call),
|
D | abstract.c | 2236 call = func->ob_type->tp_call; in PyObject_Call() 2304 call = func->ob_type->tp_call; in _PyObject_FastCallDict()
|
D | object.c | 1270 return x->ob_type->tp_call != NULL; in PyCallable_Check()
|
D | typeobject.c | 4835 COPYSLOT(tp_call); in inherit_slots() 6559 FLSLOT("__call__", tp_call, slot_tp_call, (wrapperfunc)wrap_call,
|
/external/python/cpython2/Include/ |
D | object.h | 347 ternaryfunc tp_call; member
|
/external/python/cpython3/Include/ |
D | object.h | 370 ternaryfunc tp_call; member
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 1203 .tp_call = (ternaryfunc)TaskSendMethWrapper_call, 1273 .tp_call = (ternaryfunc)TaskWakeupMethWrapper_call,
|
/external/python/cpython3/Doc/extending/ |
D | newtypes.rst | 93 0, /* tp_call */ 1333 ternaryfunc tp_call; 1337 contains ``obj1('hello')``, the :c:member:`~PyTypeObject.tp_call` handler is invoked.
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 97 0, /*tp_call*/ 1394 ternaryfunc tp_call; 1398 contains ``obj1('hello')``, the :c:member:`~PyTypeObject.tp_call` handler is invoked.
|
/external/python/cpython2/Objects/ |
D | object.c | 1674 return x->ob_type->tp_call != NULL; in PyCallable_Check()
|
D | abstract.c | 2543 if ((call = func->ob_type->tp_call) != NULL) {
|
D | typeobject.c | 3991 COPYSLOT(tp_call); 5987 FLSLOT("__call__", tp_call, slot_tp_call, (wrapperfunc)wrap_call,
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 316 .. c:member:: ternaryfunc PyTypeObject.tp_call
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 353 .. c:member:: ternaryfunc PyTypeObject.tp_call
|
/external/python/cpython2/Misc/ |
D | HISTORY | 15227 pointers in the type object structure: tp_call defines how an object
|
/external/python/cpython3/Misc/ |
D | HISTORY | 32606 pointers in the type object structure: tp_call defines how an object
|