| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBStringList.cpp | 17 SBStringList::SBStringList() { LLDB_INSTRUMENT_VA(this); } in SBStringList() function in SBStringList 19 SBStringList::SBStringList(const lldb_private::StringList *lldb_strings_ptr) { in SBStringList() function in SBStringList 24 SBStringList::SBStringList(const SBStringList &rhs) { in SBStringList() function in SBStringList 30 const SBStringList &SBStringList::operator=(const SBStringList &rhs) { in operator =() 38 SBStringList::~SBStringList() = default; 48 bool SBStringList::IsValid() const { in IsValid() 52 SBStringList::operator bool() const { in operator bool() 58 void SBStringList::AppendString(const char *str) { in AppendString() 80 void SBStringList::AppendList(const SBStringList &strings) { in AppendList() 96 uint32_t SBStringList::GetSize() const { in GetSize() [all …]
|
| H A D | SBEnvironment.cpp | 91 SBStringList SBEnvironment::GetEntries() { in GetEntries() 94 SBStringList entries; in GetEntries() 108 void SBEnvironment::SetEntries(const SBStringList &entries, bool append) { in SetEntries()
|
| H A D | SBCommandInterpreter.cpp | 214 int match_start_point, int max_return_elements, SBStringList &matches) { in HandleCompletion() 218 SBStringList dummy_descriptions; in HandleCompletion() 226 int match_start_point, int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions() 227 SBStringList &descriptions) { in HandleCompletionWithDescriptions() 283 SBStringList temp_matches_list(&lldb_matches); in HandleCompletionWithDescriptions() 285 SBStringList temp_descriptions_list(&lldb_descriptions); in HandleCompletionWithDescriptions() 292 int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions() 293 SBStringList &descriptions) { in HandleCompletionWithDescriptions() 308 lldb::SBStringList &matches) { in HandleCompletion()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBStringList.h | 16 class LLDB_API SBStringList { 18 SBStringList(); 20 SBStringList(const lldb::SBStringList &rhs); 22 const SBStringList &operator=(const SBStringList &rhs); 24 ~SBStringList(); 34 void AppendList(const lldb::SBStringList &strings); 51 SBStringList(const lldb_private::StringList *lldb_strings);
|
| H A D | SBCommandInterpreter.h | 192 int max_return_elements, lldb::SBStringList &matches); 196 lldb::SBStringList &matches); 203 lldb::SBStringList &matches, lldb::SBStringList &descriptions); 209 lldb::SBStringList &matches, 210 lldb::SBStringList &descriptions);
|
| H A D | SBEnvironment.h | 69 SBStringList GetEntries(); 91 void SetEntries(const SBStringList &entries, bool append);
|
| H A D | SBBreakpoint.h | 102 void SetCommandLineCommands(SBStringList &commands); 104 bool GetCommandLineCommands(SBStringList &commands); 116 void GetNames(SBStringList &names);
|
| H A D | SBBreakpointLocation.h | 63 void SetCommandLineCommands(lldb::SBStringList &commands); 65 bool GetCommandLineCommands(lldb::SBStringList &commands);
|
| H A D | SBBreakpointName.h | 91 void SetCommandLineCommands(lldb::SBStringList &commands); 93 bool GetCommandLineCommands(lldb::SBStringList &commands);
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBStringList.i | 13 ) SBStringList; 14 class SBStringList 18 SBStringList (); 20 SBStringList (const lldb::SBStringList &rhs); 22 ~SBStringList (); 36 AppendList (const lldb::SBStringList &strings);
|
| H A D | SBCommandInterpreter.i | 160 lldb::SBStringList &matches); 167 lldb::SBStringList &matches, 168 lldb::SBStringList &descriptions);
|
| H A D | SBEnvironment.i | 36 SBStringList GetEntries(); 40 void SetEntries(const SBStringList &entries, bool append);
|
| H A D | SBBreakpointName.i | 91 void SetCommandLineCommands(SBStringList &commands); 93 bool GetCommandLineCommands(SBStringList &commands);
|
| H A D | SBBreakpointLocation.i | 101 void SetCommandLineCommands(SBStringList &commands); 103 bool GetCommandLineCommands(SBStringList &commands);
|
| H A D | SBBreakpoint.i | 205 void SetCommandLineCommands(SBStringList &commands); 207 bool GetCommandLineCommands(SBStringList &commands); 222 GetNames (SBStringList &names);
|
| H A D | SBStructuredData.i | 39 bool GetKeys(lldb::SBStringList &keys) const;
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/source_regexp/ |
| H A D | TestSourceRegexBreakpoints.py | 34 func_names = lldb.SBStringList() 71 source_regex, lldb.SBFileSpecList(), target_files, lldb.SBStringList()) 83 source_regex, lldb.SBFileSpecList(), target_files, lldb.SBStringList()) 92 func_names = lldb.SBStringList()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_locations/ |
| H A D | TestBreakpointLocations.py | 101 str_list = lldb.SBStringList() 105 cmd_list = lldb.SBStringList() 113 loc_list = lldb.SBStringList() 116 loc_cmd_list = lldb.SBStringList() 132 untouched_loc_cmds = lldb.SBStringList()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_names/ |
| H A D | TestBreakpointNames.py | 64 name_list = lldb.SBStringList() 87 self.cmd_list = lldb.SBStringList() 126 name_list = lldb.SBStringList() 195 set_cmds = lldb.SBStringList() 286 name_list = lldb.SBStringList()
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/completion/ |
| H A D | TestExprCompletion.py | 225 match_strings = lldb.SBStringList() 238 match_strings = lldb.SBStringList()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/serialize/ |
| H A D | TestBreakpointSerialization.py | 248 cmd_list = lldb.SBStringList() 317 names_list = lldb.SBStringList() 357 no_keys = lldb.SBStringList() 383 orig_keys = lldb.SBStringList() 396 copy_keys = lldb.SBStringList()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_stringlist.py | 12 obj.AppendList(lldb.SBStringList())
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/completion-crash-invalid-iterator/ |
| H A D | TestInvalidIteratorCompletionCrash.py | 18 …GetCommandInterpreter().HandleCompletion(to_complete, len(to_complete), 0, -1, lldb.SBStringList())
|
| /llvm-project-15.0.7/lldb/unittests/API/ |
| H A D | SBStructuredDataTest.cpp | 25 SBStringList keys; in TEST_F()
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | VSCodeForward.h | 39 class SBStringList; variable
|