Home
last modified time | relevance | path

Searched refs:OneRow (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libeti/form/common/
H A Dchg_data.c100 if (OneRow(c)) { in _grow_field()
230 if (Opt(c, O_WRAP) && !OneRow(c) && !room_for_char(f) && in wrap_ok()
303 if (at_bottom && (!Status(c, GROWABLE) || OneRow(c))) { in _new_line()
320 if (at_bottom && (!Status(c, GROWABLE) || OneRow(c))) { in _new_line()
360 if (CheckChar(c, ' ') && (room || (OneRow(c) && in _ins_char()
379 if (CheckChar(c, ' ') && !OneRow(c) && (room || Status(c, GROWABLE))) { in _ins_line()
592 if (room || (OneRow(c) && Status(c, GROWABLE))) { in _data_entry()
H A Dutility.c44 OneRow(f) && Opt(f, O_STATIC) && \
157 if (OneRow(c)) { in _pos_form_cursor()
188 if (OneRow(c)) { in _update_current()
448 BOOLEAN onerow = OneRow(f); in _sync_opts()
H A Dform.c316 return (OneRow(C(f)) ? B(f) != 0 : T(f) != 0); in data_behind()
347 if (OneRow(c)) { in data_ahead()
H A Dfield.c347 onerow = OneRow(f); in set_max_field()
H A Dchg_char.c115 if (OneRow(c) && c->dcols != c->cols) { in _next_word()
/illumos-gate/usr/src/lib/libeti/form/inc/
H A Dutility.h142 #define OneRow(f) ((f)->rows + (f)->nrow == 1) macro