compl             106 src/editor/editcomplete.c edit_collect_completion_from_one_buffer (gboolean active_buffer, GQueue * * compl,
compl             149 src/editor/editcomplete.c         if (*compl== NULL)
compl             150 src/editor/editcomplete.c             *compl = g_queue_new ();
compl             155 src/editor/editcomplete.c             for (l = g_queue_peek_head_link (*compl); l != NULL; l = g_list_next (l))
compl             169 src/editor/editcomplete.c                 if (!active_buffer && l != g_queue_peek_tail_link (*compl))
compl             172 src/editor/editcomplete.c                     g_queue_unlink (*compl, l);
compl             173 src/editor/editcomplete.c                     g_queue_push_tail_link (*compl, l);
compl             194 src/editor/editcomplete.c             g_queue_push_tail (*compl, temp);
compl             196 src/editor/editcomplete.c             g_queue_push_head (*compl, temp);
compl             220 src/editor/editcomplete.c     GQueue *compl = NULL;
compl             253 src/editor/editcomplete.c     edit_collect_completion_from_one_buffer (TRUE, &compl, srch, &esm, word_start, word_len,
compl             288 src/editor/editcomplete.c             edit_collect_completion_from_one_buffer (FALSE, &compl, srch, &esm, word_start,
compl             300 src/editor/editcomplete.c     return compl;
compl             342 src/editor/editcomplete.c edit_completion_dialog_show (const WEdit *edit, GQueue * compl, int max_width)
compl             354 src/editor/editcomplete.c     compl_dlg_h = g_queue_get_length (compl) + 2;
compl             385 src/editor/editcomplete.c     for (i = g_queue_peek_tail_link (compl); i != NULL; i = g_list_previous (i))
compl             418 src/editor/editcomplete.c     GQueue * compl;  // completions: list of GString*
compl             435 src/editor/editcomplete.c     compl = edit_collect_completions (edit, word_start, word_len, match_expr->str, &max_width);
compl             439 src/editor/editcomplete.c     if (compl== NULL)
compl             442 src/editor/editcomplete.c     if (g_queue_get_length (compl) == 1)
compl             448 src/editor/editcomplete.c         curr_compl = (GString *) g_queue_peek_head (compl);
compl             458 src/editor/editcomplete.c         curr_compl = edit_completion_dialog_show (edit, compl, max_width);
compl             466 src/editor/editcomplete.c     g_queue_free_full (compl, edit_completion_string_free);
compl              15 src/editor/editcomplete.h MC_MOCKABLE char *edit_completion_dialog_show (const WEdit *edit, GQueue * compl, int max_width);
compl              99 tests/src/editor/edit_complete_word_cmd.c edit_completion_dialog_show (const WEdit *edit, GQueue * compl, int max_width)
compl             110 tests/src/editor/edit_complete_word_cmd.c         for (i = g_queue_peek_tail_link (compl); i != NULL; i = g_list_previous (i))