Lines Matching defs:ch_
1334 chtype ch_;
1336 if (!PyCurses_ConvertToChtype(self, ch, &ch_))
1341 return PyCursesCheckERR(pechochar(self->win, ch_ | (attr_t)attr),
1346 return PyCursesCheckERR(wechochar(self->win, ch_ | (attr_t)attr),
1635 chtype ch_;
1637 if (!PyCurses_ConvertToChtype(self, ch, &ch_))
1644 return PyCursesCheckERR(whline(self->win, ch_ | (attr_t)attr, n), "hline");
1679 chtype ch_ = 0;
1681 if (!PyCurses_ConvertToChtype(self, ch, &ch_))
1685 rtn = winsch(self->win, ch_ | (attr_t)attr);
1688 rtn = mvwinsch(self->win, y, x, ch_ | (attr_t)attr);
2430 chtype ch_;
2432 if (!PyCurses_ConvertToChtype(self, ch, &ch_))
2438 return PyCursesCheckERR(wvline(self->win, ch_ | (attr_t)attr, n), "vline");
4405 chtype ch_;
4409 if (!PyCurses_ConvertToChtype(NULL, ch, &ch_))
4412 return PyBytes_FromString(unctrl(ch_));
4428 chtype ch_;
4432 if (!PyCurses_ConvertToChtype(NULL, ch, &ch_))
4435 return PyCursesCheckERR(ungetch(ch_), "ungetch");