Home | History | Annotate | Download | only in curses

Lines Matching refs:maxx

46         (self.maxy, self.maxx) = win.getmaxyx()
48 self.maxx = self.maxx - 1
56 last = self.maxx
59 last = min(self.maxx, last+1)
68 if y < self.maxy or x < self.maxx:
89 if y < self.maxy or x < self.maxx:
101 self.win.move(y-1, self.maxx)
110 self.win.move(y, self.maxx)
112 if x < self.maxx:
156 for x in range(self.maxx+1):