Searched refs:ulx (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/test/ |
D | curses_tests.py | 15 uly, ulx = 3, 2 21 stdscr.addstr(uly-3, ulx, "Use Ctrl-G to end editing (%s)." % mode) 22 stdscr.addstr(uly-2, ulx, "Be sure to try typing in the lower-right corner.") 23 win = curses.newwin(nlines, ncols, uly, ulx) 24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
|
/third_party/python/Lib/curses/ |
D | textpad.py | 6 def rectangle(win, uly, ulx, lry, lrx): argument 10 win.vline(uly+1, ulx, curses.ACS_VLINE, lry - uly - 1) 11 win.hline(uly, ulx+1, curses.ACS_HLINE, lrx - ulx - 1) 12 win.hline(lry, ulx+1, curses.ACS_HLINE, lrx - ulx - 1) 14 win.addch(uly, ulx, curses.ACS_ULCORNER) 17 win.addch(lry, ulx, curses.ACS_LLCORNER) 193 uly, ulx = 15, 20 194 stdscr.addstr(uly-2, ulx, "Use Ctrl-G to end editing.") 195 win = curses.newwin(nlines, ncols, uly, ulx) 196 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
|
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | matrix_utils.dart | 398 final double ulx = rx / rw; 408 _min4(ulx, urx, llx, lrx), 410 _max4(ulx, urx, llx, lrx),
|
/third_party/python/Doc/library/ |
D | curses.rst | 1784 .. function:: rectangle(win, uly, ulx, lry, lrx)
|