from              634 lib/search/regex.c mc_search_regex__process_append_str (GString * dest_str, const char *from, gsize len,
from              641 lib/search/regex.c         len = strlen (from);
from              645 lib/search/regex.c         g_string_append_len (dest_str, from, len);
from              654 lib/search/regex.c         s = mc_search__get_one_symbol (NULL, from + loop, len - loop, NULL);
from              689 lib/search/regex.c mc_search_regex__process_escape_sequence (GString * dest_str, const char *from, gsize len,
from              698 lib/search/regex.c         len = strlen (from);
from              702 lib/search/regex.c     if (from[i] == '{')
from              707 lib/search/regex.c     if (from[i] == 'x')
from              710 lib/search/regex.c         if (i < len && from[i] == '{')
from              714 lib/search/regex.c             if (from[i] >= '0' && from[i] <= '9')
from              715 lib/search/regex.c                 c = c * 16 + from[i] - '0';
from              716 lib/search/regex.c             else if (from[i] >= 'a' && from[i] <= 'f')
from              717 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'a';
from              718 lib/search/regex.c             else if (from[i] >= 'A' && from[i] <= 'F')
from              719 lib/search/regex.c                 c = c * 16 + 10 + from[i] - 'A';
from              724 lib/search/regex.c     else if (from[i] >= '0' && from[i] <= '7')
from              725 lib/search/regex.c         for (; i < len && from[i] >= '0' && from[i] <= '7'; i++)
from              726 lib/search/regex.c             c = c * 8 + from[i] - '0';
from              729 lib/search/regex.c         switch (from[i])
from              753 lib/search/regex.c             mc_search_regex__process_append_str (dest_str, from, len, replace_flags);
from              619 lib/strutil.h  str_replace (char *s, char from, char to)
from              623 lib/strutil.h          if (*s == from)
from              599 lib/util.c     load_mc_home_file (const char *from, const char *filename, char **allocated_filename,
from              606 lib/util.c         hintfile_base = g_build_filename (from, filename, (char *) NULL);
from              183 lib/util.h     char *load_mc_home_file (const char *from, const char *filename, char **allocated_filename,
from              148 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               85 src/viewer/hex.c mcview_hex_calculate_boldflag (WView * view, off_t from, struct hexedit_change_node *curr,
from               88 src/viewer/hex.c     return (from == view->hex_cursor) ? MARK_CURSOR
from               89 src/viewer/hex.c         : ((curr != NULL && from == curr->offset) || force_changed) ? MARK_CHANGED
from               90 src/viewer/hex.c         : (view->search_start <= from && from < view->search_end) ? MARK_SELECTED : MARK_NORMAL;
from              111 src/viewer/hex.c     off_t from;
from              130 src/viewer/hex.c     from = view->dpy_start;
from              134 src/viewer/hex.c         if (from >= view->bytes_per_line)
from              137 src/viewer/hex.c             from -= view->bytes_per_line;
from              139 src/viewer/hex.c         if (view->bytes_per_line == 4 && from >= view->bytes_per_line)
from              142 src/viewer/hex.c             from -= view->bytes_per_line;
from              146 src/viewer/hex.c     while (curr && (curr->offset < from))
from              151 src/viewer/hex.c     for (; mcview_get_byte (view, from, NULL) && row < r->lines; row++)
from              161 src/viewer/hex.c             g_snprintf (hex_buff, sizeof (hex_buff), "%08" PRIXMAX " ", (uintmax_t) from);
from              169 src/viewer/hex.c         for (bytes = 0; bytes < view->bytes_per_line; bytes++, from++)
from              200 src/viewer/hex.c                         if (mcview_get_byte (view, from + j, &res))
from              207 src/viewer/hex.c                         if (curr != NULL && from + j == curr->offset)
from              213 src/viewer/hex.c                         if (curr != NULL && from + j >= curr->offset)
from              244 src/viewer/hex.c                 if (curr != NULL && from == curr->offset)
from              249 src/viewer/hex.c             if (!mcview_get_byte (view, from, &c))
from              253 src/viewer/hex.c             if (from == view->hex_cursor && !view->hexview_in_text)
from              260 src/viewer/hex.c             boldflag_byte = mcview_hex_calculate_boldflag (view, from, curr, FALSE);
from              261 src/viewer/hex.c             boldflag_char = mcview_hex_calculate_boldflag (view, from, curr, utf8_changed);
from              264 src/viewer/hex.c             if (curr != NULL && from == curr->offset)
from              361 src/viewer/hex.c             if (from == view->hex_cursor && view->hexview_in_text)
from              373 src/viewer/hex.c     view->dpy_end = from;