Lines Matching defs:color
39 chgat(int n, attr_t attr, short color, const void *opts)
41 return wchgat(stdscr, n, attr, color, opts);
45 mvchgat(int y, int x, int n, attr_t attr, short color,
48 return mvwchgat(stdscr, y, x, n, attr, color, opts);
52 wchgat(WINDOW *win, int n, attr_t attr, short color, const void *opts)
54 return mvwchgat(win, win->cury, win->curx, n, attr, color, opts);
58 mvwchgat(WINDOW *win , int y, int x, int count, attr_t attr, short color,
72 attr = (attr & ~__COLOR) | COLOR_PAIR(color);
78 "color pair %d\n", x, y, count, (attr & ~__COLOR),
79 PAIR_NUMBER(color));