Home
last modified time | relevance | path

Searched refs:SBStringList (Results 1 – 25 of 58) sorted by relevance

123

/llvm-project-15.0.7/lldb/source/API/
H A DSBStringList.cpp17 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 DSBEnvironment.cpp91 SBStringList SBEnvironment::GetEntries() { in GetEntries()
94 SBStringList entries; in GetEntries()
108 void SBEnvironment::SetEntries(const SBStringList &entries, bool append) { in SetEntries()
H A DSBCommandInterpreter.cpp214 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 DSBStringList.h16 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 DSBCommandInterpreter.h192 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 DSBEnvironment.h69 SBStringList GetEntries();
91 void SetEntries(const SBStringList &entries, bool append);
H A DSBBreakpoint.h102 void SetCommandLineCommands(SBStringList &commands);
104 bool GetCommandLineCommands(SBStringList &commands);
116 void GetNames(SBStringList &names);
H A DSBBreakpointLocation.h63 void SetCommandLineCommands(lldb::SBStringList &commands);
65 bool GetCommandLineCommands(lldb::SBStringList &commands);
H A DSBBreakpointName.h91 void SetCommandLineCommands(lldb::SBStringList &commands);
93 bool GetCommandLineCommands(lldb::SBStringList &commands);
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBStringList.i13 ) SBStringList;
14 class SBStringList
18 SBStringList ();
20 SBStringList (const lldb::SBStringList &rhs);
22 ~SBStringList ();
36 AppendList (const lldb::SBStringList &strings);
H A DSBCommandInterpreter.i160 lldb::SBStringList &matches);
167 lldb::SBStringList &matches,
168 lldb::SBStringList &descriptions);
H A DSBEnvironment.i36 SBStringList GetEntries();
40 void SetEntries(const SBStringList &entries, bool append);
H A DSBBreakpointName.i91 void SetCommandLineCommands(SBStringList &commands);
93 bool GetCommandLineCommands(SBStringList &commands);
H A DSBBreakpointLocation.i101 void SetCommandLineCommands(SBStringList &commands);
103 bool GetCommandLineCommands(SBStringList &commands);
H A DSBBreakpoint.i205 void SetCommandLineCommands(SBStringList &commands);
207 bool GetCommandLineCommands(SBStringList &commands);
222 GetNames (SBStringList &names);
H A DSBStructuredData.i39 bool GetKeys(lldb::SBStringList &keys) const;
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/source_regexp/
H A DTestSourceRegexBreakpoints.py34 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 DTestBreakpointLocations.py101 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 DTestBreakpointNames.py64 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 DTestExprCompletion.py225 match_strings = lldb.SBStringList()
238 match_strings = lldb.SBStringList()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/serialize/
H A DTestBreakpointSerialization.py248 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 Dsb_stringlist.py12 obj.AppendList(lldb.SBStringList())
/llvm-project-15.0.7/lldb/test/API/commands/expression/completion-crash-invalid-iterator/
H A DTestInvalidIteratorCompletionCrash.py18 …GetCommandInterpreter().HandleCompletion(to_complete, len(to_complete), 0, -1, lldb.SBStringList())
/llvm-project-15.0.7/lldb/unittests/API/
H A DSBStructuredDataTest.cpp25 SBStringList keys; in TEST_F()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DVSCodeForward.h39 class SBStringList; variable

123