Home | History | Annotate | Download | only in clinic

Lines Matching refs:ch

6 "addch([y, x,] ch, [attr])\n"
7 "Paint character ch at (y, x) with attributes attr.\n"
13 " ch\n"
18 "Paint character ch at (y, x) with attributes attr,\n"
28 int x, PyObject *ch, int group_right_1, long attr);
37 PyObject *ch;
43 if (!PyArg_ParseTuple(args, "O:addch", &ch)) {
48 if (!PyArg_ParseTuple(args, "Ol:addch", &ch, &attr)) {
54 if (!PyArg_ParseTuple(args, "iiO:addch", &y, &x, &ch)) {
60 if (!PyArg_ParseTuple(args, "iiOl:addch", &y, &x, &ch, &attr)) {
70 return_value = curses_window_addch_impl(self, group_left_1, y, x, ch, group_right_1, attr);