mirror of
https://github.com/MidnightCommander/source.git
synced 2026-02-02 11:11:55 -08:00
41 lines
5.5 KiB
HTML
41 lines
5.5 KiB
HTML
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
|
|
<html xmlns='http://www.w3.org/1999/xhtml'>
|
|
<head>
|
|
<title>compl</title>
|
|
<meta name='robots' content='noindex,nofollow' />
|
|
<meta name='generator' content='GLOBAL-6.6.11' />
|
|
<meta http-equiv='Content-Style-Type' content='text/css' />
|
|
<link rel='stylesheet' type='text/css' href='../style.css' />
|
|
</head>
|
|
<body>
|
|
<pre>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L106'>compl</a> 106 src/editor/editcomplete.c edit_collect_completion_from_one_buffer (gboolean active_buffer, GQueue **compl, mc_search_t *srch,</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L149'>compl</a> 149 src/editor/editcomplete.c if (*compl == NULL)</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L150'>compl</a> 150 src/editor/editcomplete.c *compl = g_queue_new ();</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L155'>compl</a> 155 src/editor/editcomplete.c for (l = g_queue_peek_head_link (*compl); l != NULL; l = g_list_next (l))</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L169'>compl</a> 169 src/editor/editcomplete.c if (!active_buffer && l != g_queue_peek_tail_link (*compl))</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L172'>compl</a> 172 src/editor/editcomplete.c g_queue_unlink (*compl, l);</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L173'>compl</a> 173 src/editor/editcomplete.c g_queue_push_tail_link (*compl, l);</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L194'>compl</a> 194 src/editor/editcomplete.c g_queue_push_tail (*compl, temp);</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L196'>compl</a> 196 src/editor/editcomplete.c g_queue_push_head (*compl, temp);</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L220'>compl</a> 220 src/editor/editcomplete.c GQueue *compl = NULL;</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L253'>compl</a> 253 src/editor/editcomplete.c edit_collect_completion_from_one_buffer (TRUE, &compl, srch, &esm, word_start, word_len,</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L288'>compl</a> 288 src/editor/editcomplete.c edit_collect_completion_from_one_buffer (FALSE, &compl, srch, &esm, word_start,</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L300'>compl</a> 300 src/editor/editcomplete.c return compl;</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L342'>compl</a> 342 src/editor/editcomplete.c edit_completion_dialog_show (const WEdit *edit, GQueue *compl, int max_width)</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L354'>compl</a> 354 src/editor/editcomplete.c compl_dlg_h = g_queue_get_length (compl) + 2;</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L385'>compl</a> 385 src/editor/editcomplete.c for (i = g_queue_peek_tail_link (compl); i != NULL; i = g_list_previous (i))</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L418'>compl</a> 418 src/editor/editcomplete.c GQueue *compl; // completions: list of GString*</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L435'>compl</a> 435 src/editor/editcomplete.c compl = edit_collect_completions (edit, word_start, word_len, match_expr->str, &max_width);</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L439'>compl</a> 439 src/editor/editcomplete.c if (compl == NULL)</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L442'>compl</a> 442 src/editor/editcomplete.c if (g_queue_get_length (compl) == 1)</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L448'>compl</a> 448 src/editor/editcomplete.c curr_compl = (GString *) g_queue_peek_head (compl);</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L458'>compl</a> 458 src/editor/editcomplete.c curr_compl = edit_completion_dialog_show (edit, compl, max_width);</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.c.html#L466'>compl</a> 466 src/editor/editcomplete.c g_queue_free_full (compl, edit_completion_string_free);</span>
|
|
<span class='curline'><a href='../S/src--editor--editcomplete.h.html#L15'>compl</a> 15 src/editor/editcomplete.h MC_MOCKABLE char *edit_completion_dialog_show (const WEdit *edit, GQueue * compl, int max_width);</span>
|
|
<span class='curline'><a href='../S/tests--src--editor--edit_complete_word_cmd.c.html#L99'>compl</a> 99 tests/src/editor/edit_complete_word_cmd.c edit_completion_dialog_show (const WEdit *edit, GQueue *compl, int max_width)</span>
|
|
<span class='curline'><a href='../S/tests--src--editor--edit_complete_word_cmd.c.html#L110'>compl</a> 110 tests/src/editor/edit_complete_word_cmd.c for (i = g_queue_peek_tail_link (compl); i != NULL; i = g_list_previous (i))</span>
|
|
</pre>
|
|
</body>
|
|
</html>
|