rows               45 lib/tty/tty-internal.h void tty_colorize_area (int y, int x, int rows, int cols, int color);
rows              133 lib/tty/tty-ncurses.c tty_clip (int *y, int *x, int *rows, int *cols)
rows              137 lib/tty/tty-ncurses.c         *rows += *y;
rows              139 lib/tty/tty-ncurses.c         if (*rows <= 0)
rows              155 lib/tty/tty-ncurses.c     if (*y + *rows > LINES)
rows              156 lib/tty/tty-ncurses.c         *rows = LINES - *y;
rows              158 lib/tty/tty-ncurses.c     if (*rows <= 0)
rows              541 lib/tty/tty-ncurses.c tty_fill_region (int y, int x, int rows, int cols, unsigned char ch)
rows              545 lib/tty/tty-ncurses.c     if (!tty_clip (&y, &x, &rows, &cols))
rows              548 lib/tty/tty-ncurses.c     for (i = 0; i < rows; i++)
rows              563 lib/tty/tty-ncurses.c tty_colorize_area (int y, int x, int rows, int cols, int color)
rows              571 lib/tty/tty-ncurses.c     if (!use_colors || !tty_clip (&y, &x, &rows, &cols))
rows              577 lib/tty/tty-ncurses.c     for (int row = 0; row < rows; row++)
rows              594 lib/tty/tty-ncurses.c     (void) rows;
rows              619 lib/tty/tty-slang.c tty_fill_region (int y, int x, int rows, int cols, unsigned char ch)
rows              621 lib/tty/tty-slang.c     SLsmg_fill_region (y, x, rows, cols, ch);
rows              627 lib/tty/tty-slang.c tty_colorize_area (int y, int x, int rows, int cols, int color)
rows              630 lib/tty/tty-slang.c         SLsmg_set_color_in_region (color, y, x, rows, cols);
rows              284 lib/tty/tty.c  tty_draw_box_shadow (int y, int x, int rows, int cols, int shadow_color)
rows              287 lib/tty/tty.c      tty_colorize_area (y + 1, x + cols, rows - 1, 2, shadow_color);
rows              289 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--)