Lines Matching defs:first
405 * possible cursor positions (one before the first character and
422 XawTextPosition first, first_eol_position;
449 piece = FindPiece(src, position, &first);
457 ptr = (position - first) + piece->text;
556 XawTextPosition first;
569 piece = FindPiece(src, position, &first);
570 ptr = (position - first) + piece->text;
944 XawTextPosition first;
950 for (first = 0, piece = src->ascii_src.first_piece ; piece != NULL;
951 first += piece->used, piece = piece->next)
952 strncpy(string + first, piece->text, piece->used);
1166 Piece * next, * first = src->ascii_src.first_piece;
1168 if (first->prev != NULL)
1171 for ( ; first != NULL ; first = next ) {
1172 next = first->next;
1173 RemovePiece(src, first);
1207 * RETURNED first - the position of the first character in this piece.
1212 FindPiece(src, position, first)
1214 XawTextPosition position, *first;
1220 *first = temp;