Searched refs:dimen_t (Results 1 – 1 of 1) sorted by relevance
74 typedef short unsigned int dimen_t; typedef78 inline ScrollbackLine(dimen_t _cols) : cols(_cols) { in ScrollbackLine()85 inline dimen_t copyFrom(dimen_t cols, const VTermScreenCell* cells) { in copyFrom()86 dimen_t n = this->cols > cols ? cols : this->cols; in copyFrom()91 inline dimen_t copyTo(dimen_t cols, VTermScreenCell* cells) { in copyTo()92 dimen_t n = cols > this->cols ? this->cols : cols; in copyTo()97 inline void getCell(dimen_t col, VTermScreenCell* cell) { in getCell()101 const dimen_t cols;123 status_t resize(dimen_t rows, dimen_t cols, dimen_t scrollRows);125 status_t onPushline(dimen_t cols, const VTermScreenCell* cells);[all …]