Lines Matching refs:str

78 "addstr([y, x,] str, [attr])\n"
85 " str\n"
90 "Paint the string str at (y, x) with attributes attr,\n"
100 int y, int x, PyObject *str, int group_right_1,
110 PyObject *str;
116 if (!PyArg_ParseTuple(args, "O:addstr", &str)) {
121 if (!PyArg_ParseTuple(args, "Ol:addstr", &str, &attr)) {
127 if (!PyArg_ParseTuple(args, "iiO:addstr", &y, &x, &str)) {
133 if (!PyArg_ParseTuple(args, "iiOl:addstr", &y, &x, &str, &attr)) {
143 return_value = _curses_window_addstr_impl(self, group_left_1, y, x, str, group_right_1, attr);
150 "addnstr([y, x,] str, n, [attr])\n"
157 " str\n"
164 "Paint at most n characters of the string str at (y, x) with\n"
174 int y, int x, PyObject *str, int n,
184 PyObject *str;
191 if (!PyArg_ParseTuple(args, "Oi:addnstr", &str, &n)) {
196 if (!PyArg_ParseTuple(args, "Oil:addnstr", &str, &n, &attr)) {
202 if (!PyArg_ParseTuple(args, "iiOi:addnstr", &y, &x, &str, &n)) {
208 if (!PyArg_ParseTuple(args, "iiOil:addnstr", &y, &x, &str, &n, &attr)) {
218 return_value = _curses_window_addnstr_impl(self, group_left_1, y, x, str, n, group_right_1, attr);
1089 "insstr([y, x,] str, [attr])\n"
1096 " str\n"
1112 int y, int x, PyObject *str, int group_right_1,
1122 PyObject *str;
1128 if (!PyArg_ParseTuple(args, "O:insstr", &str)) {
1133 if (!PyArg_ParseTuple(args, "Ol:insstr", &str, &attr)) {
1139 if (!PyArg_ParseTuple(args, "iiO:insstr", &y, &x, &str)) {
1145 if (!PyArg_ParseTuple(args, "iiOl:insstr", &y, &x, &str, &attr)) {
1155 return_value = _curses_window_insstr_impl(self, group_left_1, y, x, str, group_right_1, attr);
1162 "insnstr([y, x,] str, n, [attr])\n"
1169 " str\n"
1188 int y, int x, PyObject *str, int n,
1198 PyObject *str;
1205 if (!PyArg_ParseTuple(args, "Oi:insnstr", &str, &n)) {
1210 if (!PyArg_ParseTuple(args, "Oil:insnstr", &str, &n, &attr)) {
1216 if (!PyArg_ParseTuple(args, "iiOi:insnstr", &y, &x, &str, &n)) {
1222 if (!PyArg_ParseTuple(args, "iiOil:insnstr", &y, &x, &str, &n, &attr)) {
1232 return_value = _curses_window_insnstr_impl(self, group_left_1, y, x, str, n, group_right_1, attr);
2711 _PyArg_BadArgument("setupterm", "argument 'term'", "str or None", args[0]);
3892 _PyArg_BadArgument("tigetflag", "argument", "str", arg);
3935 _PyArg_BadArgument("tigetnum", "argument", "str", arg);
3978 _PyArg_BadArgument("tigetstr", "argument", "str", arg);
3997 "tparm($module, str, i1=0, i2=0, i3=0, i4=0, i5=0, i6=0, i7=0, i8=0,\n"
4003 " str\n"
4010 _curses_tparm_impl(PyObject *module, const char *str, int i1, int i2, int i3,
4017 const char *str;
4029 &str, &i1, &i2, &i3, &i4, &i5, &i6, &i7, &i8, &i9)) {
4032 return_value = _curses_tparm_impl(module, str, i1, i2, i3, i4, i5, i6, i7, i8, i9);