HomeSort by relevance Sort by last modified time
    Searched refs:text_cols_ (Results 1 - 3 of 3) sorted by null

  /bootable/recovery/
screen_ui.cpp 67 text_cols_(0),
383 // The line will be wrapped if it exceeds text_cols_.
387 std::string sub = line.substr(next_start, text_cols_ + 1);
388 if (sub.size() <= text_cols_) {
391 // Line too long and must be wrapped to text_cols_ columns.
395 sub.resize(text_cols_);
396 next_start += text_cols_;
446 // Ignore kMenuIndent, which is not taken into account by text_cols_.
593 text_cols_ = (ScreenWidth() - kMarginWidth * 2) / char_width_;
609 text_ = Alloc2d(text_rows_, text_cols_ + 1)
    [all...]
wear_ui.cpp 158 if (text_rows_ > 0 && text_cols_ > 0) {
167 menu_.emplace_back(std::string(items[i], strnlen(items[i], text_cols_ - 1)));
screen_ui.h 178 size_t text_cols_, text_rows_; member in class:ScreenRecoveryUI

Completed in 996 milliseconds