Searched refs:_line (Results 1 - 25 of 59) sorted by relevance

123

/freebsd-current/contrib/ncurses/ncurses/base/
H A Dlib_winch.c50 returnChtype((chtype) CharOf(win->_line[win->_cury].text[win->_curx])
51 | AttrOf(win->_line[win->_cury].text[win->_curx]));
H A Dlib_box.c111 SetChar2(win->_line[0].text[i], wts);
112 SetChar2(win->_line[endy].text[i], wbs);
114 win->_line[endy].firstchar = win->_line[0].firstchar = 0;
115 win->_line[endy].lastchar = win->_line[0].lastchar = endx;
119 if (endx > 0 && isWidecExt(win->_line[i].text[endx])) {
120 SetChar2(win->_line[i].text[endx - 1], ' ');
123 SetChar2(win->_line[i].text[0], wls);
124 SetChar2(win->_line[
[all...]
H A Dlib_scroll.c89 memcpy(win->_line[line].text,
90 win->_line[line + n].text,
92 if_USE_SCROLL_HINTS(win->_line[line].oldindex =
93 win->_line[line + n].oldindex);
98 win->_line[line].text[j] = blank;
99 if_USE_SCROLL_HINTS(win->_line[line].oldindex = _NEWINDEX);
107 memcpy(win->_line[line].text,
108 win->_line[line + n].text,
110 if_USE_SCROLL_HINTS(win->_line[line].oldindex =
111 win->_line[lin
[all...]
H A Dlib_touch.c61 returnCode(win->_line[line].firstchar != _NOCHANGE ? TRUE : FALSE);
73 if (win->_line[i].firstchar != _NOCHANGE)
92 win->_line[i].firstchar = (NCURSES_SIZE_T) (changed ? 0 : _NOCHANGE);
93 win->_line[i].lastchar = (NCURSES_SIZE_T) (changed
H A Dlib_window.c75 win->_line[i].text = &(orig->_line[y++].text[x]);
111 int left = wp->_line[y].firstchar;
113 struct ldat *line = &(pp->_line[wp->_pary + y]);
115 int right = wp->_line[y].lastchar + wp->_parx;
147 if (pp->_line[win->_pary + y].firstchar >= 0) { /* parent changed */
148 struct ldat *line = &(win->_line[y]);
150 int left = pp->_line[win->_pary + y].firstchar - win->_parx;
151 int right = pp->_line[win->_pary + y].lastchar - win->_parx;
246 memcpy(nwin->_line[
[all...]
H A Dlib_erase.c64 start = win->_line[y].text;
88 win->_line[y].firstchar = 0;
89 win->_line[y].lastchar = win->_maxx;
H A Dwresize.c56 struct ldat *pline = cmp->_line;
94 tst->_line[row].text = &pline[tst->_pary + row].text[tst->_parx];
148 pline = win->_parent->_line;
183 && isWidecBase(win->_line[row].text[col])) {
188 ? win->_line[row].text[col]
192 s = win->_line[row].text;
209 new_lines[row].firstchar = win->_line[row].firstchar;
210 new_lines[row].lastchar = win->_line[row].lastchar;
230 FreeAndNull(win->_line[row].text);
234 FreeAndNull(win->_line[ro
[all...]
H A Dlib_overlay.c192 if ((CharOf(src->_line[sy].text[sx]) != L(' ')) &&
193 (!CharEq(dst->_line[dy].text[dx],
194 src->_line[sy].text[sx]))) {
195 dst->_line[dy].text[dx] =
196 src->_line[sy].text[sx];
197 SetAttr(dst->_line[dy].text[dx],
198 ((AttrOf(src->_line[sy].text[sx]) &
203 if (!CharEq(dst->_line[dy].text[dx],
204 src->_line[sy].text[sx])) {
205 dst->_line[d
[all...]
H A Dlib_newwin.c121 FreeIfNeeded(win->_line[i].text);
123 free(win->_line);
167 win->_line[i].text = typeCalloc(NCURSES_CH_T, (unsigned) num_columns);
168 if (win->_line[i].text == 0) {
172 for (ptr = win->_line[i].text;
173 ptr < win->_line[i].text + num_columns;
237 win->_line[i].text = &orig->_line[begy++].text[begx];
292 if ((win->_line = typeCalloc(struct ldat, ((unsigned) num_lines))) == 0) {
341 * win->_line[
[all...]
H A Dlib_pad.c65 if_USE_SCROLL_HINTS(win->_line[i].oldindex = _NEWINDEX);
66 if ((win->_line[i].text = typeCalloc(NCURSES_CH_T, ((size_t) c))) == 0) {
70 for (ptr = win->_line[i].text; ptr < win->_line[i].text + c; ptr++)
228 register struct ldat *nline = &NewScreen(sp)->_line[m];
229 register struct ldat *oline = &win->_line[i];
257 register struct ldat *pline = &CurScreen(sp)->_line[nind];
282 for (i = pminrow - 1; (i >= 0) && (win->_line[i].oldindex >= 0); i--)
283 win->_line[i].oldindex = _NEWINDEX;
285 && (win->_line[
[all...]
H A Dlib_redrawln.c78 len *= sizeof(CurScreen(sp)->_line[0].text[0]);
83 memset(CurScreen(sp)->_line[crow].text + win->_begx, 0, len);
H A Dlib_inchstr.c59 NCURSES_CH_T *text = win->_line[row].text;
H A Dlib_clrbot.c62 struct ldat *line = &(win->_line[y]);
H A Dlib_clreol.c79 line = &win->_line[y];
H A Dlib_chgat.c66 struct ldat *line = &(win->_line[win->_cury]);
H A Dlib_delch.c55 struct ldat *line = &(win->_line[win->_cury]);
/freebsd-current/contrib/ncurses/ncurses/widechar/
H A Dlib_box_set.c95 win->_line[0].text[i] = wts;
96 win->_line[endy].text[i] = wbs;
98 win->_line[endy].firstchar = win->_line[0].firstchar = 0;
99 win->_line[endy].lastchar = win->_line[0].lastchar = endx;
102 win->_line[i].text[0] = wls;
103 win->_line[i].text[endx] = wrs;
104 win->_line[i].firstchar = 0;
105 win->_line[
[all...]
H A Dlib_in_wch.c58 *wcval = win->_line[row].text[col];
H A Dlib_hline_set.c53 struct ldat *line = &(win->_line[win->_cury]);
H A Dlib_vline_set.c68 struct ldat *line = &(win->_line[end]);
H A Dlib_in_wchnstr.c59 src = &(win->_line[row].text[col]);
/freebsd-current/contrib/ncurses/ncurses/trace/
H A Dlib_tracedmp.c59 if (CharOf(win->_line[i].text[j]) != L(' ')
60 || AttrOf(win->_line[i].text[j]) != A_NORMAL
61 || GetPair(win->_line[i].text[j]) != 0) {
88 chtype test = (chtype) CharOf(win->_line[n].text[j]);
91 && (win->_line[n].text[j].chars[1] == 0)
102 (long) win->_line[n].firstchar,
103 (long) win->_line[n].lastchar,
110 if (WidecExt(win->_line[n].text[j]) != 0) {
117 int test = WidecExt(win->_line[n].text[j]);
133 if (GetPair(win->_line[
[all...]
/freebsd-current/contrib/ee/
H A Dnew_curse.h153 struct _line { struct
154 struct _line *next_screen;
155 struct _line *prev_screen;
164 struct _line *top_of_win;
178 struct _line *first_line;
179 struct _line **line_array;
201 extern struct _line *Screenalloc P_((int columns));
206 extern void clear_line P_((struct _line *line, int column, int cols));
243 extern int Comp_line P_((struct _line *line1, struct _line *line
[all...]
/freebsd-current/contrib/ntp/libntp/lib/isc/pthreads/include/isc/
H A Dmutex.h130 isc_mutex_init_profile(isc_mutex_t *mp, const char * _file, int _line);
132 isc_mutex_lock_profile(isc_mutex_t *mp, const char * _file, int _line);
134 isc_mutex_unlock_profile(isc_mutex_t *mp, const char * _file, int _line);
/freebsd-current/libexec/rc/rc.d/
H A Dbluetooth47 local _err _file _line _namespace
61 while read _line
63 case "$_line" in
69 if [ -z "$_line" ]; then
74 if expr "$_line" : "[a-zA-Z0-9_]*=" > /dev/null 2>&1; then
75 eval "${_namespace}${_line}"
77 warn "Unable to parse line \"$_line\" in $_file"

Completed in 112 milliseconds

123