Home
last modified time | relevance | path

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

/bootable/recovery/recovery_ui/
Dwear_ui.cpp101 if (text_rows_ > 0 && text_cols_ > 0) { in CreateMenu()
103 text_cols_ - 1, text_headers, text_items, initial_selection, in CreateMenu()
Dscreen_ui.cpp324 text_cols_(0), in ScreenRecoveryUI()
854 text_cols_ = (ScreenWidth() - margin_width_ * 2) / char_width_; in InitTextParams()
884 text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
885 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
1024 if (text_rows_ > 0 && text_cols_ > 0) { in PrintV()
1026 if (*ptr == '\n' || text_col_ >= text_cols_) { in PrintV()
1055 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
1066 memset(text_[i], 0, text_cols_ + 1); in ClearText()
1164 if (text_rows_ > 0 && text_cols_ > 1) { in CreateMenu()
1165 return std::make_unique<TextMenu>(scrollable_menu_, text_rows_, text_cols_ - 1, text_headers, in CreateMenu()
[all …]
/bootable/recovery/recovery_ui/include/recovery_ui/
Dscreen_ui.h373 size_t text_cols_, text_rows_; variable