Home
last modified time | relevance | path

Searched refs:pair_number (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Modules/clinic/
D_cursesmodule.c.h2855 _curses_init_pair_impl(PyObject *module, short pair_number, short fg,
2862 short pair_number; in _curses_init_pair() local
2890 pair_number = (short) ival; in _curses_init_pair()
2941 return_value = _curses_init_pair_impl(module, pair_number, fg, bg); in _curses_init_pair()
3644 _curses_pair_content_impl(PyObject *module, short pair_number);
3650 short pair_number; in _curses_pair_content() local
3673 pair_number = (short) ival; in _curses_pair_content()
3676 return_value = _curses_pair_content_impl(module, pair_number); in _curses_pair_content()
/external/python/cpython3/Modules/
D_cursesmodule.c3076 _curses_init_pair_impl(PyObject *module, short pair_number, short fg, in _curses_init_pair_impl() argument
3083 return PyCursesCheckERR(init_pair(pair_number, fg, bg), "init_pair"); in _curses_init_pair_impl()
3624 _curses_pair_content_impl(PyObject *module, short pair_number) in _curses_nl_impl()
3632 if (pair_content(pair_number, &f, &b)==ERR) { in _curses_nl_impl()
/external/python/cpython2/Lib/test/
Dtest_curses.py275 curses.pair_number(0)
/external/python/cpython2/Doc/library/
Dcurses.rst116 and the other :const:`A_\*` attributes. :func:`pair_number` is the counterpart
279 .. function:: init_pair(pair_number, fg, bg)
283 color number. The value of *pair_number* must be between ``1`` and
433 .. function:: pair_content(pair_number)
436 The value of *pair_number* must be between ``1`` and ``COLOR_PAIRS - 1``.
439 .. function:: pair_number(attr)
/external/python/cpython3/Doc/library/
Dcurses.rst124 and the other :const:`A_\*` attributes. :func:`pair_number` is the counterpart
287 .. function:: init_pair(pair_number, fg, bg)
291 color number. The value of *pair_number* must be between ``1`` and
441 .. function:: pair_content(pair_number)
444 The value of *pair_number* must be between ``1`` and ``COLOR_PAIRS - 1``.
447 .. function:: pair_number(attr)
/external/python/cpython3/Lib/test/
Dtest_curses.py286 curses.pair_number(0)
/external/python/cffi/demo/
D_curses.py895 def pair_number(pairvalue): function