Home
last modified time | relevance | path

Searched refs:tparm (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_curses.py258 curses.tparm(b'cr')
360 b = curses.tparm(curses.tigetstr("cup"), 5, 3)
/external/llvm/utils/lit/lit/
DProgressBar.py139 return curses.tparm(to_bytes(arg), index).decode('utf-8') or ''
/external/pdfium/third_party/libtiff/
Dtif_fax3.c733 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.py1043 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/
Dtest_curses.py685 curses.tparm(cud, 2)
686 cud_2 = curses.tparm(cud, 2)
/external/python/cpython2/Doc/library/
Dcurses.rst569 .. function:: tparm(str[,...])
573 ``tparm(tigetstr("cup"), 5, 3)`` could result in ``'\033[6;4H'``, the exact
/external/python/cpython3/Doc/library/
Dcurses.rst621 .. function:: tparm(str[, ...])
625 ``tparm(tigetstr("cup"), 5, 3)`` could result in ``b'\033[6;4H'``, the exact
/external/python/cpython3/Modules/
D_cursesmodule.c4351 result = tparm((char *)str,i1,i2,i3,i4,i5,i6,i7,i8,i9); in _curses_tparm_impl()
/external/python/cpython2/Modules/
D_cursesmodule.c2573 result = tparm(fmt,i1,i2,i3,i4,i5,i6,i7,i8,i9); in PyCurses_tparm()
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst4466 fix curses.tparm seg fault on invalid input.
/external/python/cpython3/Misc/
DHISTORY9065 - Issue #10570: curses.putp() and curses.tparm() are now expecting a byte