Searched refs:chgat (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_curses.py | 194 stdscr.chgat(5, 2, 3, curses.A_BLINK) 195 stdscr.chgat(3, curses.A_BOLD) 196 stdscr.chgat(5, 8, curses.A_UNDERLINE) 197 stdscr.chgat(curses.A_BLINK)
|
/external/python/cpython3/Lib/test/ |
D | test_curses.py | 465 win.chgat(curses.A_BLINK) 471 win.chgat(3, curses.A_BOLD) 477 win.chgat(3, 2, curses.A_UNDERLINE) 482 win.chgat(3, 4, 7, curses.A_BLINK)
|
/external/python/cpython2/Doc/library/ |
D | curses.rst | 774 .. method:: window.chgat(attr) 775 window.chgat(num, attr) 776 window.chgat(y, x, attr) 777 window.chgat(y, x, num, attr)
|
/external/python/cffi/demo/ |
D | _curses.py | 340 def chgat(self, y, x, num, attr=None): member in Window
|
/external/python/cpython3/Doc/library/ |
D | curses.rst | 844 .. method:: window.chgat(attr) 845 window.chgat(num, attr) 846 window.chgat(y, x, attr) 847 window.chgat(y, x, num, attr)
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 1905 :meth:`chgat`, changes the display attributes for a certain number of 1912 stdscr.chgat(0, 21, curses.A_BOLD)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.6.rst | 1909 :meth:`chgat`, changes the display attributes for a certain number of 1916 stdscr.chgat(0, 21, curses.A_BOLD)
|