Home
last modified time | relevance | path

Searched refs:text_rows_ (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/recovery_ui/
Dwear_ui.cpp101 if (text_rows_ > 0 && text_cols_ > 0) { in CreateMenu()
102 return std::make_unique<TextMenu>(scrollable_menu_, text_rows_ - menu_unusable_rows_ - 1, in CreateMenu()
Dscreen_ui.cpp325 text_rows_(0), in ScreenRecoveryUI()
738 for (int ty = ScreenHeight() - margin_height_ - char_height_; ty >= y && count < text_rows_; in draw_menu_and_text_buffer_locked()
742 if (row < 0) row = text_rows_ - 1; in draw_menu_and_text_buffer_locked()
867 text_rows_ = (ScreenHeight() - margin_height_ * 2) / char_height_; in InitTextParams()
898 text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
899 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
1038 if (text_rows_ > 0 && text_cols_ > 0) { in PrintV()
1043 text_row_ = (text_row_ + 1) % text_rows_; in PrintV()
1079 for (size_t i = 0; i < text_rows_; ++i) { in ClearText()
1124 while (text_row_ < text_rows_ - 1) PutChar('\n'); in ShowFile()
[all …]
/bootable/recovery/recovery_ui/include/recovery_ui/
Dscreen_ui.h376 size_t text_cols_, text_rows_; variable