Lines Matching defs:right
51 border(chtype left, chtype right, chtype top, chtype bottom, chtype topleft,
54 return wborder(stdscr, left, right, top, bottom, topleft, topright,
66 wborder(WINDOW *win, chtype left, chtype right, chtype top, chtype bottom,
78 if (!(right & __CHARTEXT))
79 right |= ACS_VLINE;
96 __CTRACE(__CTRACE_INPUT, "wborder: right = %c, 0x%x\n",
97 right & __CHARTEXT, right & __ATTRIBUTES);
114 right |= (right & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr;
115 right |= (right & __COLOR) ? (win->battr & ~__COLOR) : win->battr;
138 win->alines[i]->line[endx].ch = (wchar_t) right & __CHARTEXT;
139 win->alines[i]->line[endx].attr = (attr_t) right & __ATTRIBUTES;
176 S(right, rs, WACS_VLINE);
208 cchar_t left, right, bottom, top, topleft, topright, botleft, botright;
219 memcpy(&right, rs, sizeof(cchar_t));
221 memcpy(&right, WACS_VLINE, sizeof(cchar_t));
250 __CTRACE(__CTRACE_INPUT, "wborder_set: right = %c, 0x%x\n",
251 right.vals[0], right.attributes );
270 right.attributes |= (right.attributes & __COLOR) ?
272 right.attributes |= (right.attributes & __COLOR) ?
348 /* right border */
349 cw = wcwidth(right.vals[0]);
354 win->alines[i]->line[j].ch = right.vals[0];
356 win->alines[i]->line[j].attr = right.attributes;
368 if (right.elements > 1) {
369 for (k = 1; k < right.elements; k++) {
373 np->ch = right.vals[ k ];