Searched refs:fcol (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/contrib/ncurses/form/
H A Dfld_move.c40 | Function : int move_field(FIELD *field,int frow, int fcol)
50 move_field(FIELD *field, int frow, int fcol) argument
52 T((T_CALLED("move_field(%p,%d,%d)"), (void *)field, frow, fcol));
54 if (!field || (frow < 0) || (fcol < 0))
61 field->fcol = (short)fcol;
H A Dfld_info.c42 | int *frow, int *fcol,
53 int *frow, int *fcol,
59 (void *)frow, (void *)fcol,
71 if (fcol)
72 *fcol = field->fcol;
51 field_info(const FIELD *field, int *rows, int *cols, int *frow, int *fcol, int *nrow, int *nbuf) argument
H A Dfld_dup.c40 | Function : FIELD *dup_field(FIELD *field, int frow, int fcol)
52 dup_field(FIELD *field, int frow, int fcol) argument
57 T((T_CALLED("dup_field(%p,%d,%d)"), (void *)field, frow, fcol));
58 if (field && (frow >= 0) && (fcol >= 0) &&
65 New_Field->fcol = (short)fcol;
H A Dfld_link.c40 | Function : FIELD *link_field(FIELD *field, int frow, int fcol)
53 link_field(FIELD *field, int frow, int fcol) argument
58 T((T_CALLED("link_field(%p,%d,%d)"), (void *)field, frow, fcol));
59 if (field && (frow >= 0) && (fcol >= 0) &&
66 New_Field->fcol = (short)fcol;
H A Dfld_def.c45 0, /* fcol */
262 | int frow, int fcol,
266 | starting at 'frow/fcol' in the subwindow of the form.
276 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) argument
284 T((T_CALLED("new_field(%d,%d,%d,%d,%d,%d)"), rows, cols, frow, fcol, nrow, nbuf));
288 fcol >= 0 &&
301 New_Field->fcol = (short)fcol;
H A Dfrm_def.c95 (current->fcol < newfield->fcol)))
217 maximum_col_in_field = fields[j]->fcol + fields[j]->cols;
H A Dfrm_driver.c808 && field->fcol <= rx
809 && (field->fcol + field->cols) > rx)
852 field->fcol + form->curcol - form->begincol);
913 field->fcol,
915 field->cols + field->fcol - 1,
975 field->fcol,
977 field->cols + field->fcol - 1,
1149 field->rows, field->cols, field->frow, field->fcol);
1313 field->frow, field->fcol,
1315 field->fcol
3522 int fcol = field->fcol; local
3572 int fcol = field->fcol; local
[all...]
H A Dform.h95 short fcol; /* first col */ member in struct:fieldnode

Completed in 193 milliseconds