compl 108 src/editor/editcomplete.c edit_collect_completion_from_one_buffer (gboolean active_buffer, GQueue **compl, compl 151 src/editor/editcomplete.c if (*compl == NULL) compl 152 src/editor/editcomplete.c *compl = g_queue_new (); compl 157 src/editor/editcomplete.c for (l = g_queue_peek_head_link (*compl); l != NULL; l = g_list_next (l)) compl 171 src/editor/editcomplete.c if (!active_buffer && l != g_queue_peek_tail_link (*compl)) compl 174 src/editor/editcomplete.c g_queue_unlink (*compl, l); compl 175 src/editor/editcomplete.c g_queue_push_tail_link (*compl, l); compl 198 src/editor/editcomplete.c g_queue_push_tail (*compl, temp); compl 200 src/editor/editcomplete.c g_queue_push_head (*compl, temp); compl 224 src/editor/editcomplete.c GQueue *compl = NULL; compl 262 src/editor/editcomplete.c edit_collect_completion_from_one_buffer (TRUE, &compl, srch, &esm, word_start, word_len, compl 298 src/editor/editcomplete.c edit_collect_completion_from_one_buffer (FALSE, &compl, srch, &esm, word_start, compl 310 src/editor/editcomplete.c return compl; compl 357 src/editor/editcomplete.c edit_completion_dialog_show (const WEdit *edit, GQueue *compl, int max_width) compl 369 src/editor/editcomplete.c compl_dlg_h = g_queue_get_length (compl) + 2; compl 400 src/editor/editcomplete.c for (i = g_queue_peek_tail_link (compl); i != NULL; i = g_list_previous (i)) compl 433 src/editor/editcomplete.c GQueue *compl; /* completions: list of GString* */ compl 449 src/editor/editcomplete.c compl = edit_collect_completions (edit, word_start, word_len, match_expr->str, &max_width); compl 453 src/editor/editcomplete.c if (compl == NULL) compl 456 src/editor/editcomplete.c if (g_queue_get_length (compl) == 1) compl 462 src/editor/editcomplete.c curr_compl = (GString *) g_queue_peek_head (compl); compl 472 src/editor/editcomplete.c curr_compl = edit_completion_dialog_show (edit, compl, max_width); compl 480 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 103 tests/src/editor/edit_complete_word_cmd.c edit_completion_dialog_show (const WEdit *edit, GQueue *compl, int max_width) compl 114 tests/src/editor/edit_complete_word_cmd.c for (i = g_queue_peek_tail_link (compl); i != NULL; i = g_list_previous (i))