Lines Matching refs:width
112 attr_clear (WINDOW * win, int height, int width, chtype attr) in attr_clear() argument
119 for (j = 0; j < width; j++) in attr_clear()
198 print_autowrap (WINDOW * win, const char *prompt, int width, int y, int x) in print_autowrap() argument
215 if (prompt_len <= width - x * 2) { /* If prompt is short */ in print_autowrap()
216 wmove (win, y, (width - prompt_len) / 2); in print_autowrap()
231 room = width - cur_x; in print_autowrap()
286 draw_box (WINDOW * win, int y, int x, int height, int width, in draw_box() argument
294 for (j = 0; j < width; j++) in draw_box()
299 else if (!i && j == width - 1) in draw_box()
301 else if (i == height - 1 && j == width - 1) in draw_box()
309 else if (j == width - 1) in draw_box()
321 draw_shadow (WINDOW * win, int y, int x, int height, int width) in draw_shadow() argument
328 for (i = 0; i < width; i++) in draw_shadow()
331 wmove (win, i, x + width); in draw_shadow()