Lines Matching defs:move

470 extern int move(int, int);
736 #define mvaddch(y, x, ch) (move(y, x) ? ((ch), ERR) : addch(ch))
741 #define mvadd_wch(y, x, cp) (move(y, x) ? ((cp), ERR) : add_wch(cp))
748 (move(y, x) ? ((chs), (n), ERR) : addchnstr(chs, n))
751 (move(y, x) ? ((chs), ERR) : addchstr(chs))
765 (move(y, x) ? ((cp), (n), ERR) : add_wchnstr(cp, n))
768 (move(y, x) ? ((cp), ERR) : add_wchstr(cp))
782 (move(y, x) ? (s, n, ERR) : addnstr(s, n))
785 (move(y, x) ? (s, ERR) : addstr(s))
797 (move(y, x) ? (wcs, n, ERR) : addnwstr(wcs, n))
800 (move(y, x) ? (wcs, ERR) : addwstr(wcs))
846 (move(y, x) ? (n, a, co, p, ERR) : chgat(n, a, co, p))
863 #define mvdelch(y, x) (move(y, x) ? ERR : delch())
884 #define mvgetch(y, x) (move(y, x) ? ERR : getch())
890 (move(y, x) ? (wcp, ERR) : get_wch(wcp))
898 (move(y, x) ? (s, n, ERR) : getnstr(s, n))
901 (move(y, x) ? (s, ERR) : getstr(s))
913 (move(y, x) ? (wcs, n, ERR) : getn_wstr(wcs, n))
916 (move(y, x) ? (wcs, ERR) : get_wstr(wcs))
940 (move(y, x) ? (ch, n, ERR) : hline(ch, n))
943 (move(y, x) ? (ch, n, ERR) : vline(ch, n))
954 (move(y, x) ? (cp, n, ERR) : hline_set(cp, n))
957 (move(y, x) ? (cp, n, ERR) : vline_set(cp, n))
966 #define mvinch(y, x) (move(y, x) ? ERR : inch())
972 (move(y, x) ? (cp, ERR) : in_wch(cp))
980 (move(y, x) ? (chs, n, ERR) : inchnstr(chs, n))
983 (move(y, x) ? (chs, ERR) : inchstr(chs))
995 (move(y, x) ? (cp, n, ERR) : in_wchnstr(cp, n))
998 (move(y, x) ? (cp, ERR) : in_wchstr(cp))
1011 (move(y, x) ? (s, n, ERR) : innstr(s, n))
1014 (move(y, x) ? (s, ERR) : instr(s))
1026 (move(y, x) ? (wcs, n, ERR) : innwstr(wcs, n))
1029 (move(y, x) ? (wcs, ERR) : inwstr(wcs))
1040 #define mvinsch(y, x, ch) (move(y, x) ? (ch, ERR) : insch(ch))
1045 #define mvins_wch(y, x, cp) (move(y, x) ? (cp, ERR) : ins_wch(cp))
1051 #define mvinsnstr(y, x, s, n) (move(y, x) ? (s, n, ERR) : insnstr(s, n))
1052 #define mvinsstr(y, x, s) (move(y, x) ? (s, ERR) : insstr(s))
1063 (move(y, x) ? (wcs, n, ERR) : ins_nwstr(wcs, n))
1065 #define mvins_wstr(y, x, wcs) (move(y, x) ? (wcs, ERR) : ins_wstr(wcs))
1074 #define move(y, x) wmove(stdscr, y, x)