Home
last modified time | relevance | path

Searched refs:ternaryfunc (Results 1 – 25 of 42) sorted by relevance

12

/external/python/cpython3/Include/cpython/
Dobject.h121 ternaryfunc nb_power;
140 ternaryfunc nb_inplace_power;
217 ternaryfunc tp_call;
/external/python/cpython2/Doc/includes/
Dtypestruct.h24 ternaryfunc tp_call;
/external/python/cpython3/Doc/includes/
Dtypestruct.h25 ternaryfunc tp_call;
/external/python/cpython2/Include/
Dobject.h135 typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *); typedef
234 ternaryfunc nb_power;
257 ternaryfunc nb_inplace_power;
347 ternaryfunc tp_call;
/external/python/cpython2/Objects/
Ddescrobject.c438 (ternaryfunc)methoddescr_call, /* tp_call */
476 (ternaryfunc)classmethoddescr_call, /* tp_call */
587 (ternaryfunc)wrapperdescr_call, /* tp_call */
1072 (ternaryfunc)wrapper_call, /* tp_call */
Dabstract.c898 (*(ternaryfunc*)(& ((char*)nb_methods)[slot]))
1043 ternaryfunc slotv = NULL;
1044 ternaryfunc slotw = NULL;
1045 ternaryfunc slotz = NULL;
2538 ternaryfunc call;
Dtypeobject.c2894 (ternaryfunc)type_call, /* tp_call */
4495 ternaryfunc func = (ternaryfunc)wrapped;
4509 ternaryfunc func = (ternaryfunc)wrapped;
4820 ternaryfunc func = (ternaryfunc)wrapped;
Dweakrefobject.c364 (ternaryfunc)weakref_call, /*tp_call*/
/external/python/cpython2/Modules/
Doperator.c564 (ternaryfunc)itemgetter_call, /* tp_call */
748 (ternaryfunc)attrgetter_call, /* tp_call */
880 (ternaryfunc)methodcaller_call, /* tp_call */
D_csv.c491 (ternaryfunc)0, /* tp_call */
905 (ternaryfunc)0, /*tp_call*/
1333 (ternaryfunc)0, /*tp_call*/
D_functoolsmodule.c353 (ternaryfunc)partial_call, /* tp_call */
/external/python/cpython3/Modules/
D_operator.c1112 (ternaryfunc)itemgetter_call, /* tp_call */
1457 (ternaryfunc)attrgetter_call, /* tp_call */
1723 (ternaryfunc)methodcaller_call, /* tp_call */
D_csv.c487 (ternaryfunc)0, /* tp_call */
920 (ternaryfunc)0, /*tp_call*/
1350 (ternaryfunc)0, /*tp_call*/
D_functoolsmodule.c437 (ternaryfunc)partial_call, /* tp_call */
530 (ternaryfunc)keyobject_call, /* tp_call */
1379 (ternaryfunc)lru_cache_call, /* tp_call */
/external/python/cpython2/Mac/Modules/
Dicgluemodule.c411 (ternaryfunc)0, /*tp_call*/
DMacOS.c275 (ternaryfunc)0, /*tp_call*/
DNav.c431 (ternaryfunc)0, /*tp_call*/
/external/python/cpython3/Include/
Dobject.h165 typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *); typedef
/external/python/cpython3/Objects/
Dcall.c157 ternaryfunc call = Py_TYPE(callable)->tp_call; in _PyObject_MakeTpCall()
254 ternaryfunc call; in _PyObject_Call()
Ddescrobject.c747 (ternaryfunc)classmethoddescr_call, /* tp_call */
858 (ternaryfunc)wrapperdescr_call, /* tp_call */
1410 (ternaryfunc)wrapper_call, /* tp_call */
Dabstract.c834 (*(ternaryfunc*)(& ((char*)nb_methods)[slot]))
938 ternaryfunc slotv = NULL; in ternary_op()
939 ternaryfunc slotw = NULL; in ternary_op()
940 ternaryfunc slotz = NULL; in ternary_op()
Dtypeobject.c3759 (ternaryfunc)type_call, /* tp_call */
5768 ternaryfunc func = (ternaryfunc)wrapped; in wrap_ternaryfunc()
5782 ternaryfunc func = (ternaryfunc)wrapped; in wrap_ternaryfunc_r()
6048 ternaryfunc func = (ternaryfunc)wrapped; in wrap_call()
Dweakrefobject.c387 (ternaryfunc)weakref_call, /*tp_call*/
Dcomplexobject.c1055 (ternaryfunc)complex_pow, /* nb_power */
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst72 …| :c:member:`~PyTypeObject.tp_call` | :c:type:`ternaryfunc` | __call__ …
227 …| :c:member:`~PyNumberMethods.nb_power` | :c:type:`ternaryfunc` | __…
230 …| :c:member:`~PyNumberMethods.nb_inplace_power` | :c:type:`ternaryfunc` | __…
430 | :c:type:`ternaryfunc` | .. line-block:: | :c:type:`PyObject` * |
881 .. c:member:: ternaryfunc PyTypeObject.tp_call
1984 ternaryfunc nb_power;
2003 ternaryfunc nb_inplace_power;
2041 .. c:member:: ternaryfunc PyNumberMethods.nb_power
2059 .. c:member:: ternaryfunc PyNumberMethods.nb_inplace_power
2434 .. c:type:: PyObject *(*ternaryfunc)(PyObject *, PyObject *, PyObject *)

12