HomeSort by: relevance | last modified time | path
    Searched refs:__COLOR (Results 1 - 15 of 15) sorted by relevancy

  /src/lib/libcurses/
border.c 112 left |= (left & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr;
113 left |= (left & __COLOR) ? (win->battr & ~__COLOR) : win->battr;
114 right |= (right & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr;
115 right |= (right & __COLOR) ? (win->battr & ~__COLOR) : win->battr;
116 top |= (top & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr
    [all...]
inch.c 97 if (__using_color && ((attr & __COLOR) == __default_color))
98 attr &= ~__COLOR;
insch.c 101 attr = win->battr & __COLOR;
121 if (temp1->attr & __COLOR)
122 temp1->attr |= (win->battr & ~__COLOR);
chgat.c 72 attr = (attr & ~__COLOR) | COLOR_PAIR(color);
78 "color pair %d\n", x, y, count, (attr & ~__COLOR),
background.c 80 if (__using_color && !(ch & __COLOR))
136 if (__using_color && ((battr & __COLOR) == __default_color))
137 battr &= ~__COLOR;
232 if (__using_color && !( battr & __COLOR))
295 if (__using_color && ((wch->attributes & __COLOR) == __default_color))
296 wch->attributes &= ~__COLOR;
addbytes.c 278 attributes = (win->wattr | attr) & (__ATTRIBUTES & ~__COLOR);
279 if (attr & __COLOR)
280 attributes |= attr & __COLOR;
281 else if (win->wattr & __COLOR)
282 attributes |= win->wattr & __COLOR;
323 if (attributes & __COLOR)
325 attributes | (win->battr & ~__COLOR);
536 & (WA_ATTRIBUTES & ~__COLOR);
537 if (wch->attributes & __COLOR)
538 attributes |= wch->attributes & __COLOR;
    [all...]
setterm.c 154 screen->mask_op = __ATTRIBUTES & ~__COLOR;
156 screen->mask_op = WA_ATTRIBUTES & ~__COLOR;
200 ~(__STANDOUT | __TERMATTR | __COLOR);
209 screen->mask_ue &= ~__COLOR;
220 ~(__UNDERSCORE | __TERMATTR | __COLOR);
229 screen->mask_se &= ~__COLOR;
attributes.c 209 attr = (attr & ~__COLOR) | COLOR_PAIR(pair);
418 if (attr & __COLOR)
468 if (attr & __COLOR) {
470 win->wattr &= ~__COLOR;
487 win->wattr &= ~__COLOR;
490 win->wattr |= attr & __COLOR;
color.c 255 win->alines[y]->line[x].attr &= ~__COLOR;
540 ((curscr->wattr & __COLOR) == (attr & __COLOR)))
588 curscr->wattr &= ~__COLOR;
589 curscr->wattr |= attr & __COLOR;
676 if ((lp->line[x].attr & __COLOR) == cl)
677 lp->line[x].attr &= ~__COLOR;
686 __COLOR) == cl) {
cchar.c 113 wcval->attributes = attrs & ~__COLOR;
delch.c 106 temp1->attr = win->battr & __COLOR;
insdelln.c 88 attr = win->battr & __COLOR;
refresh.c 581 if (curscr->wattr & __COLOR)
890 __set_color(curscr, nsp->attr & __COLOR);
1054 __set_color(curscr, nsp->attr & __COLOR);
1373 ((lspc & __COLOR) !=
1374 (curscr->wattr & __COLOR)))) {
1376 __COLOR);
1598 __virtscr->maxy - 1)]->line[0].attr & __COLOR;
1600 if ((__virtscr->alines[i]->line[0].attr & __COLOR) != bcolor) {
1602 attr & __COLOR;
curses_private.h 164 struct __color { struct
182 #define MAX_PAIRS PAIR_NUMBER(__COLOR)
239 struct __color colours[MAX_COLORS];
curses.h 231 #define __COLOR 0x03fe0000 /* Color bits */
258 #define A_COLOR __COLOR

Completed in 19 milliseconds