Lines Matching refs:text_row_
71 text_row_(0),
470 int row = text_row_;
612 text_col_ = text_row_ = 0;
745 text_[text_row_][text_col_] = '\0';
747 text_row_ = (text_row_ + 1) % text_rows_;
749 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
751 text_[text_row_][text_col_] = '\0';
773 if (ch != '\n') text_[text_row_][text_col_++] = ch;
776 ++text_row_;
784 text_row_ = 0;
830 while (text_row_ < text_rows_ - 1) PutChar('\n');
834 if (text_col_ == 0 && text_row_ >= text_rows_ - 1) {
850 size_t old_text_row = text_row_;
861 text_row_ = old_text_row;