Home
last modified time | relevance | path

Searched +refs:next +refs:completion (Results 1 – 25 of 21129) sorted by relevance

12345678910>>...846

/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkemojicompletion.c104 next: in update_completion()
109 goto next; in update_completion()
206 completion->active = (active && active->next) ? active->next->data : NULL; in move_active_row()
281 GtkWidget *next; in move_active_variation() local
294 next = NULL; in move_active_variation()
305 next = base; in move_active_variation()
309 next = base; in move_active_variation()
311 next = (active && active->next) ? active->next->data : NULL; in move_active_variation()
315 if (next) in move_active_variation()
319 completion->active_variation = next; in move_active_variation()
[all …]
/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtkemojicompletion.c103 next: in update_completion()
108 goto next; in update_completion()
259 GtkWidget *next; in move_active_variation() local
271 next = NULL; in move_active_variation()
274 next = base; in move_active_variation()
278 next = base; in move_active_variation()
280 next = gtk_widget_get_next_sibling (completion->active_variation); in move_active_variation()
282 next = gtk_widget_get_prev_sibling (completion->active_variation); in move_active_variation()
284 if (next) in move_active_variation()
288 completion->active_variation = next; in move_active_variation()
[all …]
/dports/x11-wm/hikari/hikari-2.2.3/src/
H A Dcompletion.c13 wl_list_init(&completion->items); in hikari_completion_init()
14 hikari_completion_add(completion, data); in hikari_completion_init()
15 item = wl_container_of(completion->items.next, item, completion_items); in hikari_completion_init()
16 completion->current_item = item; in hikari_completion_init()
22 assert(completion != NULL); in hikari_completion_fini()
36 assert(completion != NULL); in hikari_completion_add()
49 assert(completion != NULL); in hikari_completion_cancel()
50 assert(!wl_list_empty(&completion->items)); in hikari_completion_cancel()
53 wl_container_of(completion->items.next, item, completion_items); in hikari_completion_cancel()
55 completion->current_item = item; in hikari_completion_cancel()
[all …]
/dports/net-im/chatterino2/chatterino2-2.3.4/lib/libcommuni/src/util/
H A Dirccompleter.cpp166 text = completion.text; in completeNext()
177 int next = command.length(); in completeCommand() local
178 if (next >= completion.length() || completion.at(next) != QLatin1Char(' ')) in completeCommand()
179 completion.insert(next, QLatin1Char(' ')); in completeCommand()
180 return IrcCompletion(completion, ++next); in completeCommand()
212 int next = from + word.length(); in completeWord() local
213 if (next >= completion.length() || completion.at(next) != QLatin1Char(' ')) in completeWord()
214 completion.insert(next, QLatin1Char(' ')); in completeWord()
215 return IrcCompletion(completion, ++next); in completeWord()
246 if (completion.isValid() && !completions.contains(completion)) in completeWords()
[all …]
/dports/www/qutebrowser/qutebrowser-2.4.0/tests/end2end/features/
H A Dcompletion.feature3 Feature: Using completion
8 And I run :completion-item-focus next
33 Scenario: Using command completion
37 Scenario: Using help completion
49 Scenario: Using bind completion
59 And I run :completion-item-focus next
60 And I run :completion-item-focus next
69 Scenario: Using value completion
79 And I run :completion-item-focus next
81 And I run :completion-item-focus next
[all …]
/dports/math/gnuplot-tex-extras/gnuplot-5.2.8/src/
H A Dvms.c98 struct pipe_details *next; member
101 unsigned long int completion; member
163 info->next=open_pipes; /* prepend to list */ in popen()
175 for (info = open_pipes; info != NULL; last = info, info = info->next) in pclose()
186 if (!info->completion) /* We tried to be nice . . . */ in pclose()
191 if (last) last->next = info->next; in pclose()
192 else open_pipes = info->next; in pclose()
193 retsts = info->completion; in pclose()
209 for (info = open_pipes; info != NULL; info = info->next) in waitpid()
213 while (!info->completion) { in waitpid()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/scheduling/support/
H A DPeriodicTriggerTests.java42 assertNegligibleDifference(now, next); in fixedDelayFirstExecution()
61 assertNegligibleDifference(now, next); in fixedDelayWithTimeUnitFirstExecution()
110 assertNegligibleDifference(now, next); in fixedRateFirstExecution()
119 assertNegligibleDifference(now, next); in fixedRateWithTimeUnitFirstExecution()
153 assertApproximateDifference(now, next, period); in fixedRateSubsequentExecution()
221 private static TriggerContext context(Object scheduled, Object actual, Object completion) { in context() argument
222 return new TestTriggerContext(asDate(scheduled), asDate(actual), asDate(completion)); in context()
249 private final Date completion; field in PeriodicTriggerTests.TestTriggerContext
251 TestTriggerContext(Date scheduled, Date actual, Date completion) { in TestTriggerContext() argument
254 this.completion = completion; in TestTriggerContext()
[all …]
/dports/graphics/rx/rx-0.4.0/src/
H A Dautocomplete.rs38 iter.next().map(|completion| { in next()
42 self.range = self.range.start..self.range.start + completion.len(); in next()
44 (completion, range) in next()
53 iter.next().map(|completion| { in next()
54 if iter.peek() == Some(&completion) { in next()
62 self.range = cursor..cursor + completion.len(); in next()
65 (completion, cursor..cursor) in next()
201 assert_eq!(Some(("one.png".to_owned(), 0..0)), auto.next("", 0),); in test_autocomplete_static()
232 auto.next("three.png", 0), in test_autocomplete_file()
244 auto.next("backup/six.png", 14), in test_autocomplete_file()
[all …]
/dports/lang/jimtcl/jimtcl-0.81/tests/
H A Dhistory.test12 } -result {Usage: "history command ... ", where command is one of: add, completion, getline, keep, …
16 history add "line2 next"
21 } {line1 {line2 next}}
27 test history-1.4 {history completion usage} -body {
28 history completion
29 } -returnCodes error -result {wrong # args: should be "history completion command"}
31 test history-1.5 {history completion} {
32 history completion command
35 test history-1.6 {history completion} {
36 history completion {}
/dports/sysutils/liburcu/userspace-rcu-0.13.0/src/
H A Dworkqueue.c224 struct urcu_work, next); in workqueue_thread()
347 cds_wfcq_node_init(&work->next); in urcu_workqueue_queue_work()
349 cds_wfcq_enqueue(&workqueue->cbs_head, &workqueue->cbs_tail, &work->next); in urcu_workqueue_queue_work()
360 free(completion); in free_completion()
370 completion = completion_work->completion; in _urcu_workqueue_wait_complete()
381 completion = calloc(sizeof(*completion), 1); in urcu_workqueue_create_completion()
382 if (!completion) in urcu_workqueue_create_completion()
385 completion->barrier_count = 0; in urcu_workqueue_create_completion()
386 return completion; in urcu_workqueue_create_completion()
415 work->completion = completion; in urcu_workqueue_queue_completion()
[all …]
H A Durcu-call-rcu-impl.h368 struct rcu_head, next); in call_rcu_thread()
683 cds_wfcq_node_init(&head->next); in _call_rcu()
685 cds_wfcq_enqueue(&crdp->cbs_head, &crdp->cbs_tail, &head->next); in _call_rcu()
820 free(completion); in free_completion()
830 completion = work->completion; in _rcu_barrier_complete()
865 completion = calloc(sizeof(*completion), 1); in rcu_barrier()
866 if (!completion) in rcu_barrier()
883 work->completion = completion; in rcu_barrier()
890 uatomic_dec(&completion->futex); in rcu_barrier()
962 struct call_rcu_data *crdp, *next; in call_rcu_after_fork_child() local
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/lang/
H A DProcessHandleImpl.java123 while (completion == null || (shouldReap && !completion.isReaping)) { in completion()
125 if (completion == null) { in completion()
128 completion = completions.replace(pid, completion, newCompletion) in completion()
131 if (completion == null) { in completion()
169 return completion; in completion()
463 for (int i = next; i < size; i++) { in descendants()
466 swap(pids, i, next); in descendants()
467 swap(ppids, i, next); in descendants()
468 swap(starttimes, i, next); in descendants()
469 next++; in descendants()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/lang/
H A DProcessHandleImpl.java123 while (completion == null || (shouldReap && !completion.isReaping)) { in completion()
125 if (completion == null) { in completion()
128 completion = completions.replace(pid, completion, newCompletion) in completion()
131 if (completion == null) { in completion()
169 return completion; in completion()
463 for (int i = next; i < size; i++) { in descendants()
466 swap(pids, i, next); in descendants()
467 swap(ppids, i, next); in descendants()
468 swap(starttimes, i, next); in descendants()
469 next++; in descendants()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/lang/
H A DProcessHandleImpl.java123 while (completion == null || (shouldReap && !completion.isReaping)) { in completion()
125 if (completion == null) { in completion()
128 completion = completions.replace(pid, completion, newCompletion) in completion()
131 if (completion == null) { in completion()
169 return completion; in completion()
463 for (int i = next; i < size; i++) { in descendants()
466 swap(pids, i, next); in descendants()
467 swap(ppids, i, next); in descendants()
468 swap(starttimes, i, next); in descendants()
469 next++; in descendants()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/lang/
H A DProcessHandleImpl.java132 while (completion == null || (shouldReap && !completion.isReaping)) { in completion()
134 if (completion == null) { in completion()
137 completion = completions.replace(pid, completion, newCompletion) in completion()
140 if (completion == null) { in completion()
178 return completion; in completion()
472 for (int i = next; i < size; i++) { in descendants()
475 swap(pids, i, next); in descendants()
476 swap(ppids, i, next); in descendants()
477 swap(starttimes, i, next); in descendants()
478 next++; in descendants()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/lang/
H A DProcessHandleImpl.java132 while (completion == null || (shouldReap && !completion.isReaping)) { in completion()
134 if (completion == null) { in completion()
137 completion = completions.replace(pid, completion, newCompletion) in completion()
140 if (completion == null) { in completion()
178 return completion; in completion()
477 for (int i = next; i < size; i++) { in descendants()
480 swap(pids, i, next); in descendants()
481 swap(ppids, i, next); in descendants()
482 swap(starttimes, i, next); in descendants()
483 next++; in descendants()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/lang/
H A DProcessHandleImpl.java123 while (completion == null || (shouldReap && !completion.isReaping)) { in completion()
125 if (completion == null) { in completion()
128 completion = completions.replace(pid, completion, newCompletion) in completion()
131 if (completion == null) { in completion()
169 return completion; in completion()
463 for (int i = next; i < size; i++) { in descendants()
466 swap(pids, i, next); in descendants()
467 swap(ppids, i, next); in descendants()
468 swap(starttimes, i, next); in descendants()
469 next++; in descendants()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/lang/
H A DProcessHandleImpl.java131 while (completion == null || (shouldReap && !completion.isReaping)) { in completion()
133 if (completion == null) { in completion()
136 completion = completions.replace(pid, completion, newCompletion) in completion()
139 if (completion == null) { in completion()
177 return completion; in completion()
471 for (int i = next; i < size; i++) { in descendants()
474 swap(pids, i, next); in descendants()
475 swap(ppids, i, next); in descendants()
476 swap(starttimes, i, next); in descendants()
477 next++; in descendants()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/java/lang/
H A DProcessHandleImpl.java123 while (completion == null || (shouldReap && !completion.isReaping)) { in completion()
125 if (completion == null) { in completion()
128 completion = completions.replace(pid, completion, newCompletion) in completion()
131 if (completion == null) { in completion()
169 return completion; in completion()
463 for (int i = next; i < size; i++) { in descendants()
466 swap(pids, i, next); in descendants()
467 swap(ppids, i, next); in descendants()
468 swap(starttimes, i, next); in descendants()
469 next++; in descendants()
[all …]
/dports/math/gnuplot/gnuplot-5.4.1/src/
H A Dvms.c113 struct pipe_details *next; member
116 unsigned long int completion; member
178 info->next=open_pipes; /* prepend to list */ in popen()
190 for (info = open_pipes; info != NULL; last = info, info = info->next) in pclose()
201 if (!info->completion) /* We tried to be nice . . . */ in pclose()
206 if (last) last->next = info->next; in pclose()
207 else open_pipes = info->next; in pclose()
208 retsts = info->completion; in pclose()
224 for (info = open_pipes; info != NULL; info = info->next) in waitpid()
228 while (!info->completion) { in waitpid()
[all …]
/dports/math/gnuplot-lite/gnuplot-5.4.1/src/
H A Dvms.c113 struct pipe_details *next; member
116 unsigned long int completion; member
178 info->next=open_pipes; /* prepend to list */ in popen()
190 for (info = open_pipes; info != NULL; last = info, info = info->next) in pclose()
201 if (!info->completion) /* We tried to be nice . . . */ in pclose()
206 if (last) last->next = info->next; in pclose()
207 else open_pipes = info->next; in pclose()
208 retsts = info->completion; in pclose()
224 for (info = open_pipes; info != NULL; info = info->next) in waitpid()
228 while (!info->completion) { in waitpid()
[all …]
/dports/devel/p5-Path-Dispatcher/Path-Dispatcher-1.08/lib/Path/Dispatcher/Rule/
H A DTokens.pm79 my $next = shift @$expected;
83 for my $completion (ref($next) eq 'ARRAY' ? @$next : $next) {
84 next if ref($completion);
86 next unless substr($completion, 0, length($part)) eq $part;
87 push @completions, $self->untokenize(@$matched, $completion);
/dports/print/yatex/yatex1.82/docs/
H A Dyatexe.tex25 @comment node-name, next, previous, up
57 @comment node-name, next, previous, up
83 @item Learning unknown/new La@TeX{} commands for the next completion
435 out, the next example may be helpful.
821 @node Maketitle-type completion, Arbitrary completion, Large-type completion, Completion
840 @node Arbitrary completion, End completion, Maketitle-type completion, Completion
857 @node End completion, Accent completion, Arbitrary completion, Completion
876 @node Accent completion, Image completion, End completion, Completion
914 @node Image completion, Greek letters completion, Accent completion, Completion
1469 environment in the next line. (At the begin-type completion, this
[all …]
/dports/print/yatex/yatex1.82/
H A Dyatexe.tex25 @comment node-name, next, previous, up
57 @comment node-name, next, previous, up
83 @item Learning unknown/new La@TeX{} commands for the next completion
435 out, the next example may be helpful.
821 @node Maketitle-type completion, Arbitrary completion, Large-type completion, Completion
840 @node Arbitrary completion, End completion, Maketitle-type completion, Completion
857 @node End completion, Accent completion, Arbitrary completion, Completion
876 @node Accent completion, Image completion, End completion, Completion
914 @node Image completion, Greek letters completion, Accent completion, Completion
1469 environment in the next line. (At the begin-type completion, this
[all …]
/dports/x11-toolkits/gtksourceview2/gtksourceview-2.10.5/gtksourceview/
H A Dgtksourcecompletion.c478 GtkTreeIter next; in selector_previous() local
486 next = *iter; in selector_previous()
490 GTK_SOURCE_COMPLETION_MODEL (model), &next)) in selector_previous()
493 &next)) in selector_previous()
496 *iter = next; in selector_previous()
500 last = next; in selector_previous()
520 GtkTreeIter next; in selector_next() local
528 next = *iter; in selector_next()
534 &next)) in selector_next()
537 *iter = next; in selector_next()
[all …]

12345678910>>...846