Lines Matching refs:rows
88 self.rows = r
101 self.scroll_row_end = self.rows
102 self.w = [ [SPACE] * self.cols for _ in range(self.rows)]
151 self.fill_region (1,1,self.rows,self.cols, ch)
158 rs = constrain (rs, 1, self.rows)
159 re = constrain (re, 1, self.rows)
203 r = constrain (r, 1, self.rows)
229 r = constrain (r, 1, self.rows)
244 r = constrain (r, 1, self.rows)
256 rs = constrain (rs, 1, self.rows)
257 re = constrain (re, 1, self.rows)
277 self.cur_r = constrain (self.cur_r, 1, self.rows)
344 if self.scroll_row_end > self.rows:
345 self.scroll_row_end = self.rows
351 self.scroll_row_end = self.rows
398 self.fill_region (self.cur_r + 1, 1, self.rows, self.cols)