Lines Matching defs:first
458 * possible cursor positions (one before the first character and
475 XawTextPosition first, first_eol_position;
503 piece = FindPiece(src, position, &first);
507 ptr = (position - first) + piece->text;
609 XawTextPosition first;
650 piece = FindPiece(src, position, &first);
651 ptr = (position - first) + piece->text;
1033 XawTextPosition first;
1040 for (first = 0, piece = src->multi_src.first_piece ; piece != NULL;
1041 first += piece->used, piece = piece->next)
1042 (void) wcsncpy( wc_string + first, piece->text, piece->used );
1152 * .string first check .allocated_string and free it - plumbing Sheeran.
1335 MultiPiece * next, * first = src->multi_src.first_piece;
1337 if (first->prev != NULL)
1340 for ( ; first != NULL ; first = next ) {
1341 next = first->next;
1342 RemovePiece(src, first);
1376 * RETURNED first - the position of the first character in this piece.
1381 FindPiece(src, position, first)
1383 XawTextPosition position, *first;
1389 *first = temp;