Home
last modified time | relevance | path

Searched refs:COLOR_DEFAULT (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_dft_fgbg.c80 SP_PARM->_default_fg = isDefaultColor(fg) ? COLOR_DEFAULT : fg; in NCURSES_SP_NAME()
81 SP_PARM->_default_bg = isDefaultColor(bg) ? COLOR_DEFAULT : bg; in NCURSES_SP_NAME()
H A Dlib_set_term.c481 sp->_default_fg = COLOR_DEFAULT; in NCURSES_SP_NAME()
482 sp->_default_bg = COLOR_DEFAULT; in NCURSES_SP_NAME()
494 sp->_default_fg = ((fg >= 0 && fg < MaxColors) ? fg : COLOR_DEFAULT); in NCURSES_SP_NAME()
496 sp->_default_bg = ((bg >= 0 && bg < MaxColors) ? bg : COLOR_DEFAULT); in NCURSES_SP_NAME()
H A Dlib_color.c589 f = COLOR_DEFAULT; in _nc_init_pair()
596 b = COLOR_DEFAULT; in _nc_init_pair()
999 int fg = COLOR_DEFAULT; in NCURSES_SP_NAME()
1000 int bg = COLOR_DEFAULT; in NCURSES_SP_NAME()
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dtinfo_driver.c333 sp->_default_fg = isDefaultColor(fg) ? COLOR_DEFAULT : fg; in drv_defaultcolors()
334 sp->_default_bg = isDefaultColor(bg) ? COLOR_DEFAULT : bg; in drv_defaultcolors()
843 int fg = COLOR_DEFAULT; in drv_do_color()
844 int bg = COLOR_DEFAULT; in drv_do_color()
/freebsd/contrib/ncurses/ncurses/
H A Dcurses.priv.h820 #define COLOR_DEFAULT -1 macro