/llvm-project/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; 40 lldb_private::StringList *SBStringList::operator->() { in operator ->() 47 const lldb_private::StringList *SBStringList::operator->() const { in operator ->() 51 const lldb_private::StringList &SBStringList::operator*() const { in operator *() 55 bool SBStringList::IsValid() const { in IsValid() 59 SBStringList::operator bool() const { in operator bool() [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 | 234 int match_start_point, int max_return_elements, SBStringList &matches) { in HandleCompletion() 238 SBStringList dummy_descriptions; in HandleCompletion() 246 int match_start_point, int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions() 247 SBStringList &descriptions) { in HandleCompletionWithDescriptions() 303 SBStringList temp_matches_list(&lldb_matches); in HandleCompletionWithDescriptions() 305 SBStringList temp_descriptions_list(&lldb_descriptions); in HandleCompletionWithDescriptions() 312 int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions() 313 SBStringList &descriptions) { in HandleCompletionWithDescriptions() 328 lldb::SBStringList &matches) { in HandleCompletion()
|
/llvm-project/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); 52 SBStringList(const lldb_private::StringList *lldb_strings);
|
H A D | SBCommandInterpreter.h | 227 int max_return_elements, lldb::SBStringList &matches); 232 lldb::SBStringList &matches); 240 lldb::SBStringList &matches, lldb::SBStringList &descriptions); 247 lldb::SBStringList &matches, 248 lldb::SBStringList &descriptions);
|
H A D | SBEnvironment.h | 69 SBStringList GetEntries(); 91 void SetEntries(const SBStringList &entries, bool append);
|
H A D | SBBreakpoint.h | 109 void SetCommandLineCommands(SBStringList &commands); 111 bool GetCommandLineCommands(SBStringList &commands); 125 void GetNames(SBStringList &names);
|
H A D | SBBreakpointName.h | 89 void SetCommandLineCommands(lldb::SBStringList &commands); 91 bool GetCommandLineCommands(lldb::SBStringList &commands);
|
H A D | SBBreakpointLocation.h | 76 void SetCommandLineCommands(lldb::SBStringList &commands); 78 bool GetCommandLineCommands(lldb::SBStringList &commands);
|
H A D | SBTarget.h | 719 const SBFileSpecList &source_file, const SBStringList &func_names); 787 SBStringList &matching_names, 830 void GetBreakpointNames(SBStringList &names);
|
H A D | SBStructuredData.h | 65 bool GetKeys(lldb::SBStringList &keys) const;
|
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/ |
H A D | TestBreakpointLocations.py | 179 set_cmds = lldb.SBStringList() 184 get_cmds = lldb.SBStringList() 205 str_list = lldb.SBStringList() 209 cmd_list = lldb.SBStringList() 223 loc_list = lldb.SBStringList() 226 loc_cmd_list = lldb.SBStringList() 256 untouched_loc_cmds = lldb.SBStringList()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/ |
H A D | TestSourceRegexBreakpoints.py | 33 func_names = lldb.SBStringList() 73 source_regex, lldb.SBFileSpecList(), target_files, lldb.SBStringList() 85 source_regex, lldb.SBFileSpecList(), target_files, lldb.SBStringList() 96 func_names = lldb.SBStringList()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/ |
H A D | TestBreakpointNames.py | 65 name_list = lldb.SBStringList() 90 self.cmd_list = lldb.SBStringList() 130 name_list = lldb.SBStringList() 229 set_cmds = lldb.SBStringList() 347 name_list = lldb.SBStringList()
|
/llvm-project/lldb/test/API/functionalities/breakpoint/serialize/ |
H A D | TestBreakpointSerialization.py | 347 cmd_list = lldb.SBStringList() 428 names_list = lldb.SBStringList() 482 no_keys = lldb.SBStringList() 512 orig_keys = lldb.SBStringList() 527 copy_keys = lldb.SBStringList()
|
/llvm-project/lldb/test/API/commands/expression/completion/ |
H A D | TestExprCompletion.py | 302 match_strings = lldb.SBStringList() 321 match_strings = lldb.SBStringList()
|
/llvm-project/lldb/test/API/commands/command/script/add/ |
H A D | TestAddParsedCommand.py | 79 matches = lldb.SBStringList() 80 descriptions = lldb.SBStringList() 226 matches = lldb.SBStringList() 227 descriptions = lldb.SBStringList()
|
/llvm-project/lldb/bindings/interface/ |
H A D | SBStringListDocstrings.i | 3 ) lldb::SBStringList;
|
H A D | SBStringListExtensions.i | 1 %extend lldb::SBStringList {
|
/llvm-project/lldb/test/API/python_api/default-constructor/ |
H A D | sb_stringlist.py | 12 obj.AppendList(lldb.SBStringList())
|
H A D | sb_breakpointname.py | 30 commands = lldb.SBStringList()
|
/llvm-project/lldb/test/API/commands/expression/completion-crash-invalid-iterator/ |
H A D | TestInvalidIteratorCompletionCrash.py | 19 to_complete, len(to_complete), 0, -1, lldb.SBStringList()
|
/llvm-project/lldb/tools/lldb-dap/ |
H A D | DAPForward.h | 44 class SBStringList; 39 class SBStringList; global() variable
|
/llvm-project/lldb/test/API/functionalities/load_lazy/ |
H A D | TestLoadUsingLazyBind.py | 55 paths = lldb.SBStringList()
|
/llvm-project/lldb/test/API/commands/target/stop-hooks/ |
H A D | TestStopHooks.py | 65 commands = lldb.SBStringList()
|