/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | V2.makenew.c | 50 makenew(int num_lines, int num_cols, int begy, int begx) argument 52 return (_makenew(num_lines, num_cols, begy, begx));
|
H A D | makenew.c | 52 _makenew(int nlines, int ncols, int begy, int begx) argument 60 nlines, ncols, begy, begx); 100 win->_begx = (short) begx; 101 win->_clear = (((begy + SP->Yabove + begx) == 0) &&
|
H A D | llib-lcurses | 50 WINDOW *makenew(int num_lines, int num_cols, int begy, int begx); 750 WINDOW *_makenew(int nlines, int ncols, int begy, int begx);
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | newpad.c | 62 (subpad)(parent, nlines, ncols, begy, begx) 64 int nlines, ncols, begy, begx; 71 parent, nlines, ncols, begy, begx 75 w = subwin(parent, nlines, ncols, begy, begx);
|
H A D | newwin.c | 52 * then the default sizes will be LINES-begy and COLS-begx. 54 * For a pad, provide the dimensions and -1 for begy and begx. 62 __m_newwin(parent, nlines, ncols, begy, begx) 64 int nlines, ncols, begy, begx; 72 parent, nlines, ncols, begy, begx 85 if (0 <= begx) 86 ncols -= begx; 93 if (begy < parent->_begy || begx < parent->_begx 95 || parent->_maxx < (begx-parent->_begx) + ncols) 105 ncols = parent->_maxx - (begx [all...] |
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | newpad.c | 66 subpad(WINDOW *parent, int nlines, int ncols, int begy, int begx) argument 70 w = subwin(parent, nlines, ncols, begy, begx);
|
H A D | newwin.c | 59 * then the default sizes will be LINES-begy and COLS-begx. 61 * For a pad, provide the dimensions and -1 for begy and begx. 70 int nlines, int ncols, int begy, int begx) 76 isPad = ((begy < 0) && (begx < 0)) || 88 if (0 <= begx) 89 ncols -= begx; 97 if (begy < parent->_begy || begx < parent->_begx || 99 parent->_maxx < (begx-parent->_begx) + ncols) 110 ncols = parent->_maxx - (begx - parent->_begx); 120 if (0 <= begx) { 69 __m_newwin(WINDOW *parent, int nlines, int ncols, int begy, int begx) argument 266 derwin(WINDOW *parent, int nlines, int ncols, int begy, int begx) argument 284 newwin(int nlines, int ncols, int begy, int begx) argument 294 subwin(WINDOW *parent, int nlines, int ncols, int begy, int begx) argument [all...] |
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | newwin.c | 40 newwin(int num_lines, int num_cols, int begy, int begx) argument 48 bx = begx; 95 subwin(WINDOW *orig, int num_lines, int num_cols, int begy, int begx) argument 101 bx = begx; 155 makenew(int num_lines, int num_cols, int begy, int begx) argument 161 bx = begx;
|