Home
last modified time | relevance | path

Searched refs:n_completions (Results 1 – 12 of 12) sorted by relevance

/dports/math/gnuplot-lite/gnuplot-5.4.1/src/
H A Dreadline.c637 static int n_completions = 0; in fn_completion() local
648 if (n_completions != 0) { in fn_completion()
651 for (i = 0; i < n_completions; i++) in fn_completion()
654 n_completions = 0; in fn_completion()
712 n_completions = 0; in fn_completion()
725 n_completions++; in fn_completion()
728 if (n_completions == MAX_COMPLETIONS) break; in fn_completion()
733 if (n_completions > 0) in fn_completion()
742 if (n_completions > 0) { in fn_completion()
744 completion_idx = (completion_idx + 1) % n_completions; in fn_completion()
[all …]
/dports/math/gnuplot/gnuplot-5.4.1/src/
H A Dreadline.c637 static int n_completions = 0; in fn_completion() local
648 if (n_completions != 0) { in fn_completion()
651 for (i = 0; i < n_completions; i++) in fn_completion()
654 n_completions = 0; in fn_completion()
712 n_completions = 0; in fn_completion()
725 n_completions++; in fn_completion()
728 if (n_completions == MAX_COMPLETIONS) break; in fn_completion()
733 if (n_completions > 0) in fn_completion()
742 if (n_completions > 0) { in fn_completion()
744 completion_idx = (completion_idx + 1) % n_completions; in fn_completion()
[all …]
/dports/math/gnuplot-tex-extras/gnuplot-5.2.8/src/
H A Dreadline.c629 static int n_completions = 0; in fn_completion() local
640 if (n_completions != 0) { in fn_completion()
643 for (i = 0; i < n_completions; i++) in fn_completion()
646 n_completions = 0; in fn_completion()
704 n_completions = 0; in fn_completion()
717 n_completions++; in fn_completion()
720 if (n_completions == MAX_COMPLETIONS) break; in fn_completion()
725 if (n_completions > 0) in fn_completion()
734 if (n_completions > 0) { in fn_completion()
736 completion_idx = (completion_idx + 1) % n_completions; in fn_completion()
[all …]
/dports/math/rkward-kde/rkward-0.7.1/rkward/windows/
H A Drkcodecompletion.cpp433 n_completions = 0; in RKCompletionModelBase()
458 if (!parent.isValid ()) return (n_completions ? 1 : 0); // header item, if list not empty in rowCount()
459 if (isHeaderItem (parent)) return n_completions; in rowCount()
489 n_completions = matches.size (); in updateCompletionList()
491 icons.reserve (n_completions); in updateCompletionList()
493 for (int i = 0; i < n_completions; ++i) { in updateCompletionList()
634 n_completions = 1; in setFunction()
636 n_completions = 0; in setFunction()
711 n_completions = matches.size (); in updateCompletionList()
818 n_completions = names.size (); in completionsReady()
H A Drkcodecompletion.h102 bool isEmpty () const { return (n_completions == 0); }; in isEmpty()
104 int n_completions;
/dports/devel/anjuta/anjuta-3.34.0/libanjuta/
H A Danjuta-completion.c178 gint n_completions; in anjuta_completion_complete() local
180 n_completions = 0; in anjuta_completion_complete()
197 n_completions++; in anjuta_completion_complete()
198 if (max_completions > 0 && n_completions == max_completions) in anjuta_completion_complete()
/dports/x11-toolkits/gtk40/gtk-4.4.1/tests/
H A Dtestentrycompletion.c217 int n_completions = G_N_ELEMENTS (dynamic_completions); in animation_timer() local
246 if ((timer_count / n_completions) % 2 == 0) in animation_timer()
248 n = timer_count % n_completions; in animation_timer()
/dports/x11-toolkits/gtk30/gtk+-3.24.31/tests/
H A Dtestentrycompletion.c225 gint n_completions = G_N_ELEMENTS (dynamic_completions); in animation_timer() local
254 if ((timer_count / n_completions) % 2 == 0) in animation_timer()
256 n = timer_count % n_completions; in animation_timer()
/dports/editors/kate/kate-21.12.3/addons/latexunicodecompletion/autotests/
H A Dtestcompletiontable.cpp23 for (int i = 0; i < n_completions - 1; ++i) { in testSorting()
/dports/x11-toolkits/gtk20/gtk+-2.24.33/tests/
H A Dtestentrycompletion.c229 gint n_completions = G_N_ELEMENTS (dynamic_completions); in animation_timer() local
258 if ((timer_count / n_completions) % 2 == 0) in animation_timer()
260 n = timer_count % n_completions; in animation_timer()
/dports/editors/kate/kate-21.12.3/addons/latexunicodecompletion/
H A Dcompletionmodel.cpp40 const Completion *endit = beginit + n_completions; in completionInvoked()
H A Dcompletiontable.h11 static constexpr uint16_t n_completions = 3329; variable