Lines Matching refs:move

468 extern int move(int, int);
734 #define mvaddch(y, x, ch) (move(y, x) ? ((ch), ERR) : addch(ch))
739 #define mvadd_wch(y, x, cp) (move(y, x) ? ((cp), ERR) : add_wch(cp))
746 (move(y, x) ? ((chs), (n), ERR) : addchnstr(chs, n))
749 (move(y, x) ? ((chs), ERR) : addchstr(chs))
763 (move(y, x) ? ((cp), (n), ERR) : add_wchnstr(cp, n))
766 (move(y, x) ? ((cp), ERR) : add_wchstr(cp))
780 (move(y, x) ? (s, n, ERR) : addnstr(s, n))
783 (move(y, x) ? (s, ERR) : addstr(s))
795 (move(y, x) ? (wcs, n, ERR) : addnwstr(wcs, n))
798 (move(y, x) ? (wcs, ERR) : addwstr(wcs))
844 (move(y, x) ? (n, a, co, p, ERR) : chgat(n, a, co, p))
861 #define mvdelch(y, x) (move(y, x) ? ERR : delch())
882 #define mvgetch(y, x) (move(y, x) ? ERR : getch())
888 (move(y, x) ? (wcp, ERR) : get_wch(wcp))
896 (move(y, x) ? (s, n, ERR) : getnstr(s, n))
899 (move(y, x) ? (s, ERR) : getstr(s))
911 (move(y, x) ? (wcs, n, ERR) : getn_wstr(wcs, n))
914 (move(y, x) ? (wcs, ERR) : get_wstr(wcs))
938 (move(y, x) ? (ch, n, ERR) : hline(ch, n))
941 (move(y, x) ? (ch, n, ERR) : vline(ch, n))
952 (move(y, x) ? (cp, n, ERR) : hline_set(cp, n))
955 (move(y, x) ? (cp, n, ERR) : vline_set(cp, n))
964 #define mvinch(y, x) (move(y, x) ? ERR : inch())
970 (move(y, x) ? (cp, ERR) : in_wch(cp))
978 (move(y, x) ? (chs, n, ERR) : inchnstr(chs, n))
981 (move(y, x) ? (chs, ERR) : inchstr(chs))
993 (move(y, x) ? (cp, n, ERR) : in_wchnstr(cp, n))
996 (move(y, x) ? (cp, ERR) : in_wchstr(cp))
1009 (move(y, x) ? (s, n, ERR) : innstr(s, n))
1012 (move(y, x) ? (s, ERR) : instr(s))
1024 (move(y, x) ? (wcs, n, ERR) : innwstr(wcs, n))
1027 (move(y, x) ? (wcs, ERR) : inwstr(wcs))
1038 #define mvinsch(y, x, ch) (move(y, x) ? (ch, ERR) : insch(ch))
1043 #define mvins_wch(y, x, cp) (move(y, x) ? (cp, ERR) : ins_wch(cp))
1049 #define mvinsnstr(y, x, s, n) (move(y, x) ? (s, n, ERR) : insnstr(s, n))
1050 #define mvinsstr(y, x, s) (move(y, x) ? (s, ERR) : insstr(s))
1061 (move(y, x) ? (wcs, n, ERR) : ins_nwstr(wcs, n))
1063 #define mvins_wstr(y, x, wcs) (move(y, x) ? (wcs, ERR) : ins_wstr(wcs))
1072 #define move(y, x) wmove(stdscr, y, x) macro