Lines Matching refs:text_row_
242 text_[text_row_][text_col_] = '\0'; in Print()
244 text_row_ = (text_row_ + 1) % text_rows_; in Print()
245 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in Print()
247 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in Print()
249 text_[text_row_][text_col_] = '\0'; in Print()
343 text_row_ = text_top_ = text_rows_ - 2; in ShowFile()
347 if (text_col_ == 0 && text_row_ >= text_rows_ - 2) { in ShowFile()
348 text_top_ = text_row_; in ShowFile()
357 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
360 ++text_row_; in PutChar()
378 text_row_ = 0; in ClearText()
405 text_[text_row_][text_col_] = '\0'; in PrintV()
407 text_row_ = (text_row_ + 1) % text_rows_; in PrintV()
408 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in PrintV()
410 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
412 text_[text_row_][text_col_] = '\0'; in PrintV()