Lines Matching defs:flag
2624 #define NoArgOrFlagNoReturnFunctionBody(X, flag) \
2627 if (flag) \
2712 flag: bool(accept={int}) = True
2726 _curses_cbreak_impl(PyObject *module, int flag)
2728 NoArgOrFlagNoReturnFunctionBody(cbreak, flag)
2876 flag: bool(accept={int}) = True
2886 _curses_echo_impl(PyObject *module, int flag)
2888 NoArgOrFlagNoReturnFunctionBody(echo, flag)
3503 flag: bool(accept={int})
3509 _curses_intrflush_impl(PyObject *module, int flag)
3514 return PyCursesCheckERR(intrflush(NULL, flag), "intrflush");
3773 flag: bool(accept={int}) = True
3784 _curses_nl_impl(PyObject *module, int flag)
3786 NoArgOrFlagNoReturnFunctionBody(nl, flag)
3932 flag: bool(accept={int}) = True
3943 _curses_qiflush_impl(PyObject *module, int flag)
3948 if (flag) {
4028 flag: bool(accept={int}) = True
4040 _curses_raw_impl(PyObject *module, int flag)
4042 NoArgOrFlagNoReturnFunctionBody(raw, flag)
4513 flag: bool(accept={int})
4521 When flag is False, the values of lines and columns specified in the terminfo
4529 _curses_use_env_impl(PyObject *module, int flag)
4532 use_env(flag);
4599 #define SetIntItem(flag) \
4600 PyStructSequence_SET_ITEM(ncurses_version, pos++, PyLong_FromLong(flag)); \