Home
last modified time | relevance | path

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

123

/llvm-project/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;
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 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.cpp234 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 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);
52 SBStringList(const lldb_private::StringList *lldb_strings);
H A DSBCommandInterpreter.h227 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 DSBEnvironment.h69 SBStringList GetEntries();
91 void SetEntries(const SBStringList &entries, bool append);
H A DSBBreakpoint.h109 void SetCommandLineCommands(SBStringList &commands);
111 bool GetCommandLineCommands(SBStringList &commands);
125 void GetNames(SBStringList &names);
H A DSBBreakpointName.h89 void SetCommandLineCommands(lldb::SBStringList &commands);
91 bool GetCommandLineCommands(lldb::SBStringList &commands);
H A DSBBreakpointLocation.h76 void SetCommandLineCommands(lldb::SBStringList &commands);
78 bool GetCommandLineCommands(lldb::SBStringList &commands);
H A DSBTarget.h719 const SBFileSpecList &source_file, const SBStringList &func_names);
787 SBStringList &matching_names,
830 void GetBreakpointNames(SBStringList &names);
H A DSBStructuredData.h65 bool GetKeys(lldb::SBStringList &keys) const;
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/
H A DTestBreakpointLocations.py179 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 DTestSourceRegexBreakpoints.py33 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 DTestBreakpointNames.py65 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 DTestBreakpointSerialization.py347 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 DTestExprCompletion.py302 match_strings = lldb.SBStringList()
321 match_strings = lldb.SBStringList()
/llvm-project/lldb/test/API/commands/command/script/add/
H A DTestAddParsedCommand.py79 matches = lldb.SBStringList()
80 descriptions = lldb.SBStringList()
226 matches = lldb.SBStringList()
227 descriptions = lldb.SBStringList()
/llvm-project/lldb/bindings/interface/
H A DSBStringListDocstrings.i3 ) lldb::SBStringList;
H A DSBStringListExtensions.i1 %extend lldb::SBStringList {
/llvm-project/lldb/test/API/python_api/default-constructor/
H A Dsb_stringlist.py12 obj.AppendList(lldb.SBStringList())
H A Dsb_breakpointname.py30 commands = lldb.SBStringList()
/llvm-project/lldb/test/API/commands/expression/completion-crash-invalid-iterator/
H A DTestInvalidIteratorCompletionCrash.py19 to_complete, len(to_complete), 0, -1, lldb.SBStringList()
/llvm-project/lldb/tools/lldb-dap/
H A DDAPForward.h44 class SBStringList;
39 class SBStringList; global() variable
/llvm-project/lldb/test/API/functionalities/load_lazy/
H A DTestLoadUsingLazyBind.py55 paths = lldb.SBStringList()
/llvm-project/lldb/test/API/commands/target/stop-hooks/
H A DTestStopHooks.py65 commands = lldb.SBStringList()

123