Lines Matching refs:text_row_
65 text_row_(0), in ScreenRecoveryUI()
402 text_col_ = text_row_ = 0; in Init()
522 text_[text_row_][text_col_] = '\0'; in Print()
524 text_row_ = (text_row_ + 1) % text_rows_; in Print()
525 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in Print()
527 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in Print()
529 text_[text_row_][text_col_] = '\0'; in Print()
537 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
540 ++text_row_; in PutChar()
542 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in PutChar()
550 text_row_ = 0; in ClearText()
597 while (text_row_ < text_rows_ - 1) PutChar('\n'); in ShowFile()
601 if (text_col_ == 0 && text_row_ >= text_rows_ - 1) { in ShowFile()
617 size_t old_text_row = text_row_; in ShowFile()
629 text_row_ = old_text_row; in ShowFile()