Lines Matching refs:text_cols_
330 text_cols_(0), in ScreenRecoveryUI()
877 text_cols_ = (ScreenWidth() - margin_width_ * 2) / char_width_; in InitTextParams()
926 text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
927 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
1069 if (text_rows_ > 0 && text_cols_ > 0) { in PrintV()
1071 if (*ptr == '\n' || text_col_ >= text_cols_) { in PrintV()
1100 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
1111 memset(text_[i], 0, text_cols_ + 1); in ClearText()
1209 if (text_rows_ > 0 && text_cols_ > 1) { in CreateMenu()
1210 return std::make_unique<TextMenu>(scrollable_menu_, text_rows_, text_cols_ - 1, text_headers, in CreateMenu()
1215 text_cols_); in CreateMenu()