Home | History | Annotate | Download | only in pexpect-2.4

Lines Matching refs:cols

53         self.cols = c
60 self.w = [ [SPACE] * self.cols for c in range(self.rows)]
82 top_bot = '+' + '-'*self.cols + '+\n'
87 self.fill_region (1,1,self.rows,self.cols, ch)
93 cs = constrain (cs, 1, self.cols)
94 ce = constrain (ce, 1, self.cols)
142 c = constrain (c, 1, self.cols)
161 c = constrain (c, 1, self.cols)
162 for ci in range (self.cols, c, -1):
173 c = constrain (c, 1, self.cols)
187 cs = constrain (cs, 1, self.cols)
188 ce = constrain (ce, 1, self.cols)
208 self.cur_c = constrain (self.cur_c, 1, self.cols)
321 self.fill_region (self.cur_r, self.cur_c, self.cur_r, self.cols)
334 self.fill_region (self.cur_r, 1, self.cur_r, self.cols)
342 self.fill_region (self.cur_r + 1, 1, self.rows, self.cols)
350 self.fill_region (self.cur_r-1, 1, 1, self.cols)