Lines Matching defs:frow
48 0, /* frow */
142 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf)
146 /* int frow; first row relative to form origin */
154 if (rows > 0 && cols > 0 && frow >= 0 && fcol >= 0 && nrow >= 0 &&
160 f->frow = frow;
189 dup_field(FIELD *field, int frow, int fcol)
192 /* int frow; first row relative to form origin */
198 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) {
201 f->frow = frow;
238 link_field(FIELD *field, int frow, int fcol)
241 /* int frow; first row relative to form origin */
246 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) {
249 f->frow = frow;
310 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol,
316 /* int *frow; first row relative to form origin */
326 *frow = f->frow;
383 move_field(FIELD *f, int frow, int fcol)
386 /* int frow; first row relative to form origin */
389 if (! f || frow < 0 || fcol < 0)
395 f->frow = frow;