Lines Matching defs:to

11 Permission to use, copy, modify, and distribute this software and its 
16 used in advertising or publicity pertaining to distribution of the
35 * that has no dependency on ASCII, please send the code back to us.
268 String *params; /* precedence list of selections to try */
497 _DeleteOrKill(ctx, from, to, kill)
499 XawTextPosition from, to;
505 if (kill && from < to) {
506 ptr = _XawTextGetText(ctx, from, to);
512 if (_XawTextReplace(ctx, from, to, &text)) {
528 XawTextPosition from, to;
531 to = SrcScan(ctx->text.source, ctx->text.insertPos,
535 from = to;
536 to = ctx->text.insertPos;
541 _DeleteOrKill(ctx, from, to, kill);
1058 /* for Crossing events, the default case is to check the focus
1060 * argument of "always" will cause the focus field to be ignored.
1069 XrmValue from, to;
1071 XtConvert(w, XtRString, &from, XtRBoolean, &to);
1072 if (to.addr != NULL) display_caret = *(Boolean*)to.addr;
1095 * The string reset will reset the mutiplication factor to 1.
1139 * to - the ending point
1144 StripOutOldCRs(ctx, from, to)
1146 XawTextPosition from, to;
1170 if (endPos >= to)
1197 if ( !isspace(buf[i]) || ((periodPos + i) >= to) ) {
1203 to -= (i - text.length - 1);
1209 return(to);
1215 * from, to - the ends of the region.
1220 InsertNewCRs(ctx, from, to)
1222 XawTextPosition from, to;
1240 if (eol >= to)
1256 to -= (i - 1);
1270 * from, to - the ends of the region.
1275 FormRegion(ctx, from, to)
1277 XawTextPosition from, to;
1279 if (from >= to) return;
1281 to = StripOutOldCRs(ctx, from, to);
1282 InsertNewCRs(ctx, from, to);
1303 XawTextPosition from, to;
1309 to = SrcScan(ctx->text.source, from,
1312 FormRegion(ctx, from, to);
1318 * Description: Swaps the character to the left of the mark with
1319 * the character to the right of the mark.
1384 * the user or application programmer to unbind a
1444 {"kill-to-end-of-line", (XtActionProc)KillToEndOfLine},
1445 {"kill-to-end-of-paragraph", (XtActionProc)KillToEndOfParagraph},
1478 /* Action to bind special translations for text Dialogs. */