Lines Matching refs:text_rows_
326 text_rows_(0), in ScreenRecoveryUI()
741 for (int ty = ScreenHeight() - margin_height_ - char_height_; ty >= y && count < text_rows_; in draw_menu_and_text_buffer_locked()
745 if (row < 0) row = text_rows_ - 1; in draw_menu_and_text_buffer_locked()
870 text_rows_ = (ScreenHeight() - margin_height_ * 2) / char_height_; in InitTextParams()
919 text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
920 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
1059 if (text_rows_ > 0 && text_cols_ > 0) { in PrintV()
1064 text_row_ = (text_row_ + 1) % text_rows_; in PrintV()
1100 for (size_t i = 0; i < text_rows_; ++i) { in ClearText()
1145 while (text_row_ < text_rows_ - 1) PutChar('\n'); in ShowFile()
1149 if (text_col_ == 0 && text_row_ >= text_rows_ - 1) { in ShowFile()
1199 if (text_rows_ > 0 && text_cols_ > 1) { in CreateMenu()
1200 return std::make_unique<TextMenu>(scrollable_menu_, text_rows_, text_cols_ - 1, text_headers, in CreateMenu()
1204 fprintf(stderr, "Failed to create text menu, text_rows %zu, text_cols %zu.\n", text_rows_, in CreateMenu()