Lines Matching defs:from
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)) {
516 ctx->text.insertPos = from;
528 XawTextPosition from, to;
535 from = to;
539 from = ctx->text.insertPos;
541 _DeleteOrKill(ctx, from, to, kill);
1069 XrmValue from, to;
1070 from.size = strlen(from.addr = params[0]);
1071 XtConvert(w, XtRString, &from, XtRBoolean, &to);
1138 * from - starting point.
1144 StripOutOldCRs(ctx, from, to)
1146 XawTextPosition from, to;
1161 eop_begin = eop_end = startPos = endPos = from;
1215 * from, to - the ends of the region.
1220 InsertNewCRs(ctx, from, to)
1222 XawTextPosition from, to;
1234 startPos = from;
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;
1307 from = SrcScan(ctx->text.source, ctx->text.insertPos,
1309 to = SrcScan(ctx->text.source, from,
1312 FormRegion(ctx, from, to);