| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | StringList.h | 37 void AppendString(const std::string &s); 39 void AppendString(std::string &&s); 41 void AppendString(const char *str); 43 void AppendString(const char *str, size_t str_len); 45 void AppendString(llvm::StringRef str);
|
| /freebsd-13.1/contrib/llvm-project/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) { m_strings.push_back(s); } in AppendString() function in StringList 47 void StringList::AppendString(const char *str, size_t str_len) { in AppendString() function in StringList 52 void StringList::AppendString(llvm::StringRef str) { in AppendString() function in StringList 206 AppendString(str); in operator <<() 211 AppendString(str); in operator <<()
|
| H A D | CompletionRequest.cpp | 74 matches.AppendString(completion.GetCompletion()); in GetMatches() 80 descriptions.AppendString(completion.GetDescription()); in GetDescriptions()
|
| H A D | ArchSpec.cpp | 258 list.AppendString(g_core_definitions[i].name); in ListSupportedArchNames()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBStringList.cpp | 62 void SBStringList::AppendString(const char *str) { in AppendString() function in SBStringList 63 LLDB_RECORD_METHOD(void, SBStringList, AppendString, (const char *), str); in AppendString() 67 m_opaque_up->AppendString(str); in AppendString() 150 LLDB_REGISTER_METHOD(void, SBStringList, AppendString, (const char *)); in RegisterMethods()
|
| H A D | SBEnvironment.cpp | 102 entries.AppendString(Environment::compose(KV).c_str()); in GetEntries()
|
| H A D | SBStructuredData.cpp | 153 keys.AppendString(key.str().c_str()); in GetKeys()
|
| H A D | SBBreakpoint.cpp | 744 names.AppendString(name.c_str()); in GetNames()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_printf.cpp | 107 static int AppendString(char **buff, const char *buff_end, int width, in AppendString() function 125 result += AppendString(buff, buff_end, 0, -1, "0x"); in AppendPointer() 209 result += AppendString(&buff, buff_end, left_justified ? -width : width, in VSNPrintf()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBStringList.i | 30 AppendString (const char *str);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectMultiword.cpp | 39 matches->AppendString(sub_cmd); in GetSubcommandSP() 244 commands_found.AppendString(complete_command_name.GetString()); in AproposAllSubCommands() 245 commands_help.AppendString(sub_cmd_obj->GetHelp()); in AproposAllSubCommands()
|
| H A D | CommandObjectWatchpointCommand.cpp | 262 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
|
| H A D | CommandObjectBreakpointCommand.cpp | 275 cmd_data->user_source.AppendString(oneliner); in SetBreakpointCommandCallback()
|
| H A D | CommandObjectExpression.cpp | 661 history.AppendString(fixed_command); in DoExecute()
|
| /freebsd-13.1/contrib/llvm-project/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());
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBStringList.h | 30 void AppendString(const char *str);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 1364 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback() 1405 auto_generated_function.AppendString(signature); in GenerateFunction() 1406 auto_generated_function.AppendString( in GenerateFunction() 1408 auto_generated_function.AppendString( in GenerateFunction() 1411 auto_generated_function.AppendString( in GenerateFunction() 1413 auto_generated_function.AppendString( in GenerateFunction() 1426 auto_generated_function.AppendString( in GenerateFunction() 1429 auto_generated_function.AppendString( in GenerateFunction() 1432 auto_generated_function.AppendString( in GenerateFunction() 1435 auto_generated_function.AppendString( in GenerateFunction() [all …]
|
| /freebsd-13.1/contrib/llvm-project/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 | 993 matches->AppendString(cmd_str); in GetCommandSP() 995 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP() 1121 matches->AppendString(command_obj->GetCommandName()); in GetCommandObject() 1123 descriptions->AppendString(command_obj->GetHelp()); in GetCommandObject() 1787 m_command_history.AppendString(original_command_string); in HandleCommand() 2692 commands_found.AppendString(cmd_obj->GetCommandName()); in FindCommandsForApropos() 2693 commands_help.AppendString(cmd_obj->GetHelp()); in FindCommandsForApropos()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | Editline.cpp | 455 lines.AppendString(m_utf8conv.to_bytes(line)); in GetInputAsStringList() 457 lines.AppendString(line); in GetInputAsStringList() 645 lines.AppendString(m_utf8conv.to_bytes(new_line_fragment)); in BreakLineCommand() 647 lines.AppendString(new_line_fragment); in BreakLineCommand() 817 lines.AppendString(""); in NextLineCommand()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 220 m_code.AppendString(""); in IOHandlerInputComplete()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandler.cpp | 541 lines.AppendString(line); in GetLines()
|
| H A D | FormatEntity.cpp | 2380 matches.AppendString(MakeMatch(prefix, def->children[i].name)); in AddMatches() 2383 matches.AppendString( in AddMatches()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointOptions.cpp | 100 data_up->user_source.AppendString(elem_string); in CreateFromStructuredData()
|