• Home
  • Raw
  • Download

Lines Matching refs:attr_t

130 typedef chtype attr_t;           /* No attr_t type is available */  typedef
635 rtn = mvwaddch(self->win,y,x, cch | (attr_t) attr); in _curses_window_addch_impl()
637 rtn = waddch(self->win, cch | (attr_t) attr); in _curses_window_addch_impl()
685 attr_t attr_old = A_NORMAL; in _curses_window_addstr_impl()
767 attr_t attr_old = A_NORMAL; in _curses_window_addnstr_impl()
845 return PyCursesCheckERR(wattroff(self->win, (attr_t)attr), "attroff"); in _curses_window_attroff_impl()
861 return PyCursesCheckERR(wattron(self->win, (attr_t)attr), "attron"); in _curses_window_attron_impl()
877 return PyCursesCheckERR(wattrset(self->win, (attr_t)attr), "attrset"); in _curses_window_attrset_impl()
1058 attr_t attr = A_NORMAL; in PyCursesWindow_ChgAt()
1196 return PyCursesCheckERR(pechochar(self->win, ch_ | (attr_t)attr), in _curses_window_echochar_impl()
1201 return PyCursesCheckERR(wechochar(self->win, ch_ | (attr_t)attr), in _curses_window_echochar_impl()
1499 return PyCursesCheckERR(whline(self->win, ch_ | (attr_t)attr, n), "hline"); in _curses_window_hline_impl()
1540 rtn = winsch(self->win, ch_ | (attr_t)attr); in _curses_window_insch_impl()
1543 rtn = mvwinsch(self->win, y, x, ch_ | (attr_t)attr); in _curses_window_insch_impl()
1685 attr_t attr_old = A_NORMAL; in _curses_window_insstr_impl()
1699 (void)wattrset(self->win, (attr_t)attr); in _curses_window_insstr_impl()
1770 attr_t attr_old = A_NORMAL; in _curses_window_insnstr_impl()
1784 (void)wattrset(self->win, (attr_t)attr); in _curses_window_insnstr_impl()
2293 return PyCursesCheckERR(wvline(self->win, ch_ | (attr_t)attr, n), "vline"); in _curses_window_vline_impl()