Home | History | Annotate | Download | only in widgets

Lines Matching defs:first

68 	signed int cursor_offset, underflow, overflow, first;
72 cursor_offset = ( box->string.cursor - box->first );
75 first = box->first;
77 first -= underflow;
78 if ( first < 0 )
79 first = 0;
81 first += overflow;
83 box->first = first;
84 cursor_offset = ( box->string.cursor - first );
89 len = ( strlen ( box->string.buf ) - first );
95 memcpy ( buf, ( box->string.buf + first ), len );