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

  /bootable/recovery/
screen_ui.cpp 67 text_row_(0),
468 text_col_ = text_row_ = 0;
617 text_[text_row_][text_col_] = '\0';
619 text_row_ = (text_row_ + 1) % text_rows_;
620 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_;
622 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
624 text_[text_row_][text_col_] = '\0';
646 if (ch != '\n') text_[text_row_][text_col_++] = ch;
649 ++text_row_;
    [all...]
screen_ui.h 110 size_t text_col_, text_row_, text_top_; member in class:ScreenRecoveryUI

Completed in 774 milliseconds