Lines Matching refs:ws

940 #define	addnwstr(ws, n)	waddnwstr(stdscr, ws, n)
944 #define addwstr(ws) waddwstr(stdscr, ws)
946 #define getnwstr(ws, n) wgetnwstr(stdscr, ws, n)
948 #define getwstr(ws) wgetwstr(stdscr, ws)
949 #define innwstr(ws, n) winnwstr(stdscr, ws, n)
950 #define insnwstr(ws, n) winsnwstr(stdscr, ws, n)
952 #define inswstr(ws) winswstr(stdscr, ws)
956 #define inwstr(ws) winwstr(stdscr, ws)
1076 #define mvaddnwstr(y, x, ws, n) \
1077 mvwaddnwstr(stdscr, y, x, ws, n)
1084 #define mvaddwstr(y, x, ws) \
1085 mvwaddwstr(stdscr, y, x, ws)
1086 #define mvgetnwstr(y, x, ws, n) \
1087 mvwgetnwstr(stdscr, y, x, ws, n)
1090 #define mvgetwstr(y, x, ws) \
1091 mvwgetwstr(stdscr, y, x, ws)
1092 #define mvinnwstr(y, x, ws, n) \
1093 mvwinnwstr(stdscr, y, x, ws, n)
1094 #define mvinsnwstr(y, x, ws, n) \
1095 mvwinsnwstr(stdscr, y, x, ws, n)
1098 #define mvinswstr(y, x, ws) \
1099 mvwinswstr(stdscr, y, x, ws)
1106 #define mvinwstr(y, x, ws) \
1107 mvwinwstr(stdscr, y, x, ws)
1145 #define mvwaddnwstr(win, y, x, ws, n) \
1146 (wmove(win, y, x) == ERR ? ERR : waddnwstr(win, ws, n))
1153 #define mvwaddwstr(win, y, x, ws) \
1154 (wmove(win, y, x) == ERR ? ERR : waddwstr(win, ws))
1155 #define mvwgetnwstr(win, y, x, ws, n) \
1156 (wmove(win, y, x) == ERR ? ERR : wgetnwstr(win, ws, n))
1159 #define mvwgetwstr(win, y, x, ws) \
1160 (wmove(win, y, x) == ERR ? ERR : wgetwstr(win, ws))
1161 #define mvwinnwstr(win, y, x, ws, n) \
1162 (wmove(win, y, x) == ERR ? ERR : winnwstr(win, ws, n))
1163 #define mvwinsnwstr(win, y, x, ws, n) \
1164 (wmove(win, y, x) == ERR ? ERR : winsnwstr(win, ws, n))
1167 #define mvwinswstr(win, y, x, ws) \
1168 (wmove(win, y, x) == ERR ? ERR : winswstr(win, ws))
1175 #define mvwinwstr(win, y, x, ws) \
1176 (wmove(win, y, x) == ERR ? ERR : winwstr(win, ws))
1180 #define waddwstr(win, ws) waddnwstr(win, ws, -1)
1181 #define winswstr(win, ws) winsnwstr(win, ws, -1)