| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | StringListTest.cpp | 23 orig.AppendString("foo"); in TEST() 24 orig.AppendString("bar"); in TEST() 39 s.AppendString("foo"); in TEST() 43 s.AppendString("bar"); in TEST() 303 s.AppendString(""); in TEST() 304 s.AppendString(""); in TEST() 306 s.AppendString(""); in TEST() 308 s.AppendString(""); in TEST() 309 s.AppendString(""); in TEST() 311 s.AppendString(""); in TEST() [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/load_using_paths/ |
| H A D | TestLoadUsingPaths.py | 58 paths.AppendString(self.wd) 59 paths.AppendString(os.path.join(self.wd, "no_such_dir")) 73 paths.AppendString(self.hidden_dir) 100 paths.AppendString(os.path.join(self.wd, "no_such_dir")) 101 paths.AppendString(self.wd) 114 paths.AppendString("") 115 paths.AppendString(os.path.join(self.wd, "no_such_dir")) 116 paths.AppendString(self.wd) 136 paths.AppendString(self.hidden_dir)
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | StringList.h | 38 void AppendString(const std::string &s); 40 void AppendString(std::string &&s); 42 void AppendString(const char *str); 44 void AppendString(const char *str, size_t str_len); 46 void AppendString(llvm::StringRef str); 48 void AppendString(const llvm::Twine &str);
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | StringList.cpp | 38 void StringList::AppendString(const char *str) { in AppendString() function in StringList 43 void StringList::AppendString(const std::string &s) { m_strings.push_back(s); } in AppendString() function in StringList 45 void StringList::AppendString(std::string &&s) { in AppendString() function in StringList 49 void StringList::AppendString(const char *str, size_t str_len) { in AppendString() function in StringList 54 void StringList::AppendString(llvm::StringRef str) { in AppendString() function in StringList 58 void StringList::AppendString(const llvm::Twine &str) { in AppendString() function in StringList 212 AppendString(str); in operator <<() 217 AppendString(str); in operator <<()
|
| H A D | CompletionRequest.cpp | 74 matches.AppendString(completion.GetCompletion()); in GetMatches() 80 descriptions.AppendString(completion.GetDescription()); in GetDescriptions()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_stringlist.py | 9 obj.AppendString("another string") 10 obj.AppendString(None)
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBStringList.cpp | 58 void SBStringList::AppendString(const char *str) { in AppendString() function in SBStringList 63 m_opaque_up->AppendString(str); in AppendString()
|
| H A D | SBEnvironment.cpp | 96 entries.AppendString(Environment::compose(KV).c_str()); in GetEntries()
|
| H A D | SBStructuredData.cpp | 143 keys.AppendString(key.str().c_str()); in GetKeys()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/source_regexp/ |
| H A D | TestSourceRegexBreakpoints.py | 35 func_names.AppendString("a_func") 93 func_names.AppendString("main_func")
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_printf.cpp | 103 static int AppendString(char **buff, const char *buff_end, int width, in AppendString() function 121 result += AppendString(buff, buff_end, 0, -1, "0x"); in AppendPointer() 202 result += AppendString(&buff, buff_end, left_justified ? -width : width, in VSNPrintf()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBStringList.i | 30 AppendString (const char *str);
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | CommandHistory.h | 39 void AppendString(llvm::StringRef str, bool reject_if_dupe = true);
|
| H A D | CommandObject.h | 45 matches.AppendString(iter->first.c_str()); 47 descriptions->AppendString(iter->second->GetHelp());
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/serialize/ |
| H A D | TestBreakpointSerialization.py | 249 cmd_list.AppendString("frame var") 250 cmd_list.AppendString("thread backtrace") 318 names_list.AppendString("NoSuchName") 324 names_list.AppendString(good_bkpt_name)
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBStringList.h | 30 void AppendString(const char *str);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 1252 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback() 1293 auto_generated_function.AppendString(signature); in GenerateFunction() 1294 auto_generated_function.AppendString( in GenerateFunction() 1296 auto_generated_function.AppendString( in GenerateFunction() 1299 auto_generated_function.AppendString( in GenerateFunction() 1301 auto_generated_function.AppendString( in GenerateFunction() 1314 auto_generated_function.AppendString( in GenerateFunction() 1317 auto_generated_function.AppendString( in GenerateFunction() 1320 auto_generated_function.AppendString( in GenerateFunction() 1323 auto_generated_function.AppendString( in GenerateFunction() [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/load_lazy/ |
| H A D | TestLoadUsingLazyBind.py | 54 paths.AppendString(wd)
|
| /llvm-project-15.0.7/lldb/test/API/commands/target/stop-hooks/ |
| H A D | TestStopHooks.py | 64 commands.AppendString("expr increment_gvar()")
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | CommandHistory.cpp | 78 void CommandHistory::AppendString(llvm::StringRef str, bool reject_if_dupe) { in AppendString() function in CommandHistory
|
| H A D | CommandInterpreter.cpp | 1091 matches->AppendString(cmd_str); in GetCommandSP() 1093 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP() 1237 matches->AppendString(command_obj->GetCommandName()); in GetCommandObject() 1239 descriptions->AppendString(command_obj->GetHelp()); in GetCommandObject() 1256 matches->AppendString(exact_cmd->GetCommandName()); in GetUserCommandObject() 1258 descriptions->AppendString(exact_cmd->GetHelp()); in GetUserCommandObject() 1972 m_command_history.AppendString(original_command_string); in HandleCommand() 2889 commands_found.AppendString(command_name); in FindCommandsForApropos() 2890 commands_help.AppendString(cmd_obj->GetHelp()); in FindCommandsForApropos() 2900 commands_found.AppendString(qualified_name); in FindCommandsForApropos()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_names/ |
| H A D | TestBreakpointNames.py | 88 self.cmd_list.AppendString("frame var") 89 self.cmd_list.AppendString("bt")
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | Editline.cpp | 459 lines.AppendString(m_utf8conv.to_bytes(line)); in GetInputAsStringList() 461 lines.AppendString(line); in GetInputAsStringList() 649 lines.AppendString(m_utf8conv.to_bytes(new_line_fragment)); in BreakLineCommand() 651 lines.AppendString(new_line_fragment); in BreakLineCommand() 821 lines.AppendString(""); in NextLineCommand()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectWatchpointCommand.cpp | 232 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 5321 details.AppendString(module_stream.GetString()); in ComputeDetailsList() 5329 details.AppendString(compile_unit_stream.GetString()); in ComputeDetailsList() 5336 details.AppendString(function_stream.GetString()); in ComputeDetailsList() 5343 details.AppendString(location_stream.GetString()); in ComputeDetailsList() 5355 details.AppendString(symbol_stream.GetString()); in ComputeDetailsList() 5364 details.AppendString(address_stream.GetString()); in ComputeDetailsList() 5384 details.AppendString(resolved_stream.GetString()); in ComputeDetailsList() 5389 details.AppendString(hardware_stream.GetString()); in ComputeDetailsList() 5394 details.AppendString(hit_count_stream.GetString()); in ComputeDetailsList() 6196 m_text.AppendString(""); in HelpDialogDelegate() [all …]
|