Lines Matching refs:from
26 in this Software without prior written authorization from the X Consortium.
831 * Must walk the selection list in opposite order from UnsetSelection.
862 _DeleteOrKill(ctx, from, to, kill)
864 XawTextPosition from, to;
869 if (kill && from < to) {
883 salt->s.left = from;
885 salt->contents = (char *)_XawTextGetSTRING(ctx, from, to);
917 if (_XawTextReplace(ctx, from, to, &text)) {
921 ctx->text.insertPos = from;
933 XawTextPosition from, to;
950 from = to;
954 from = ctx->text.insertPos;
956 _DeleteOrKill(ctx, from, to, kill);
1771 XrmValue from, to;
1772 from.size = strlen(from.addr = params[0]);
1773 XtConvert( w, XtRString, &from, XtRBoolean, &to );
1833 /* StripOutOldCRs() - called from FormRegion
1835 * removes CRs in widget ctx, from from to to.
1841 StripOutOldCRs(ctx, from, to)
1843 XawTextPosition from, to;
1866 eop_begin = eop_end = startPos = endPos = from;
1930 /* InsertNewCRs() - called from FormRegion
1935 InsertNewCRs(ctx, from, to)
1937 XawTextPosition from, to;
1957 startPos = from;
2005 FormRegion(ctx, from, to)
2007 XawTextPosition from, to;
2009 if ( from >= to ) return XawEditDone;
2011 if ( ( to = StripOutOldCRs( ctx, from, to ) ) == XawReplaceError )
2019 InsertNewCRs(ctx, from, to);
2038 XawTextPosition from, to;
2042 from = SrcScan( ctx->text.source, ctx->text.insertPos,
2044 to = SrcScan( ctx->text.source, from,
2047 if ( FormRegion( ctx, from, to ) == XawReplaceError )