rows               45 lib/tty/tty-internal.h void tty_colorize_area (int y, int x, int rows, int cols, int color);
rows              132 lib/tty/tty-ncurses.c tty_clip (int *y, int *x, int *rows, int *cols)
rows              136 lib/tty/tty-ncurses.c         *rows += *y;
rows              138 lib/tty/tty-ncurses.c         if (*rows <= 0)
rows              154 lib/tty/tty-ncurses.c     if (*y + *rows > LINES)
rows              155 lib/tty/tty-ncurses.c         *rows = LINES - *y;
rows              157 lib/tty/tty-ncurses.c     if (*rows <= 0)
rows              540 lib/tty/tty-ncurses.c tty_fill_region (int y, int x, int rows, int cols, unsigned char ch)
rows              544 lib/tty/tty-ncurses.c     if (!tty_clip (&y, &x, &rows, &cols))
rows              547 lib/tty/tty-ncurses.c     for (i = 0; i < rows; i++)
rows              562 lib/tty/tty-ncurses.c tty_colorize_area (int y, int x, int rows, int cols, int color)
rows              570 lib/tty/tty-ncurses.c     if (!use_colors || !tty_clip (&y, &x, &rows, &cols))
rows              576 lib/tty/tty-ncurses.c     for (int row = 0; row < rows; row++)
rows              593 lib/tty/tty-ncurses.c     (void) rows;
rows              620 lib/tty/tty-slang.c tty_fill_region (int y, int x, int rows, int cols, unsigned char ch)
rows              622 lib/tty/tty-slang.c     SLsmg_fill_region (y, x, rows, cols, ch);
rows              628 lib/tty/tty-slang.c tty_colorize_area (int y, int x, int rows, int cols, int color)
rows              631 lib/tty/tty-slang.c         SLsmg_set_color_in_region (color, y, x, rows, cols);
rows              283 lib/tty/tty.c  tty_draw_box_shadow (int y, int x, int rows, int cols, int shadow_color)
rows              286 lib/tty/tty.c      tty_colorize_area (y + 1, x + cols, rows - 1, 2, shadow_color);
rows              288 lib/tty/tty.c      tty_colorize_area (y + rows, x + 2, 1, cols, shadow_color);
rows              128 lib/tty/tty.h  extern void tty_draw_box (int y, int x, int rows, int cols, gboolean single);
rows              129 lib/tty/tty.h  extern void tty_draw_box_shadow (int y, int x, int rows, int cols, int shadow_color);
rows              130 lib/tty/tty.h  extern void tty_fill_region (int y, int x, int rows, int cols, unsigned char ch);
rows               92 src/consaver/cons.saver.c send_contents (char *buffer, unsigned int columns, unsigned int rows)
rows               99 src/consaver/cons.saver.c     lc_index = 2 * rows * columns;
rows              100 src/consaver/cons.saver.c     for (lastline = rows; lastline > 0; lastline--)