Lines Matching defs:first
393 * possible cursor positions (one before the first character and
410 XawTextPosition first, first_eol_position;
437 piece = FindPiece(src, position, &first);
445 ptr = (position - first) + piece->text;
543 XawTextPosition first;
556 piece = FindPiece(src, position, &first);
557 ptr = (position - first) + piece->text;
878 XawTextPosition first;
883 for (first = 0, piece = src->ascii_src.first_piece ; piece != NULL;
884 first += piece->used, piece = piece->next)
885 strncpy(string + first, piece->text, piece->used);
1093 Piece * next, * first = src->ascii_src.first_piece;
1095 if (first->prev != NULL)
1098 for ( ; first != NULL ; first = next ) {
1099 next = first->next;
1100 RemovePiece(src, first);
1134 * RETURNED first - the position of the first character in this piece.
1139 FindPiece(src, position, first)
1141 XawTextPosition position, *first;
1147 *first = temp;