Lines Matching defs:bg
122 #define SET_BG_COLOR(bg) _setbkcolor(bg) argument
123 #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } argument
135 #define SET_BG_COLOR(bg) textbackground(bg) argument
136 #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } argument
172 #define MAKEATTR(fg,bg) ((WORD)((fg)|((bg)<<4))) argument
176 #define SET_BG_COLOR(bg) { curr_attr &= ~0xf0; curr_attr |= ((bg)<<4); APPLY_COLORS(); } argument
177 #define SETCOLORS(fg,bg) { curr_attr = MAKEATTR(fg,bg); APPLY_COLORS(); } argument
2512 int bg; in parse_color() local
2577 int bg; in tput_color() local
2642 int bg; in win_set_color() local
3000 public void WIN32setcolors(int fg, int bg) in WIN32setcolors()