/external/llvm-project/lldb/source/API/ |
D | SBStringList.cpp | 17 SBStringList::SBStringList() : m_opaque_up() { in SBStringList() function in SBStringList 18 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBStringList); in SBStringList() 21 SBStringList::SBStringList(const lldb_private::StringList *lldb_strings_ptr) in SBStringList() function in SBStringList 27 SBStringList::SBStringList(const SBStringList &rhs) : m_opaque_up() { in SBStringList() function in SBStringList 28 LLDB_RECORD_CONSTRUCTOR(SBStringList, (const lldb::SBStringList &), rhs); in SBStringList() 33 const SBStringList &SBStringList::operator=(const SBStringList &rhs) { in operator =() 34 LLDB_RECORD_METHOD(const lldb::SBStringList &, in operator =() 35 SBStringList, operator=,(const lldb::SBStringList &), rhs); in operator =() 42 SBStringList::~SBStringList() = default; 44 const lldb_private::StringList *SBStringList::operator->() const { in operator ->() [all …]
|
D | SBEnvironment.cpp | 97 SBStringList SBEnvironment::GetEntries() { in GetEntries() 98 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBStringList, SBEnvironment, GetEntries); in GetEntries() 100 SBStringList entries; in GetEntries() 115 void SBEnvironment::SetEntries(const SBStringList &entries, bool append) { in SetEntries() 117 (const lldb::SBStringList &, bool), entries, append); in SetEntries() 148 LLDB_REGISTER_METHOD(lldb::SBStringList, SBEnvironment, GetEntries, ()); in RegisterMethods() 151 (const lldb::SBStringList &, bool)); in RegisterMethods()
|
D | SBCommandInterpreter.cpp | 235 int match_start_point, int max_return_elements, SBStringList &matches) { in HandleCompletion() 238 lldb::SBStringList &), in HandleCompletion() 242 SBStringList dummy_descriptions; in HandleCompletion() 250 int match_start_point, int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions() 251 SBStringList &descriptions) { in HandleCompletionWithDescriptions() 255 lldb::SBStringList &, lldb::SBStringList &), in HandleCompletionWithDescriptions() 311 SBStringList temp_matches_list(&lldb_matches); in HandleCompletionWithDescriptions() 313 SBStringList temp_descriptions_list(&lldb_descriptions); in HandleCompletionWithDescriptions() 320 int max_return_elements, SBStringList &matches, in HandleCompletionWithDescriptions() 321 SBStringList &descriptions) { in HandleCompletionWithDescriptions() [all …]
|
D | SBBreakpointLocation.cpp | 271 void SBBreakpointLocation::SetCommandLineCommands(SBStringList &commands) { in SetCommandLineCommands() 273 (lldb::SBStringList &), commands); in SetCommandLineCommands() 289 bool SBBreakpointLocation::GetCommandLineCommands(SBStringList &commands) { in GetCommandLineCommands() 291 (lldb::SBStringList &), commands); in GetCommandLineCommands() 507 (lldb::SBStringList &)); in RegisterMethods() 509 (lldb::SBStringList &)); in RegisterMethods()
|
D | SBStructuredData.cpp | 123 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const { in GetKeys() 125 (lldb::SBStringList &), keys); in GetKeys() 230 (lldb::SBStringList &)); in RegisterMethods()
|
D | SBBreakpointName.cpp | 473 void SBBreakpointName::SetCommandLineCommands(SBStringList &commands) { in SetCommandLineCommands() 475 (lldb::SBStringList &), commands); in SetCommandLineCommands() 493 bool SBBreakpointName::GetCommandLineCommands(SBStringList &commands) { in GetCommandLineCommands() 495 (lldb::SBStringList &), commands); in GetCommandLineCommands() 741 (lldb::SBStringList &)); in RegisterMethods() 743 (lldb::SBStringList &)); in RegisterMethods()
|
D | SBBreakpoint.cpp | 494 void SBBreakpoint::SetCommandLineCommands(SBStringList &commands) { in SetCommandLineCommands() 496 (lldb::SBStringList &), commands); in SetCommandLineCommands() 512 bool SBBreakpoint::GetCommandLineCommands(SBStringList &commands) { in GetCommandLineCommands() 514 (lldb::SBStringList &), commands); in GetCommandLineCommands() 732 void SBBreakpoint::GetNames(SBStringList &names) { in GetNames() 733 LLDB_RECORD_METHOD(void, SBBreakpoint, GetNames, (lldb::SBStringList &), in GetNames() 1037 (lldb::SBStringList &)); in RegisterMethods() 1039 (lldb::SBStringList &)); in RegisterMethods() 1059 LLDB_REGISTER_METHOD(void, SBBreakpoint, GetNames, (lldb::SBStringList &)); in RegisterMethods()
|
/external/llvm-project/lldb/include/lldb/API/ |
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);
|
D | SBCommandInterpreter.h | 188 int max_return_elements, lldb::SBStringList &matches); 192 lldb::SBStringList &matches); 199 lldb::SBStringList &matches, lldb::SBStringList &descriptions); 205 lldb::SBStringList &matches, 206 lldb::SBStringList &descriptions);
|
D | SBEnvironment.h | 69 SBStringList GetEntries(); 91 void SetEntries(const SBStringList &entries, bool append);
|
D | SBBreakpoint.h | 102 void SetCommandLineCommands(SBStringList &commands); 104 bool GetCommandLineCommands(SBStringList &commands); 116 void GetNames(SBStringList &names);
|
D | SBBreakpointLocation.h | 63 void SetCommandLineCommands(lldb::SBStringList &commands); 65 bool GetCommandLineCommands(lldb::SBStringList &commands);
|
D | SBBreakpointName.h | 91 void SetCommandLineCommands(lldb::SBStringList &commands); 93 bool GetCommandLineCommands(lldb::SBStringList &commands);
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBStringList.i | 11 class SBStringList 15 SBStringList (); 17 SBStringList (const lldb::SBStringList &rhs); 19 ~SBStringList (); 33 AppendList (const lldb::SBStringList &strings);
|
D | SBCommandInterpreter.i | 155 lldb::SBStringList &matches); 162 lldb::SBStringList &matches, 163 lldb::SBStringList &descriptions);
|
D | SBEnvironment.i | 35 SBStringList GetEntries(); 39 void SetEntries(const SBStringList &entries, bool append);
|
D | SBBreakpointName.i | 91 void SetCommandLineCommands(SBStringList &commands); 93 bool GetCommandLineCommands(SBStringList &commands);
|
D | SBBreakpointLocation.i | 101 void SetCommandLineCommands(SBStringList &commands); 103 bool GetCommandLineCommands(SBStringList &commands);
|
D | SBBreakpoint.i | 205 void SetCommandLineCommands(SBStringList &commands); 207 bool GetCommandLineCommands(SBStringList &commands); 222 GetNames (SBStringList &names);
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/ |
D | TestSourceRegexBreakpoints.py | 36 func_names = lldb.SBStringList() 73 source_regex, lldb.SBFileSpecList(), target_files, lldb.SBStringList()) 85 source_regex, lldb.SBFileSpecList(), target_files, lldb.SBStringList()) 94 func_names = lldb.SBStringList()
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/ |
D | TestBreakpointLocations.py | 103 str_list = lldb.SBStringList() 107 cmd_list = lldb.SBStringList() 115 loc_list = lldb.SBStringList() 118 loc_cmd_list = lldb.SBStringList() 134 untouched_loc_cmds = lldb.SBStringList()
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/ |
D | TestBreakpointNames.py | 66 name_list = lldb.SBStringList() 89 self.cmd_list = lldb.SBStringList() 128 name_list = lldb.SBStringList() 197 set_cmds = lldb.SBStringList() 288 name_list = lldb.SBStringList()
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/serialize/ |
D | TestBreakpointSerialization.py | 256 cmd_list = lldb.SBStringList() 325 names_list = lldb.SBStringList() 365 no_keys = lldb.SBStringList() 391 orig_keys = lldb.SBStringList() 404 copy_keys = lldb.SBStringList()
|
/external/llvm-project/lldb/test/API/commands/expression/completion/ |
D | TestExprCompletion.py | 227 match_strings = lldb.SBStringList() 240 match_strings = lldb.SBStringList()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_stringlist.py | 12 obj.AppendList(lldb.SBStringList())
|