Lines Matching refs:cs
105 def fill_region (self, rs,cs, re,ce, ch=SPACE):
109 cs = constrain (cs, 1, self.cols)
113 if cs > ce:
114 cs, ce = ce, cs
116 for c in range (cs, ce + 1):
196 def get_region (self, rs,cs, re,ce):
203 cs = constrain (cs, 1, self.cols)
207 if cs > ce:
208 cs, ce = ce, cs
212 for c in range (cs, ce + 1):