Lines Matching full:cols
69 self.cols = c
76 self.w = [ [SPACE] * self.cols for c in range(self.rows)]
98 top_bot = '+' + '-'*self.cols + '+\n'
103 self.fill_region (1,1,self.rows,self.cols, ch)
109 cs = constrain (cs, 1, self.cols)
110 ce = constrain (ce, 1, self.cols)
158 c = constrain (c, 1, self.cols)
177 c = constrain (c, 1, self.cols)
178 for ci in range (self.cols, c, -1):
189 c = constrain (c, 1, self.cols)
203 cs = constrain (cs, 1, self.cols)
204 ce = constrain (ce, 1, self.cols)
224 self.cur_c = constrain (self.cur_c, 1, self.cols)
337 self.fill_region (self.cur_r, self.cur_c, self.cur_r, self.cols)
350 self.fill_region (self.cur_r, 1, self.cur_r, self.cols)
358 self.fill_region (self.cur_r + 1, 1, self.rows, self.cols)
366 self.fill_region (self.cur_r-1, 1, 1, self.cols)