OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ulx
(Results
1 - 4
of
4
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py
6
def rectangle(win, uly,
ulx
, lry, lrx):
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)
180
uly,
ulx
= 15, 20
181
stdscr.addstr(uly-2,
ulx
, "Use Ctrl-G to end editing."
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py
6
def rectangle(win, uly,
ulx
, lry, lrx):
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)
180
uly,
ulx
= 15, 20
181
stdscr.addstr(uly-2,
ulx
, "Use Ctrl-G to end editing."
[
all
...]
Completed in 134 milliseconds