Searched refs:StringList (Results 1 - 25 of 91) sorted by relevance

1234

/freebsd-13-stable/contrib/mandoc/
H A Dcompat_stringlist.h39 } StringList; typedef in typeref:struct:_stringlist
42 StringList *sl_init(void);
43 int sl_add(StringList *, char *);
44 void sl_free(StringList *, int);
45 char *sl_find(StringList *, const char *);
H A Dcompat_stringlist.c48 StringList *
51 StringList *sl;
53 sl = malloc(sizeof(StringList));
70 sl_add(StringList *sl, char *name)
88 sl_free(StringList *sl, int all)
108 sl_find(StringList *sl, const char *name)
H A Dtest-stringlist.c24 StringList *sl;
/freebsd-13-stable/include/
H A Dstringlist.h45 } StringList; typedef in typeref:struct:_stringlist
48 StringList *sl_init(void);
49 int sl_add(StringList *, char *);
50 void sl_free(StringList *, int);
51 char *sl_find(StringList *, const char *);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DStringList.cpp1 //===-- StringList.cpp ----------------------------------------------------===//
9 #include "lldb/Utility/StringList.h"
22 StringList::StringList() : m_strings() {} function in class:StringList
24 StringList::StringList(const char *str) : m_strings() { function in class:StringList
29 StringList::StringList(const char **strv, int strc) : m_strings() { function in class:StringList
36 StringList::~StringList() {}
[all...]
H A DCompletionRequest.cpp71 void CompletionResult::GetMatches(StringList &matches) const {
77 void CompletionResult::GetDescriptions(StringList &descriptions) const {
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBStringList.h51 SBStringList(const lldb_private::StringList *lldb_strings);
53 void AppendList(const lldb_private::StringList &strings);
55 const lldb_private::StringList *operator->() const;
57 const lldb_private::StringList &operator*() const;
60 std::unique_ptr<lldb_private::StringList> m_opaque_up;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringList.h1 //===-- StringList.h --------------------------------------------*- C++ -*-===//
25 class StringList { class in namespace:lldb_private
29 StringList();
31 explicit StringList(const char *str);
33 StringList(const char **strv, int strc);
35 virtual ~StringList();
49 void AppendList(StringList strings);
101 StringList &operator<<(const char *str);
103 StringList &operator<<(const std::string &s);
105 StringList
[all...]
H A DCompletionRequest.h14 #include "lldb/Utility/StringList.h"
83 void GetMatches(StringList &matches) const;
88 void GetDescriptions(StringList &descriptions) const;
196 void AddCompletions(const StringList &completions) {
209 void AddCompletions(const StringList &completions,
210 const StringList &descriptions) {
/freebsd-13-stable/lib/libc/gen/
H A Dstringlist.c46 StringList *
49 StringList *sl;
51 sl = malloc(sizeof(StringList));
68 sl_add(StringList *sl, char *name)
85 sl_free(StringList *sl, int all)
105 sl_find(StringList *sl, const char *name)
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h41 StringList *matches = nullptr) override;
44 StringList *matches = nullptr) override;
48 StringList &commands_found,
49 StringList &commands_help) override;
96 StringList *matches = nullptr) override;
99 StringList *matches = nullptr) override;
103 StringList &commands_found,
104 StringList &commands_help) override;
H A DCommandInterpreter.h23 #include "lldb/Utility/StringList.h"
270 StringList *matches = nullptr,
271 StringList *descriptions = nullptr) const;
326 void HandleCommands(const StringList &commands, ExecutionContext *context,
362 StringList &matches,
363 StringList &descriptions);
435 void FindCommandsForApropos(llvm::StringRef word, StringList &commands_found,
436 StringList &commands_help,
553 StringList *matches = nullptr,
554 StringList *description
[all...]
H A DCommandCompletions.h55 StringList &matches, TildeExpressionResolver &Resolver);
62 StringList &matches,
H A DCommandObject.h23 #include "lldb/Utility/StringList.h"
37 StringList &matches, StringList *descriptions = nullptr) {
157 StringList *matches = nullptr) {
162 StringList *matches = nullptr) {
168 StringList &commands_found,
169 StringList &commands_help) {}
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBStringList.cpp12 #include "lldb/Utility/StringList.h"
21 SBStringList::SBStringList(const lldb_private::StringList *lldb_strings_ptr)
24 m_opaque_up = std::make_unique<StringList>(*lldb_strings_ptr);
44 const lldb_private::StringList *SBStringList::operator->() const {
48 const lldb_private::StringList &SBStringList::operator*() const {
69 m_opaque_up = std::make_unique<lldb_private::StringList>(str);
81 m_opaque_up = std::make_unique<lldb_private::StringList>(strv, strc);
91 m_opaque_up = std::make_unique<lldb_private::StringList>();
96 void SBStringList::AppendList(const StringList &strings) {
98 m_opaque_up = std::make_unique<lldb_private::StringList>();
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DREPL.h98 StringList &lines) override;
100 int IOHandlerFixIndentation(IOHandler &io_handler, const StringList &lines,
110 static int CalculateActualIndentation(const StringList &lines);
123 const StringList &lines, int cursor_position,
149 StringList m_code; // All accumulated REPL statements are saved here
/freebsd-13-stable/usr.sbin/services_mkdb/
H A Dservices_mkdb.c61 static void add(DB *, StringList *, size_t, const char *, size_t *, int);
62 static StringList ***parseservices(const char *, StringList *);
67 static size_t getprotoindex(StringList *, const char *);
68 static const char *getprotostr(StringList *, size_t);
69 static const char *mkaliases(StringList *, char *, size_t);
94 StringList *sl, ***svc;
156 StringList *s;
192 add(DB *db, StringList *sl, size_t port, const char *proto, size_t *cnt,
237 static StringList ***
[all...]
/freebsd-13-stable/contrib/bmake/
H A Ddir.h86 void SearchPath_Expand(SearchPath *, const char *, StringList *);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectApropos.cpp49 StringList commands_found;
50 StringList commands_help;
H A DCommandObjectMultiword.cpp30 StringList *matches) {
42 StringList local_matches;
64 StringList *matches) {
113 StringList matches;
185 StringList new_matches, descriptions;
193 StringList temp_matches;
206 StringList new_matches;
234 StringList &commands_found,
235 StringList &commands_help) {
301 StringList *matche
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h95 StringList &lines, void *baton);
98 const StringList &lines,
205 bool GetLines(int first_line_number, StringList &lines, bool &interrupted);
264 /// Convert the current input lines into a UTF8 StringList
265 StringList GetInputAsStringList(int line_count = UINT32_MAX);
/freebsd-13-stable/contrib/tnftp/src/
H A Dextern.h151 void list_vertical(StringList *);
250 StringList *ftp_sl_init(void);
251 void ftp_sl_add(StringList *, char *);
H A Dcomplete.c62 static unsigned char complete_ambiguous (char *, int, StringList *);
86 complete_ambiguous(char *word, int list, StringList *words)
142 StringList *words;
171 StringList *words;
254 StringList *words;
283 static StringList *dirlist;
285 StringList *words;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h20 #include "lldb/Utility/StringList.h"
234 const StringList &lines,
267 StringList &lines) {
311 StringList &lines) override {
401 bool GetLines(StringList &lines, bool &interrupted);
409 const StringList *GetCurrentLines() const { return m_current_lines_ptr; }
417 static bool IsInputCompleteCallback(Editline *editline, StringList &lines,
420 static int FixIndentationCallback(Editline *editline, const StringList &lines,
433 StringList *m_current_lines_ptr;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h16 #include "lldb/Utility/StringList.h"
173 StringList user_source;

Completed in 386 milliseconds

1234