Lines Matching defs:fg
119 #define SET_FG_COLOR(fg) _settextcolor(fg) argument
121 #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } argument
132 #define SET_FG_COLOR(fg) textcolor(fg) 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
161 #define SET_FG_COLOR(fg) { curr_attr &= ~0x0f; curr_attr |= (fg); APPLY_COLORS(); } argument
163 #define SETCOLORS(fg,bg) { curr_attr = MAKEATTR(fg,bg); APPLY_COLORS(); } argument
2540 int fg; in parse_color() local
2656 int fg; in tput_color() local
2737 int fg; in win_set_color() local
3222 public void WIN32setcolors(int fg, int bg) in WIN32setcolors()