Home
last modified time | relevance | path

Searched refs:getcury (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/dialog/
H A Ddialog.h286 #undef getcury
288 #define getcury(win) dlg_getcury(win) macro
H A Dui_getc.c262 wmove(win, getcury(win), getcurx(win)); in dlg_raise_window()
H A Dconfigure.in238 getcury \
H A Dtreeview.c285 cur_y = getcury(dialog); in dlg_treeview()
H A Dutil.c2694 getpary(win) + getcury(win), in dlg_set_focus()
H A Dconfigure24312 getcury \
/freebsd/lib/ncurses/tinfo/
H A DMakefile677 curs_legacy.3 getcury.3 \
/freebsd/contrib/ncurses/include/
H A Dcurses.h.in921 extern NCURSES_EXPORT(int) getcury (const WINDOW *); /* generated */
1169 #define getyx(win,y,x) (y = getcury(win), x = getcurx(win))
1214 #define getcury(win) (NCURSES_OK_ADDR(win) ? (win)->_cury : ERR) macro
/freebsd/contrib/ncurses/ncurses/
H A Dllib-lncursest1167 #undef getcury
1168 int getcury(
H A Dllib-lncurses1164 #undef getcury
1165 int getcury(
H A Dllib-lncursestw1289 #undef getcury
1290 int getcury(
H A Dllib-lncursesw1286 #undef getcury
1287 int getcury(
/freebsd/contrib/netbsd-tests/lib/libcurses/slave/
H A Dcurses_commands.c2304 report_int(getcury(win)); in cmd_getcury()
/freebsd/contrib/ncurses/
H A DINSTALL1849 getbegx, getbegy, getcurx, getcury, getmaxx, getmaxy, getparx,
1980 + write getyx() and related 2-return macros in terms of getcury(),
H A DNEWS7973 to make NCURSES_NOMACROS ifdef work properly: getcurx(), getcury(),
9401 + write getyx() and related 2-return macros in terms of getcury(),
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp385 int GetCursorY() const { return getcury(m_window); } in GetCursorY()