Home | History | Annotate | Download | only in pexpect

Lines Matching full:rows

68         self.rows = r
75 self.scroll_row_end = self.rows
76 self.w = [ [SPACE] * self.cols for c in range(self.rows)]
103 self.fill_region (1,1,self.rows,self.cols, ch)
107 rs = constrain (rs, 1, self.rows)
108 re = constrain (re, 1, self.rows)
157 r = constrain (r, 1, self.rows)
176 r = constrain (r, 1, self.rows)
188 r = constrain (r, 1, self.rows)
201 rs = constrain (rs, 1, self.rows)
202 re = constrain (re, 1, self.rows)
223 self.cur_r = constrain (self.cur_r, 1, self.rows)
296 if self.scroll_row_end > self.rows:
297 self.scroll_row_end = self.rows
304 self.scroll_row_end = self.rows
358 self.fill_region (self.cur_r + 1, 1, self.rows, self.cols)