Searched refs:thisfunc (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Objects/ |
D | classobject.c | 1452 half_binop(PyObject *v, PyObject *w, char *opname, binaryfunc thisfunc, in half_binop() argument 1510 result = (thisfunc)(w, v1); in half_binop() 1512 result = (thisfunc)(v1, w); in half_binop() 1522 binaryfunc thisfunc) in do_binop() argument 1524 PyObject *result = half_binop(v, w, opname, thisfunc, 0); in do_binop() 1527 result = half_binop(w, v, ropname, thisfunc, 1); in do_binop() 1534 char *ropname, binaryfunc thisfunc) in do_binop_inplace() argument 1536 PyObject *result = half_binop(v, w, iopname, thisfunc, 0); in do_binop_inplace() 1539 result = do_binop(v, w, opname, ropname, thisfunc); in do_binop_inplace()
|