Home
last modified time | relevance | path

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

/aosp12/bootable/recovery/recovery_ui/
H A Dscreen_ui.cpp326 text_rows_(0), in ScreenRecoveryUI()
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()
[all …]
H A 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()
/aosp12/bootable/recovery/recovery_ui/include/recovery_ui/
H A Dscreen_ui.h376 size_t text_cols_, text_rows_; variable