| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBStringList.cpp | 69 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()
|
| H A D | SBCommandInterpreter.cpp | 284 matches.AppendList(temp_matches_list); in HandleCompletionWithDescriptions() 286 descriptions.AppendList(temp_descriptions_list); in HandleCompletionWithDescriptions()
|
| H A D | SBBreakpointLocation.cpp | 284 commands.AppendList(command_list); in GetCommandLineCommands()
|
| H A D | SBBreakpointName.cpp | 488 commands.AppendList(command_list); in GetCommandLineCommands()
|
| H A D | SBBreakpoint.cpp | 509 commands.AppendList(command_list); in GetCommandLineCommands()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBStringList.h | 32 void AppendList(const char **strv, int strc); 34 void AppendList(const lldb::SBStringList &strings); 53 void AppendList(const lldb_private::StringList &strings);
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_stringlist.py | 11 obj.AppendList(None, 0) 12 obj.AppendList(lldb.SBStringList())
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBStringList.i | 33 AppendList (const char **strv, int strc); 36 AppendList (const lldb::SBStringList &strings);
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | StringListTest.cpp | 120 s.AppendList(nullptr, 0); in TEST() 127 s.AppendList(items, 3); in TEST() 135 TEST(StringListTest, AppendList) { in TEST() argument 144 s.AppendList(other); in TEST() 156 s.AppendList(empty); in TEST() 157 s.AppendList(other); in TEST()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | StringList.h | 50 void AppendList(const char **strv, int strc); 52 void AppendList(StringList strings);
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | StringList.cpp | 62 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 <<()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/sbenvironment/ |
| H A D | TestSBEnvironment.py | 116 entries.AppendList(["X=x", "Y=y"], 2) 125 entries.AppendList(["X=y", "Y=x"], 2)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_locations/ |
| H A D | TestBreakpointLocations.py | 102 str_list.AppendList(commands, len(commands)) 114 loc_list.AppendList(commands, len(commands))
|