Searched refs:tparm (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_curses.py | 258 curses.tparm(b'cr') 360 b = curses.tparm(curses.tigetstr("cup"), 5, 3)
|
/external/llvm/utils/lit/lit/ |
D | ProgressBar.py | 139 return curses.tparm(to_bytes(arg), index).decode('utf-8') or ''
|
/external/pdfium/third_party/libtiff/ |
D | tif_fax3.c | 733 unsigned int code, length, tparm; in Fax3PutEOL() local 749 tparm = align; in Fax3PutEOL() 750 _PutBits(tif, 0, tparm); in Fax3PutEOL()
|
/external/python/cffi/demo/ |
D | _curses.py | 1043 def tparm(fmt, i1=0, i2=0, i3=0, i4=0, i5=0, i6=0, i7=0, i8=0, i9=0): function 1045 result = lib.tparm(fmt, *args)
|
/external/python/cpython3/Lib/test/ |
D | test_curses.py | 685 curses.tparm(cud, 2) 686 cud_2 = curses.tparm(cud, 2)
|
/external/python/cpython2/Doc/library/ |
D | curses.rst | 569 .. function:: tparm(str[,...]) 573 ``tparm(tigetstr("cup"), 5, 3)`` could result in ``'\033[6;4H'``, the exact
|
/external/python/cpython3/Doc/library/ |
D | curses.rst | 621 .. function:: tparm(str[, ...]) 625 ``tparm(tigetstr("cup"), 5, 3)`` could result in ``b'\033[6;4H'``, the exact
|
/external/python/cpython3/Modules/ |
D | _cursesmodule.c | 4351 result = tparm((char *)str,i1,i2,i3,i4,i5,i6,i7,i8,i9); in _curses_tparm_impl()
|
/external/python/cpython2/Modules/ |
D | _cursesmodule.c | 2573 result = tparm(fmt,i1,i2,i3,i4,i5,i6,i7,i8,i9); in PyCurses_tparm()
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6a1.rst | 4466 fix curses.tparm seg fault on invalid input.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 9065 - Issue #10570: curses.putp() and curses.tparm() are now expecting a byte
|