Home
last modified time | relevance | path

Searched refs:tp_call (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Doc/includes/
Dtypestruct.h24 ternaryfunc tp_call; member
/external/python/cpython3/Doc/includes/
Dtypestruct.h25 ternaryfunc tp_call; member
/external/python/cpython3/Objects/
Dtypeslots.inc51 offsetof(PyHeapTypeObject, ht_type.tp_call),
Dabstract.c2236 call = func->ob_type->tp_call; in PyObject_Call()
2304 call = func->ob_type->tp_call; in _PyObject_FastCallDict()
Dobject.c1270 return x->ob_type->tp_call != NULL; in PyCallable_Check()
Dtypeobject.c4835 COPYSLOT(tp_call); in inherit_slots()
6559 FLSLOT("__call__", tp_call, slot_tp_call, (wrapperfunc)wrap_call,
/external/python/cpython2/Include/
Dobject.h347 ternaryfunc tp_call; member
/external/python/cpython3/Include/
Dobject.h370 ternaryfunc tp_call; member
/external/python/cpython3/Modules/
D_asynciomodule.c1203 .tp_call = (ternaryfunc)TaskSendMethWrapper_call,
1273 .tp_call = (ternaryfunc)TaskWakeupMethWrapper_call,
/external/python/cpython3/Doc/extending/
Dnewtypes.rst93 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/
Dnewtypes.rst97 0, /*tp_call*/
1394 ternaryfunc tp_call;
1398 contains ``obj1('hello')``, the :c:member:`~PyTypeObject.tp_call` handler is invoked.
/external/python/cpython2/Objects/
Dobject.c1674 return x->ob_type->tp_call != NULL; in PyCallable_Check()
Dabstract.c2543 if ((call = func->ob_type->tp_call) != NULL) {
Dtypeobject.c3991 COPYSLOT(tp_call);
5987 FLSLOT("__call__", tp_call, slot_tp_call, (wrapperfunc)wrap_call,
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst316 .. c:member:: ternaryfunc PyTypeObject.tp_call
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst353 .. c:member:: ternaryfunc PyTypeObject.tp_call
/external/python/cpython2/Misc/
DHISTORY15227 pointers in the type object structure: tp_call defines how an object
/external/python/cpython3/Misc/
DHISTORY32606 pointers in the type object structure: tp_call defines how an object