e 999 lib/strutil/strutil.c strtol_error_t e; e 1001 lib/strutil/strutil.c e = xstrtoumax (str, &suffix, 10, &n, "bcEGkKMPTwYZ0"); e 1002 lib/strutil/strutil.c if (e == LONGINT_INVALID_SUFFIX_CHAR && *suffix == 'x') e 1015 lib/strutil/strutil.c else if (e != LONGINT_OK) e 154 lib/tty/win.c const char *e = getenv ("RXVT_EXT"); e 155 lib/tty/win.c rxvt_extensions = ((e != NULL) && (strcmp (e, "1.0") == 0)); e 998 lib/vfs/direntry.c const struct vfs_s_entry *e = (const struct vfs_s_entry *) a; e 1001 lib/vfs/direntry.c return strcmp (e->name, name); e 1067 lib/widget/input_complete.c GList *e; e 1071 lib/widget/input_complete.c for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data)); e 1072 lib/widget/input_complete.c e != NULL; i++, e = g_list_next (e)) e 1074 lib/widget/input_complete.c WLEntry *le = LENTRY (e->data); e 1105 lib/widget/input_complete.c GList *e; e 1125 lib/widget/input_complete.c for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data)); e 1126 lib/widget/input_complete.c e != NULL; i++, e = g_list_next (e)) e 1128 lib/widget/input_complete.c WLEntry *le = LENTRY (e->data); e 159 lib/widget/listbox-window.c WLEntry *e; e 160 lib/widget/listbox-window.c e = listbox_get_nth_item (l->list, l->list->pos); e 161 lib/widget/listbox-window.c if (e != NULL) e 165 lib/widget/listbox-window.c g_assert (!e->free_data); e 166 lib/widget/listbox-window.c val = e->data; e 78 lib/widget/listbox.c WLEntry *e = data; e 80 lib/widget/listbox.c g_free (e->text); e 81 lib/widget/listbox.c if (e->free_data) e 82 lib/widget/listbox.c g_free (e->data); e 83 lib/widget/listbox.c g_free (e); e 175 lib/widget/listbox.c WLEntry *e = LENTRY (le->data); e 177 lib/widget/listbox.c text = e->text; e 206 lib/widget/listbox.c WLEntry *e = LENTRY (le->data); e 208 lib/widget/listbox.c if (e->hotkey == key) e 364 lib/widget/listbox.c listbox_append_item (WListbox * l, WLEntry * e, listbox_append_t pos) e 375 lib/widget/listbox.c g_queue_push_tail (l->list, e); e 379 lib/widget/listbox.c g_queue_insert_before (l->list, g_queue_peek_nth_link (l->list, (guint) l->pos), e); e 383 lib/widget/listbox.c g_queue_insert_after (l->list, g_queue_peek_nth_link (l->list, (guint) l->pos), e); e 387 lib/widget/listbox.c g_queue_insert_sorted (l->list, e, (GCompareDataFunc) listbox_entry_cmp, NULL); e 587 lib/widget/listbox.c WLEntry *e = LENTRY (le->data); e 589 lib/widget/listbox.c if (strcmp (e->text, text) == 0) e 612 lib/widget/listbox.c WLEntry *e = LENTRY (le->data); e 614 lib/widget/listbox.c if (e->data == data) e 698 lib/widget/listbox.c WLEntry *e = NULL; e 702 lib/widget/listbox.c e = listbox_get_nth_item (l, l->pos); e 704 lib/widget/listbox.c ok = (e != NULL); e 707 lib/widget/listbox.c *string = ok ? e->text : NULL; e 710 lib/widget/listbox.c *extra = ok ? e->data : NULL; e 220 src/editor/edit-impl.h void edit_move_to_line (WEdit * e, long line); e 221 src/editor/edit-impl.h void edit_move_display (WEdit * e, long line); e 1678 src/editor/edit.c edit_print_string (WEdit * e, const char *s) e 1683 src/editor/edit.c edit_execute_cmd (e, CK_InsertChar, (unsigned char) s[i++]); e 1684 src/editor/edit.c e->force |= REDRAW_COMPLETELY; e 1685 src/editor/edit.c edit_update_screen (e); e 2234 src/editor/edit.c WEdit *e; e 2236 src/editor/edit.c e = g_malloc0 (sizeof (WEdit)); e 2237 src/editor/edit.c *WIDGET (e) = *w; e 2239 src/editor/edit.c e->fullscreen = edit->fullscreen; e 2240 src/editor/edit.c e->loc_prev = edit->loc_prev; e 2242 src/editor/edit.c if (edit_init (e, &w->rect, filename_vpath, line) == NULL) e 2244 src/editor/edit.c g_free (e); e 2249 src/editor/edit.c memcpy (edit, e, sizeof (*edit)); e 2250 src/editor/edit.c g_free (e); e 3017 src/editor/edit.c edit_move_to_line (WEdit * e, long line) e 3019 src/editor/edit.c if (line < e->buffer.curs_line) e 3020 src/editor/edit.c edit_move_up (e, e->buffer.curs_line - line, FALSE); e 3022 src/editor/edit.c edit_move_down (e, line - e->buffer.curs_line, FALSE); e 3023 src/editor/edit.c edit_scroll_screen_over_cursor (e); e 3030 src/editor/edit.c edit_move_display (WEdit * e, long line) e 3032 src/editor/edit.c if (line < e->start_line) e 3033 src/editor/edit.c edit_scroll_upward (e, e->start_line - line); e 3035 src/editor/edit.c edit_scroll_downward (e, line - e->start_line); e 1818 src/editor/editcmd.c int e; e 1846 src/editor/editcmd.c e = system (tmp); e 1848 src/editor/editcmd.c if (e != 0) e 1850 src/editor/editcmd.c if (e == -1 || e == 127) e 1856 src/editor/editcmd.c sprintf (q, "%d ", e); e 1891 src/editor/editcmd.c int e; e 1906 src/editor/editcmd.c e = system (tmp); e 1910 src/editor/editcmd.c if (e != 0) e 276 src/editor/editcomplete.c WEdit *e; e 281 src/editor/editcomplete.c e = (WEdit *) ww; e 283 src/editor/editcomplete.c if (e == edit) e 288 src/editor/editcomplete.c last_byte = e->buffer.size; e 289 src/editor/editcomplete.c esm.edit = e; e 329 src/editor/editwidget.c WEdit *e = (WEdit *) w->data; e 332 src/editor/editwidget.c if (e->filename_vpath == NULL) e 333 src/editor/editwidget.c fname = g_strdup_printf ("%c [%s]", e->modified ? '*' : ' ', _("NoName")); e 336 src/editor/editwidget.c g_strdup_printf ("%c%s", e->modified ? '*' : ' ', e 337 src/editor/editwidget.c vfs_path_as_str (e->filename_vpath)); e 340 src/editor/editwidget.c str_term_trim (fname, WIDGET (listbox->list)->rect.cols - 2), e, e 624 src/editor/editwidget.c WEdit *e = NULL; e 635 src/editor/editwidget.c e = (WEdit *) l->data; e 637 src/editor/editwidget.c if (e->drag_state != MCEDIT_DRAG_NONE) e 639 src/editor/editwidget.c edit_restore_size (e); e 646 src/editor/editwidget.c if (e->modified) e 652 src/editor/editwidget.c e = (WEdit *) me->data; e 654 src/editor/editwidget.c widget_select (WIDGET (e)); e 656 src/editor/editwidget.c if (!edit_ok_to_exit (e)) e 893 src/editor/editwidget.c WEdit *e = (WEdit *) top->data; e 898 src/editor/editwidget.c widget_select (WIDGET (e)); e 903 src/editor/editwidget.c edit_toggle_fullscreen (e); e 942 src/editor/editwidget.c WEdit *e = (WEdit *) w; e 947 src/editor/editwidget.c edit_set_buttonbar (e, find_buttonbar (DIALOG (w->owner))); e 951 src/editor/editwidget.c e->force |= REDRAW_COMPLETELY; e 952 src/editor/editwidget.c edit_update_screen (e); e 961 src/editor/editwidget.c if (macro_index == -1 && edit_execute_macro (e, parm)) e 963 src/editor/editwidget.c edit_update_screen (e); e 966 src/editor/editwidget.c else if (edit_translate_key (e, parm, &cmd, &ch)) e 968 src/editor/editwidget.c edit_execute_key_command (e, cmd, ch); e 969 src/editor/editwidget.c edit_update_screen (e); e 978 src/editor/editwidget.c edit_execute_key_command (e, parm, -1); e 979 src/editor/editwidget.c edit_update_screen (e); e 986 src/editor/editwidget.c y = (e->fullscreen ? 0 : 1) + EDIT_TEXT_VERTICAL_OFFSET + e->curs_row; e 987 src/editor/editwidget.c x = (e->fullscreen ? 0 : 1) + EDIT_TEXT_HORIZONTAL_OFFSET + option_line_state_width + e 988 src/editor/editwidget.c e->curs_col + e->start_col + e->over_col; e 995 src/editor/editwidget.c edit_update_screen (e); e 999 src/editor/editwidget.c edit_clean (e); e 1325 src/editor/editwidget.c edit_update_screen (WEdit * e) e 1327 src/editor/editwidget.c edit_scroll_screen_over_cursor (e); e 1328 src/editor/editwidget.c edit_update_curs_col (e); e 1329 src/editor/editwidget.c edit_status (e, widget_get_state (WIDGET (e), WST_FOCUSED)); e 1333 src/editor/editwidget.c e->force |= REDRAW_PAGE; e 1336 src/editor/editwidget.c if ((e->force & REDRAW_COMPLETELY) != 0) e 1337 src/editor/editwidget.c e->force |= REDRAW_PAGE; e 1338 src/editor/editwidget.c edit_render_keypress (e); e 1341 src/editor/editwidget.c widget_draw (WIDGET (find_buttonbar (DIALOG (WIDGET (e)->owner)))); e 397 src/editor/syntax.c off_t e; e 401 src/editor/syntax.c && r->right->len != 0 && (e = e 407 src/editor/syntax.c _rule.end = e; e 442 src/editor/syntax.c off_t e = -1; e 447 src/editor/syntax.c e = compare_word_to_right (edit, i, k->keyword, k->whole_word_chars_left, e 449 src/editor/syntax.c if (e > 0) e 453 src/editor/syntax.c if (e > i + 1 && _rule._context != 0 e 459 src/editor/syntax.c e--; e 462 src/editor/syntax.c end = e; e 463 src/editor/syntax.c _rule.end = e; e 496 src/editor/syntax.c off_t e = -1; e 499 src/editor/syntax.c e = compare_word_to_right (edit, i, r->right, r->whole_word_chars_left, e 502 src/editor/syntax.c if (e >= end) e 504 src/editor/syntax.c _rule.end = e; e 523 src/editor/syntax.c off_t e = -1; e 526 src/editor/syntax.c e = compare_word_to_right (edit, i, r->left, r->whole_word_chars_left, e 528 src/editor/syntax.c if (e >= end && (_rule.keyword == 0 || keyword_foundright)) e 530 src/editor/syntax.c _rule.end = e; e 557 src/editor/syntax.c off_t e = -1; e 563 src/editor/syntax.c e = compare_word_to_right (edit, i, k->keyword, k->whole_word_chars_left, e 565 src/editor/syntax.c if (e > 0) e 567 src/editor/syntax.c _rule.end = e; e 530 src/filemanager/mountlist.c struct vfs_ent *e; e 532 src/filemanager/mountlist.c e = getvfsbytype (t); e 533 src/filemanager/mountlist.c if (!e || !e->vfsent_name) e 536 src/filemanager/mountlist.c return e->vfsent_name; e 240 src/filemanager/treestore.c tree_entry *e; e 278 src/filemanager/treestore.c e = tree_store_add_entry (tmp_vpath); e 280 src/filemanager/treestore.c e->scanned = scanned; e 293 src/filemanager/treestore.c e = tree_store_add_entry (vpath); e 294 src/filemanager/treestore.c e->scanned = scanned; e 130 src/help.c const char *e = start; e 142 src/help.c for (d = local_text; *e; e++) e 144 src/help.c if (*d == *e) e 150 src/help.c result = e + 1; e 169 src/help.c const char *e = start; e 172 src/help.c for (; *e && *e != CHAR_NODE_END; e++) e 174 src/help.c if (*d == *e) e 179 src/help.c return e + 1; e 193 src/help.c const char *e; e 195 src/help.c for (e = start; (*e != '\0') && (*e != CHAR_NODE_END); e += direction) e 196 src/help.c if (*e == the_char) e 197 src/help.c return e; e 86 src/usermenu.c char *e = NULL; e 91 src/usermenu.c e = s; e 92 src/usermenu.c if (IS_PATH_SEP (*s) && e != NULL) e 93 src/usermenu.c e = NULL; /* '.' in *directory* name */ e 96 src/usermenu.c if (e != NULL) e 97 src/usermenu.c *e = '\0'; e 817 src/vfs/extfs/extfs.c const struct vfs_s_entry *e; e 822 src/vfs/extfs/extfs.c for (e = entry; e->dir != NULL; e = e->dir->ent) e 824 src/vfs/extfs/extfs.c g_string_prepend (localpath, e->name); e 825 src/vfs/extfs/extfs.c if (e->dir->ent->dir != NULL) e 855 src/vfs/ftpfs/ftpfs.c int e; e 891 src/vfs/ftpfs/ftpfs.c e = getaddrinfo (host, port, &hints, &res); e 894 src/vfs/ftpfs/ftpfs.c if (e == EAI_BADFLAGS) e 898 src/vfs/ftpfs/ftpfs.c e = getaddrinfo (host, port, &hints, &res); e 904 src/vfs/ftpfs/ftpfs.c if (e != 0) e 907 src/vfs/ftpfs/ftpfs.c vfs_print_message (_("ftpfs: %s"), gai_strerror (e)); e 225 src/vfs/sftpfs/config_parser.c int e; e 227 src/vfs/sftpfs/config_parser.c e = errno; e 231 src/vfs/sftpfs/config_parser.c mc_propagate_error (mcerror, e, e 233 src/vfs/sftpfs/config_parser.c SFTPFS_SSH_CONFIG, strerror (e)); e 108 src/vfs/sftpfs/connection.c int e; e 133 src/vfs/sftpfs/connection.c e = getaddrinfo (super->path_element->host, port, &hints, &res); e 136 src/vfs/sftpfs/connection.c if (e == EAI_BADFLAGS) e 140 src/vfs/sftpfs/connection.c e = getaddrinfo (super->path_element->host, port, &hints, &res); e 144 src/vfs/sftpfs/connection.c if (e != 0) e 146 src/vfs/sftpfs/connection.c mc_propagate_error (mcerror, e, _("sftp: %s"), gai_strerror (e)); e 188 src/viewer/coord_cache.c coord_cache_entry_t *e; e 190 src/viewer/coord_cache.c e = coord_cache_index (cache, i); e 196 src/viewer/coord_cache.c (uintmax_t) e->cc_offset, (uintmax_t) e->cc_line, (uintmax_t) e->cc_column, e 197 src/viewer/coord_cache.c (uintmax_t) e->cc_nroff_column); e 33 tests/lib/search/regex_replace_esc_seq.c #define test_helper_check_valid_data( a, b, c, d, e, f ) \ e 38 tests/lib/search/regex_replace_esc_seq.c ck_assert_msg (e == f, "ret(%d) != %d", e, f); \