Lines Matching refs:text_col_
64 text_col_(0), in ScreenRecoveryUI()
402 text_col_ = text_row_ = 0; in Init()
521 if (*ptr == '\n' || text_col_ >= text_cols_) { in Print()
522 text_[text_row_][text_col_] = '\0'; in Print()
523 text_col_ = 0; 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()
538 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
539 text_col_ = 0; in PutChar()
549 text_col_ = 0; in ClearText()
601 if (text_col_ == 0 && text_row_ >= text_rows_ - 1) { in ShowFile()
616 size_t old_text_col = text_col_; in ShowFile()
628 text_col_ = old_text_col; in ShowFile()