Home
last modified time | relevance | path

Searched refs:MvAddCh (Results 1 – 13 of 13) sorted by relevance

/dports/devel/ncurses/ncurses-6.3/test/
H A Drain.c122 MvAddCh(drop->y, drop->x, '.'); in part1()
128 MvAddCh(drop->y, drop->x, 'o'); in part2()
134 MvAddCh(drop->y, drop->x, 'O'); in part3()
140 MvAddCh(drop->y - 1, drop->x, '-'); in part4()
142 MvAddCh(drop->y + 1, drop->x, '-'); in part4()
148 MvAddCh(drop->y - 2, drop->x, '-'); in part5()
152 MvAddCh(drop->y + 2, drop->x, '-'); in part5()
158 MvAddCh(drop->y - 2, drop->x, ' '); in part6()
162 MvAddCh(drop->y + 2, drop->x, ' '); in part6()
H A Dxmas.c177 MvAddCh(x, 7, '|'); in boxit()
184 MvAddCh(19, x, '_'); in boxit()
191 MvAddCh(22, x, '_'); in boxit()
201 MvAddCh(4, 1, 'S'); in seas()
202 MvAddCh(6, 1, 'E'); in seas()
203 MvAddCh(8, 1, 'A'); in seas()
204 MvAddCh(10, 1, 'S'); in seas()
216 MvAddCh(3, 5, 'G'); in greet()
217 MvAddCh(5, 5, 'R'); in greet()
218 MvAddCh(7, 5, 'E'); in greet()
[all …]
H A Dhanoi.c143 MvAddCh(Line, LEFTPEG, ' '); in DisplayTiles()
144 MvAddCh(Line, MIDPEG, ' '); in DisplayTiles()
145 MvAddCh(Line, RIGHTPEG, ' '); in DisplayTiles()
147 MvAddCh(BASELINE, LEFTPEG, '1'); in DisplayTiles()
148 MvAddCh(BASELINE, MIDPEG, '2'); in DisplayTiles()
149 MvAddCh(BASELINE, RIGHTPEG, '3'); in DisplayTiles()
H A Dgdc.c94 MvAddCh(YBASE - 1, XBASE - 1, ACS_ULCORNER); in drawbox()
96 MvAddCh(YBASE - 1, XBASE + XLENGTH, ACS_URCORNER); in drawbox()
98 MvAddCh(YBASE + YDEPTH, XBASE - 1, ACS_LLCORNER); in drawbox()
108 MvAddCh(YBASE + YDEPTH, XBASE + XLENGTH, ACS_LRCORNER); in drawbox()
H A Dtest_addwstr.c53 #undef MvAddCh
182 MvAddCh(int y, int x, chtype ch) in MvAddCh() function
389 MvAddCh(row2, col2, (chtype) buffer[col]); in recursive_test()
441 MvAddCh(limit + row, col, (chtype) ch); in recursive_test()
H A Dtest_add_wchstr.c53 #undef MvAddCh
259 MvAddCh(int y, int x, chtype ch) in MvAddCh() function
467 MvAddCh(row2, col2, (chtype) buffer[col]); in recursive_test()
516 MvAddCh(limit + row, col, (chtype) ch); in recursive_test()
H A Dtest_addstr.c296 MvAddCh(row2, col2, UChar(buffer[col])); in recursive_test()
349 MvAddCh(limit + row, col, UChar(ch)); in recursive_test()
H A Dlrtest.c55 MvAddCh(m->y, m->x, m->value); in show()
H A Dtest_addchstr.c378 MvAddCh(row2, col2, UChar(buffer[col])); in recursive_test()
434 MvAddCh(limit + row, col, UChar(ch)); in recursive_test()
H A Dtclock.c48 MvAddCh(y, x, (chtype) col); in plot()
H A Dncurses.c3732 MvAddCh(0, COLS / 2, colored_chtype(ACS_TTEE, attr, pair)); in show_box_chars()
3733 MvAddCh(LINES / 2, COLS / 2, colored_chtype(ACS_PLUS, attr, pair)); in show_box_chars()
4790 MvAddCh(ul.y - 1, lr.x - 1, onoff ? ACS_ULCORNER : ' '); in outerbox()
4791 MvAddCh(ul.y - 1, lr.x + 1, onoff ? ACS_URCORNER : ' '); in outerbox()
4792 MvAddCh(lr.y + 1, lr.x + 1, onoff ? ACS_LRCORNER : ' '); in outerbox()
4793 MvAddCh(lr.y + 1, ul.x - 1, onoff ? ACS_LLCORNER : ' '); in outerbox()
4818 MvAddCh(ul.y - 1, ul.x - 1, ACS_ULCORNER); in getwindow()
5784 MvAddCh(top_y - 1, top_x - 1, ACS_ULCORNER); in panner()
5822 MvAddCh(top_y - 1, portx - 1, ACS_URCORNER); in panner()
5823 MvAddCh(porty - 1, top_x - 1, ACS_LLCORNER); in panner()
[all …]
H A Dbs.c376 MvAddCh(PYBASE + i, PXBASE - 3, (chtype) (i + 'A')); in initgame()
394 MvAddCh(CYBASE + i, CXBASE - 3, (chtype) (i + 'A')); in initgame()
H A Dtest.priv.h1197 #define MvAddCh(y,x,c) (void) mvaddch((y),(x),(chtype)(c)) macro