| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | StringList.cpp | 22 StringList::StringList() : m_strings() {} in StringList() function in StringList 24 StringList::StringList(const char *str) : m_strings() { in StringList() function in StringList 29 StringList::StringList(const char **strv, int strc) : m_strings() { in StringList() function in StringList 36 StringList::~StringList() = default; 38 void StringList::AppendString(const char *str) { in AppendString() 69 void StringList::AppendList(StringList strings) { in AppendList() 185 void StringList::RemoveBlankLines() { in RemoveBlankLines() 211 StringList &StringList::operator<<(const char *str) { in operator <<() 216 StringList &StringList::operator<<(const std::string &str) { in operator <<() 221 StringList &StringList::operator<<(const StringList &strings) { in operator <<() [all …]
|
| H A D | CompletionRequest.cpp | 71 void CompletionResult::GetMatches(StringList &matches) const { in GetMatches() 77 void CompletionResult::GetDescriptions(StringList &descriptions) const { in GetDescriptions()
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | StringListTest.cpp | 17 StringList s; in TEST() 22 StringList orig; in TEST() 38 StringList s; in TEST() 50 StringList s; in TEST() 62 StringList s; in TEST() 77 StringList s; in TEST() 92 StringList s; in TEST() 104 StringList s; in TEST() 119 StringList s; in TEST() 125 StringList s; in TEST() [all …]
|
| H A D | CompletionRequestTest.cpp | 18 StringList matches; in TEST() 53 StringList matches, descriptions; in TEST() 92 StringList matches; in TEST() 123 StringList matches; in TEST() 186 StringList matches, descriptions; in TEST() 262 StringList matches; in TEST()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | StringList.h | 26 class StringList { 30 StringList(); 32 explicit StringList(const char *str); 34 StringList(const char **strv, int strc); 36 virtual ~StringList(); 52 void AppendList(StringList strings); 104 StringList &operator<<(const char *str); 106 StringList &operator<<(const std::string &s); 108 StringList &operator<<(const StringList &strings); 111 StringList &operator=(const std::vector<std::string> &rhs); [all …]
|
| H A D | CompletionRequest.h | 83 void GetMatches(StringList &matches) const; 88 void GetDescriptions(StringList &descriptions) const; 196 void AddCompletions(const StringList &completions) { in AddCompletions() 209 void AddCompletions(const StringList &completions, in AddCompletions() 210 const StringList &descriptions) { in AddCompletions()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBStringList.cpp | 19 SBStringList::SBStringList(const lldb_private::StringList *lldb_strings_ptr) { in SBStringList() 21 m_opaque_up = std::make_unique<StringList>(*lldb_strings_ptr); in SBStringList() 40 const lldb_private::StringList *SBStringList::operator->() const { in operator ->() 44 const lldb_private::StringList &SBStringList::operator*() const { in operator *() 65 m_opaque_up = std::make_unique<lldb_private::StringList>(str); in AppendString() 76 m_opaque_up = std::make_unique<lldb_private::StringList>(strv, strc); in AppendList() 85 m_opaque_up = std::make_unique<lldb_private::StringList>(); in AppendList() 90 void SBStringList::AppendList(const StringList &strings) { in AppendList() 92 m_opaque_up = std::make_unique<lldb_private::StringList>(); in AppendList()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBStringList.h | 51 SBStringList(const lldb_private::StringList *lldb_strings); 53 void AppendList(const lldb_private::StringList &strings); 55 const lldb_private::StringList *operator->() const; 57 const lldb_private::StringList &operator*() const; 60 std::unique_ptr<lldb_private::StringList> m_opaque_up;
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | CommandInterpreter.h | 268 StringList *matches = nullptr, 269 StringList *descriptions = nullptr) const; 272 StringList *matches = nullptr, 273 StringList *descriptions = nullptr) const; 365 void HandleCommands(const StringList &commands, 370 void HandleCommands(const StringList &commands, 412 StringList &matches, 413 StringList &descriptions); 484 StringList &commands_help, 649 StringList *matches = nullptr, [all …]
|
| H A D | CommandObjectMultiword.h | 47 StringList *matches = nullptr) override; 52 StringList *matches = nullptr) override; 103 StringList *matches = nullptr) override; 106 StringList *matches = nullptr) override;
|
| H A D | ScriptInterpreter.h | 178 ExportFunctionDefinitionToInterpreter(StringList &function_def) { in ExportFunctionDefinitionToInterpreter() 185 StringList &input, in GenerateBreakpointCommandCallbackData() 193 virtual bool GenerateWatchpointCommandCallbackData(StringList &input, in GenerateWatchpointCommandCallbackData() 204 virtual bool GenerateTypeScriptFunction(StringList &input, 210 virtual bool GenerateScriptAliasFunction(StringList &input, in GenerateScriptAliasFunction() 215 virtual bool GenerateTypeSynthClass(StringList &input, std::string &output, 360 const StringList &input) { in GenerateFunction()
|
| H A D | CommandObject.h | 37 StringList &matches, StringList *descriptions = nullptr) { 160 StringList *matches = nullptr) { 169 StringList *matches = nullptr) {
|
| /llvm-project-15.0.7/lldb/include/lldb/Expression/ |
| H A D | REPL.h | 98 StringList &lines) override; 100 int IOHandlerFixIndentation(IOHandler &io_handler, const StringList &lines, 110 static int CalculateActualIndentation(const StringList &lines); 123 const StringList &lines, int cursor_position, 149 StringList m_code; // All accumulated REPL statements are saved here
|
| /llvm-project-15.0.7/lldb/unittests/Editline/ |
| H A D | EditlineTest.cpp | 78 bool GetLines(lldb_private::StringList &lines, bool &interrupted, 85 lldb_private::StringList &lines); 125 auto input_complete_cb = [this](Editline *editline, StringList &lines) { in EditlineAdapter() 178 bool EditlineAdapter::GetLines(lldb_private::StringList &lines, in GetLines() 189 lldb_private::StringList &lines) { in IsInputComplete() 296 lldb_private::StringList el_reported_lines; in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectMultiword.cpp | 42 StringList *matches) { in GetSubcommandSP() 55 StringList local_matches; in GetSubcommandSP() 76 StringList *matches) { in GetSubcommandObject() 187 StringList matches; in Execute() 258 StringList new_matches, descriptions; in HandleCompletion() 266 StringList temp_matches; in HandleCompletion() 279 StringList new_matches; in HandleCompletion() 373 StringList *matches) { in GetSubcommandSP() 381 StringList *matches) { in GetSubcommandObject()
|
| H A D | CommandObjectApropos.cpp | 49 StringList commands_found; in DoExecute() 50 StringList commands_help; in DoExecute()
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 239 const StringList &lines, in IOHandlerFixIndentation() 272 StringList &lines) { in IOHandlerIsInputComplete() 316 StringList &lines) override { in IOHandlerIsInputComplete() 406 bool GetLines(StringList &lines, bool &interrupted); 414 const StringList *GetCurrentLines() const { return m_current_lines_ptr; } in GetCurrentLines() 422 bool IsInputCompleteCallback(Editline *editline, StringList &lines); 424 int FixIndentationCallback(Editline *editline, const StringList &lines, 439 StringList *m_current_lines_ptr;
|
| /llvm-project-15.0.7/llvm/test/TableGen/ |
| H A D | interleave.td | 6 defvar StringList = ["foo", "bar", "zoo", "snork", "quux"]; 25 string Test3 = !interleave(StringList, ""); 26 string Test4 = !interleave(StringList, ", "); 27 string Test5 = !interleave(!listconcat(StringList, ["grits"]), " & ");
|
| /llvm-project-15.0.7/lldb/unittests/Interpreter/ |
| H A D | TestCompletion.cpp | 106 static bool HasEquivalentFile(const Twine &Path, const StringList &Paths) { in HasEquivalentFile() 116 StringList &Results) { in DoDirCompletions() 137 static std::vector<std::string> toVector(const StringList &SL) { in toVector() 154 StringList Results; in TEST_F() 189 StringList Results; in TEST_F() 240 StringList Results; in TEST_F()
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | Editline.h | 95 llvm::unique_function<bool(Editline *, StringList &)>; 98 llvm::unique_function<int(Editline *, StringList &, int)>; 226 bool GetLines(int first_line_number, StringList &lines, bool &interrupted); 286 StringList GetInputAsStringList(int line_count = UINT32_MAX);
|
| /llvm-project-15.0.7/llvm/unittests/DebugInfo/CodeView/ |
| H A D | TypeIndexDiscoveryTest.cpp | 178 StringListRecord Record{TypeRecordKind::StringList, Ids}; 179 } StringList; variable 307 writeTypeRecords(StringList.Record); in TEST_F() 308 checkTypeReferences(0, StringList.Ids[0], StringList.Ids[1], in TEST_F() 309 StringList.Ids[2]); in TEST_F() 428 writeTypeRecords(FuncId, MemFuncId, StringId, StringList.Record, in TEST_F() 437 checkTypeReferences(3, StringList.Ids[0], StringList.Ids[1], in TEST_F() 438 StringList.Ids[2]); in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPythonImpl.h | 55 ExportFunctionDefinitionToInterpreter(StringList &function_def) override; 57 bool GenerateTypeScriptFunction(StringList &input, std::string &output, 60 bool GenerateTypeSynthClass(StringList &input, std::string &output, 70 bool GenerateScriptAliasFunction(StringList &input, 190 const StringList &input) override; 193 StringList &input, 197 bool GenerateWatchpointCommandCallbackData(StringList &input,
|
| /llvm-project-15.0.7/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointOptions.h | 48 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData() 61 StringList user_source; 199 bool GetCommandLineCallbacks(StringList &command_list);
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | IOHandler.cpp | 274 [this](Editline *editline, StringList &lines) { in IOHandlerEditline() 297 const StringList &lines, in IOHandlerEditline() 449 StringList &lines) { in IsInputCompleteCallback() 454 const StringList &lines, in FixIndentationCallback() 521 bool IOHandlerEditline::GetLines(StringList &lines, bool &interrupted) { in GetLines() 568 StringList lines; in Run()
|
| /llvm-project-15.0.7/lldb/source/Expression/ |
| H A D | REPL.cpp | 138 bool REPL::IOHandlerIsInputComplete(IOHandler &io_handler, StringList &lines) { in IOHandlerIsInputComplete() 152 int REPL::CalculateActualIndentation(const StringList &lines) { in CalculateActualIndentation() 166 const StringList &lines, in IOHandlerFixIndentation() 503 StringList matches, descriptions; in IOHandlerComplete() 525 const StringList *current_lines = editline.GetCurrentLines(); in IOHandlerComplete()
|