| /external/python/cpython2/Modules/ |
| D | operator.c | 231 #define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)}, argument 232 #define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, \ argument 234 #define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)}, argument 235 #define spam2o(OP,ALTOP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)}, \ argument
|
| /external/python/cpython3/Modules/ |
| D | _operator.c | 326 #define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)}, argument 327 #define spam2(OP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, argument 328 #define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)}, argument 329 #define spam2o(OP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)}, argument
|
| /external/python/cpython3/Objects/ |
| D | typeobject.c | 6514 #define TPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 6517 #define FLSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC, FLAGS) \ argument 6520 #define ETSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 6523 #define AMSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 6525 #define SQSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 6527 #define MPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 6529 #define NBSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 6531 #define UNSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 6534 #define IBSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 6537 #define BINSLOT(NAME, SLOT, FUNCTION, DOC) \ argument [all …]
|
| /external/python/cpython2/Objects/ |
| D | typeobject.c | 5940 #define TPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 5943 #define FLSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC, FLAGS) \ argument 5946 #define ETSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 5949 #define SQSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 5951 #define MPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 5953 #define NBSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 5955 #define UNSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 5958 #define IBSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ argument 5961 #define BINSLOT(NAME, SLOT, FUNCTION, DOC) \ argument 5964 #define RBINSLOT(NAME, SLOT, FUNCTION, DOC) \ argument [all …]
|