from              615 lib/search/regex.c mc_search_regex__process_append_str (GString *dest_str, const char *from, gsize len,
from              622 lib/search/regex.c         len = strlen (from);
from              626 lib/search/regex.c         g_string_append_len (dest_str, from, len);
from              635 lib/search/regex.c         s = mc_search__get_one_symbol (NULL, from + loop, len - loop, NULL);
from              670 lib/search/regex.c mc_search_regex__process_escape_sequence (GString *dest_str, const char *from, gsize len,
from              678 lib/search/regex.c         len = strlen (from);
from              682 lib/search/regex.c     if (from[i] == '{')
from              687 lib/search/regex.c     if (from[i] == 'x')
from              690 lib/search/regex.c         if (i < len && from[i] == '{')
from              694 lib/search/regex.c             if (from[i] >= '0' && from[i] <= '9')
from              695 lib/search/regex.c                 c = c * 16 + from[i] - '0';
from              696 lib/search/regex.c             else if (from[i] >= 'a' && from[i] <= 'f')
from              697 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'a';
from              698 lib/search/regex.c             else if (from[i] >= 'A' && from[i] <= 'F')
from              699 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'A';
from              704 lib/search/regex.c     else if (from[i] >= '0' && from[i] <= '7')
from              705 lib/search/regex.c         for (; i < len && from[i] >= '0' && from[i] <= '7'; i++)
from              706 lib/search/regex.c             c = c * 8 + from[i] - '0';
from              709 lib/search/regex.c         switch (from[i])
from              733 lib/search/regex.c             mc_search_regex__process_append_str (dest_str, from, len, replace_flags);
from              588 lib/strutil.h  str_replace (char *s, char from, char to)
from              592 lib/strutil.h          if (*s == from)
from              586 lib/util.c     load_mc_home_file (const char *from, const char *filename, char **allocated_filename,
from              593 lib/util.c         hintfile_base = g_build_filename (from, filename, (char *) NULL);
from              203 lib/util.h     char *load_mc_home_file (const char *from, const char *filename, char **allocated_filename,
from              151 lib/vfs/xdirentry.h     int (*linear_start) (struct vfs_class *me, vfs_file_handler_t *fh, off_t from);
from             1498 src/vfs/ftpfs/ftpfs.c         struct sockaddr_storage from;
from             1499 src/vfs/ftpfs/ftpfs.c         socklen_t fromlen = sizeof (from);
from             1502 src/vfs/ftpfs/ftpfs.c         data = accept (s, (struct sockaddr *) &from, &fromlen);
from               83 src/viewer/hex.c mcview_hex_calculate_boldflag (WView *view, off_t from, struct hexedit_change_node *curr,
from               86 src/viewer/hex.c     return (from == view->hex_cursor)                               ? MARK_CURSOR
from               87 src/viewer/hex.c         : ((curr != NULL && from == curr->offset) || force_changed) ? MARK_CHANGED
from               88 src/viewer/hex.c         : (view->search_start <= from && from < view->search_end)   ? MARK_SELECTED
from              110 src/viewer/hex.c     off_t from;
from              130 src/viewer/hex.c     from = view->dpy_start;
from              133 src/viewer/hex.c         if (from >= view->bytes_per_line)
from              136 src/viewer/hex.c             from -= view->bytes_per_line;
from              138 src/viewer/hex.c         if (view->bytes_per_line == 4 && from >= view->bytes_per_line)
from              141 src/viewer/hex.c             from -= view->bytes_per_line;
from              145 src/viewer/hex.c     while (curr != NULL && (curr->offset < from))
from              148 src/viewer/hex.c     for (; mcview_get_byte (view, from, NULL) && row < r->lines; row++)
from              158 src/viewer/hex.c             g_snprintf (hex_buff, sizeof (hex_buff), "%08" PRIXMAX " ", (uintmax_t) from);
from              166 src/viewer/hex.c         for (bytes = 0; bytes < view->bytes_per_line; bytes++, from++)
from              196 src/viewer/hex.c                         if (mcview_get_byte (view, from + j, &res))
from              203 src/viewer/hex.c                         if (curr != NULL && from + j == curr->offset)
from              209 src/viewer/hex.c                         if (curr != NULL && from + j >= curr->offset)
from              237 src/viewer/hex.c                 if (curr != NULL && from == curr->offset)
from              242 src/viewer/hex.c             if (!mcview_get_byte (view, from, &c))
from              246 src/viewer/hex.c             if (from == view->hex_cursor && !view->hexview_in_text)
from              253 src/viewer/hex.c             boldflag_byte = mcview_hex_calculate_boldflag (view, from, curr, FALSE);
from              254 src/viewer/hex.c             boldflag_char = mcview_hex_calculate_boldflag (view, from, curr, utf8_changed);
from              257 src/viewer/hex.c             if (curr != NULL && from == curr->offset)
from              349 src/viewer/hex.c             if (from == view->hex_cursor && view->hexview_in_text)
from              361 src/viewer/hex.c     view->dpy_end = from;