Home
last modified time | relevance | path

Searched refs:AppendList (Results 1 – 9 of 9) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/API/
DSBStringList.cpp69 void SBStringList::AppendList(const char **strv, int strc) { in AppendList() function in SBStringList
74 m_opaque_up->AppendList(strv, strc); in AppendList()
80 void SBStringList::AppendList(const SBStringList &strings) { in AppendList() function in SBStringList
86 m_opaque_up->AppendList(*(strings.m_opaque_up)); in AppendList()
90 void SBStringList::AppendList(const StringList &strings) { in AppendList() function in SBStringList
93 m_opaque_up->AppendList(strings); in AppendList()
DSBCommandInterpreter.cpp285 matches.AppendList(temp_matches_list); in HandleCompletionWithDescriptions()
287 descriptions.AppendList(temp_descriptions_list); in HandleCompletionWithDescriptions()
DSBBreakpointLocation.cpp301 commands.AppendList(command_list); in GetCommandLineCommands()
DSBBreakpointName.cpp488 commands.AppendList(command_list); in GetCommandLineCommands()
DSBBreakpoint.cpp509 commands.AppendList(command_list); in GetCommandLineCommands()
/openbsd/src/gnu/llvm/lldb/include/lldb/API/
DSBStringList.h32 void AppendList(const char **strv, int strc);
34 void AppendList(const lldb::SBStringList &strings);
53 void AppendList(const lldb_private::StringList &strings);
/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBStringList.i33 AppendList (const char **strv, int strc);
36 AppendList (const lldb::SBStringList &strings);
/openbsd/src/gnu/llvm/lldb/include/lldb/Utility/
DStringList.h50 void AppendList(const char **strv, int strc);
52 void AppendList(StringList strings);
/openbsd/src/gnu/llvm/lldb/source/Utility/
DStringList.cpp62 void StringList::AppendList(const char **strv, int strc) { in AppendList() function in StringList
69 void StringList::AppendList(StringList strings) { in AppendList() function in StringList
222 AppendList(strings); in operator <<()