Searched refs:PARSESTR (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Modules/ |
D | _curses_panel.c | 155 #define Panel_TwoArgNoReturnFunction(X, TYPE, PARSESTR) \ argument 159 if (!PyArg_ParseTuple(args, PARSESTR, &arg1, &arg2)) return NULL; \
|
D | _cursesmodule.c | 272 #define Window_OneArgNoReturnVoidFunction(X, TYPE, PARSESTR) \ argument 277 if (!PyArg_ParseTuple(args, PARSESTR, &arg1)) return NULL; \ 280 #define Window_OneArgNoReturnFunction(X, TYPE, PARSESTR) \ argument 285 if (!PyArg_ParseTuple(args,PARSESTR, &arg1)) return NULL; \ 288 #define Window_TwoArgNoReturnFunction(X, TYPE, PARSESTR) \ argument 293 if (!PyArg_ParseTuple(args,PARSESTR, &arg1, &arg2)) return NULL; \
|
/external/python/cpython3/Modules/ |
D | _curses_panel.c | 182 #define Panel_TwoArgNoReturnFunction(X, TYPE, PARSESTR) \ argument 186 if (!PyArg_ParseTuple(args, PARSESTR, &arg1, &arg2)) return NULL; \
|
D | _cursesmodule.c | 442 #define Window_OneArgNoReturnVoidFunction(X, TYPE, PARSESTR) \ argument 447 if (!PyArg_ParseTuple(args, PARSESTR, &arg1)) return NULL; \ 450 #define Window_OneArgNoReturnFunction(X, TYPE, PARSESTR) \ argument 455 if (!PyArg_ParseTuple(args,PARSESTR, &arg1)) return NULL; \ 458 #define Window_TwoArgNoReturnFunction(X, TYPE, PARSESTR) \ argument 463 if (!PyArg_ParseTuple(args,PARSESTR, &arg1, &arg2)) return NULL; \
|