Lines Matching defs:bg
120 #define SET_BG_COLOR(bg) _setbkcolor(bg) argument
121 #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } argument
133 #define SET_BG_COLOR(bg) textbackground(bg) argument
134 #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } argument
158 #define MAKEATTR(fg,bg) ((WORD)((fg)|((bg)<<4))) argument
162 #define SET_BG_COLOR(bg) { curr_attr &= ~0xf0; curr_attr |= ((bg)<<4); APPLY_COLORS(); } argument
163 #define SETCOLORS(fg,bg) { curr_attr = MAKEATTR(fg,bg); APPLY_COLORS(); } argument
2499 int bg = CV_ERROR; in parse_color() local
2615 int bg; in tput_color() local
2696 int bg; in win_set_color() local
3170 public void WIN32setcolors(int fg, int bg) in WIN32setcolors()