Home
last modified time | relevance | path

Searched refs:AOP (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Modules/
Doperator.c13 #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \ argument
14 return AOP(a1); }
16 #define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
19 return AOP(a1,a2); }
21 #define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
24 return AOP(a1,a2); }
26 #define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
29 if(-1 == AOP(a1,a2)) return NULL; \
33 #define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
36 if(-1 == AOP(a1,a2,a3)) return NULL; \
[all …]
/external/dexmaker/
DREADME.version9 It includes a stock code generator for class proxies. If you just want to do AOP or class mocking, …
DREADME.md15 If you just want to do AOP or class mocking, you don't need to mess around with bytecodes.