Searched refs:completions (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h58 /// List of added completions so far. Used to filter out duplicates.
84 /// for the user. Will be filled with the generated completions by the different
85 /// completions functions.
168 /// \param completions The list of completions.
171 void AddCompletions(const StringList &completions) { argument
172 for (const std::string &completion : completions)
178 /// The number of completions and descriptions must be identical.
180 /// \param completions The list of completions
184 AddCompletions(const StringList &completions, const StringList &descriptions) argument
[all...]
/freebsd-11-stable/tests/sys/aio/
H A Dlio_test.c42 static sem_t completions; variable
48 ATF_REQUIRE_EQ(0, sem_post(&completions));
54 ATF_REQUIRE_EQ(0, sem_post(&completions));
173 ATF_REQUIRE_EQ(0, sem_init(&completions, false, 0));
178 ATF_REQUIRE_EQ(0, sem_wait(&completions));
179 ATF_REQUIRE_EQ(0, sem_destroy(&completions));
194 ATF_REQUIRE_EQ(0, sem_init(&completions, false, 0));
201 ATF_REQUIRE_EQ(0, sem_wait(&completions));
202 ATF_REQUIRE_EQ(0, sem_destroy(&completions));
H A Daio_test.c92 static sem_t completions; variable
170 ATF_REQUIRE_EQ(0, sem_post(&completions));
176 ATF_REQUIRE_EQ(0, sem_post(&completions));
184 ATF_REQUIRE_EQ(0, sem_wait(&completions));
207 ATF_REQUIRE_EQ(0, sem_init(&completions, false, 0));
224 ATF_REQUIRE_EQ(0, sem_init(&completions, false, 0));
/freebsd-11-stable/contrib/tcsh/
H A Dtw.h103 extern struct varent completions;
H A Dtw.comp.c38 struct varent completions; variable in typeref:struct:varent
51 * Add or list completions in the completion list
65 tw_prlist(&completions);
67 vp = adrof1(strip(p), &completions);
75 pp = tw_find(strip(p), &completions, FALSE);
81 set1(strip(p), saveblk(v), &completions, VAR_READWRITE); local
86 * Remove completions from the completion list
93 unset1(v, &completions);
474 * look for hardwired command completions using a globbing
477 if ((vec = tw_find(wl[0], &completions, (lookin
[all...]
H A Dtw.init.c559 * Begin the list of completions
567 tw_vptr_start(&completions);
/freebsd-11-stable/contrib/gdb/gdb/cli/
H A Dcli-cmds.c234 char **completions, *point, *arg_prefix;
258 completions = complete_line (point, arg, argpoint);
260 if (completions)
264 for (size = 0; completions[size]; ++size)
266 qsort (completions, size, sizeof (char *), compare_strings);
274 printf_unfiltered ("%s%s\n", arg_prefix, completions[item]);
277 && ! strcmp (completions[item], completions[next_item]))
279 xfree (completions[next_item]);
283 xfree (completions[ite
230 char **completions, *point, *arg_prefix; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp913 /// Prints completions and their descriptions to the given file. Only the
914 /// completions in the interval [start, end) are printed.
932 fprintf(output_file, "\n" ANSI_CLEAR_BELOW "Available completions:\n");
987 StringList completions; local
988 result.GetMatches(completions);
1021 std::string longest_prefix = completions.LongestCommonPrefix();
/freebsd-11-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_arm.c124 VCHIQ_COMPLETION_DATA_T completions[MAX_COMPLETIONS]; member in struct:vchiq_instance_struct
236 completion = &instance->completions[insert & (MAX_COMPLETIONS - 1)];
839 completion = &instance->completions[
1316 completion = &instance->completions[
1439 "Instance %x: pid %d,%s completions "

Completed in 200 milliseconds