Lines Matching defs:replace
607 * replace_active - state of the sensitivity for the replace button
924 * the replace dialog box uses
932 * Text Widget that will replace a string in the main Text Widget.
960 * dialog's text widget with the one in the replace dialog's text widget.
980 * text widget with the one in the replace dialog's text widget.
995 * once_only - if True then only replace the first one found,
996 * else replace all of them
1010 XawTextBlock find, replace;
1023 replace.ptr = GetStringRaw(search->rep_text);
1024 replace.firstPos = 0;
1025 if ((replace.format = (unsigned long)_XawTextFormat(ctx)) == XawFmtWide)
1026 replace.length = (int)wcslen((wchar_t*)replace.ptr);
1028 replace.length = (int)strlen(replace.ptr);
1102 if (XawTextReplace(tw, pos, end_pos, &replace) != XawEditDone) {
1113 ipos = pos + replace.length;
1132 if (replace.length == 0)
1135 XawTextSetSelection(tw, pos, pos + replace.length);