Searched refs:dimen_t (Results 1 – 1 of 1) sorted by relevance
72 typedef short unsigned int dimen_t; typedef76 inline ScrollbackLine(dimen_t _cols) : cols(_cols) { in ScrollbackLine()83 inline dimen_t copyFrom(dimen_t cols, const VTermScreenCell* cells) { in copyFrom()84 dimen_t n = this->cols > cols ? cols : this->cols; in copyFrom()89 inline dimen_t copyTo(dimen_t cols, VTermScreenCell* cells) { in copyTo()90 dimen_t n = cols > this->cols ? this->cols : cols; in copyTo()95 inline void getCell(dimen_t col, VTermScreenCell* cell) { in getCell()99 const dimen_t cols;121 status_t resize(dimen_t rows, dimen_t cols, dimen_t scrollRows);123 status_t onPushline(dimen_t cols, const VTermScreenCell* cells);[all …]