Home
last modified time | relevance | path

Searched refs:AppendString (Results 1 – 25 of 37) sorted by relevance

12

/llvm-project/lldb/unittests/Utility/
H A DStringListTest.cpp23 orig.AppendString("foo"); in TEST()
24 orig.AppendString("bar"); in TEST()
39 s.AppendString("foo"); in TEST()
43 s.AppendString("bar"); in TEST()
51 s.AppendString("foo", strlen("foo")); in TEST()
55 s.AppendString("bar", strlen("bar")); in TEST()
66 s.AppendString(std::move(foo)); in TEST()
70 s.AppendString(std::move(bar)); in TEST()
137 other.AppendString("foo"); in TEST()
138 other.AppendString(""); in TEST()
[all …]
/llvm-project/lldb/test/API/functionalities/load_using_paths/
H A DTestLoadUsingPaths.py55 paths.AppendString(self.wd)
56 paths.AppendString(os.path.join(self.wd, "no_such_dir"))
74 paths.AppendString(self.hidden_dir)
110 paths.AppendString(os.path.join(self.wd, "no_such_dir"))
111 paths.AppendString(self.wd)
130 paths.AppendString("")
131 paths.AppendString(os.path.join(self.wd, "no_such_dir"))
132 paths.AppendString(self.wd)
162 paths.AppendString(self.hidden_dir)
/llvm-project/lldb/include/lldb/Utility/
H A DStringList.h38 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/lldb/source/Utility/
H A DStringList.cpp38 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 DCompletionRequest.cpp74 matches.AppendString(completion.GetCompletion()); in GetMatches()
80 descriptions.AppendString(completion.GetDescription()); in GetDescriptions()
/llvm-project/lldb/test/API/python_api/default-constructor/
H A Dsb_stringlist.py9 obj.AppendString("another string")
10 obj.AppendString(None)
/llvm-project/lldb/source/API/
H A DSBStringList.cpp65 void SBStringList::AppendString(const char *str) { in AppendString() function in SBStringList
70 m_opaque_up->AppendString(str); in AppendString()
H A DSBEnvironment.cpp96 entries.AppendString(Environment::compose(KV).c_str()); in GetEntries()
H A DSBStructuredData.cpp172 keys->AppendString(key);
/llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/
H A DTestSourceRegexBreakpoints.py34 func_names.AppendString("a_func")
97 func_names.AppendString("main_func")
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1252 data_up->user_source.AppendString(user_input); in SetBreakpointCommandCallback()
1291 auto_generated_function.AppendString(signature); in ExportFunctionDefinitionToInterpreter()
1292 auto_generated_function.AppendString( in ExportFunctionDefinitionToInterpreter()
1294 auto_generated_function.AppendString( in ExportFunctionDefinitionToInterpreter()
1297 auto_generated_function.AppendString(
1299 auto_generated_function.AppendString( in GenerateFunction()
1310 auto_generated_function.AppendString(sstr.GetData()); in GenerateFunction()
1317 auto_generated_function.AppendString( in GenerateFunction()
1319 auto_generated_function.AppendString( in GenerateFunction()
1327 auto_generated_function.AppendString(sst in GenerateFunction()
[all...]
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp103 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/lldb/test/API/functionalities/breakpoint/serialize/
H A DTestBreakpointSerialization.py348 cmd_list.AppendString("frame var")
349 cmd_list.AppendString("thread backtrace")
429 names_list.AppendString("NoSuchName")
439 names_list.AppendString(good_bkpt_name)
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/
H A DTestBreakpointLocations.py180 set_cmds.AppendString("frame var")
181 set_cmds.AppendString("bt")
/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandHistory.h40 void AppendString(llvm::StringRef str, bool reject_if_dupe = true);
H A DCommandObject.h48 matches.AppendString(iter->first.c_str());
50 descriptions->AppendString(iter->second->GetHelp());
/llvm-project/lldb/include/lldb/API/
H A DSBStringList.h30 void AppendString(const char *str);
/llvm-project/lldb/test/API/functionalities/load_lazy/
H A DTestLoadUsingLazyBind.py56 paths.AppendString(wd)
/llvm-project/lldb/test/API/commands/target/stop-hooks/
H A DTestStopHooks.py66 commands.AppendString("expr increment_gvar()")
/llvm-project/lldb/source/Interpreter/
H A DCommandHistory.cpp79 void CommandHistory::AppendString(llvm::StringRef str, bool reject_if_dupe) { in AppendString() function in CommandHistory
H A DCommandInterpreter.cpp1136 matches->AppendString(cmd_str); in GetCommandSP()
1138 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1282 matches->AppendString(exact_cmd->GetCommandName()); in GetUserCommandObject()
1284 descriptions->AppendString(exact_cmd->GetHelp()); in GetUserCommandObject()
1320 matches->AppendString(exact_cmd->GetCommandName()); in GetAliasFullName()
1323 descriptions->AppendString(exact_cmd->GetHelp()); in GetAliasFullName()
2053 m_command_history.AppendString(original_command_string); in HandleCommand()
2996 commands_found.AppendString(command_name);
2997 commands_help.AppendString(cmd_obj->GetHelp()); in GetExecutionContext()
3007 commands_found.AppendString(qualified_nam in OverrideExecutionContext()
[all...]
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/
H A DTestBreakpointNames.py91 self.cmd_list.AppendString("frame var")
92 self.cmd_list.AppendString("bt")
/llvm-project/lldb/source/Host/common/
H A DEditline.cpp451 lines.AppendString(buffer); in GetInputAsStringList()
453 lines.AppendString(line); in GetInputAsStringList()
645 lines.AppendString(buffer); in BreakLineCommand()
647 lines.AppendString(new_line_fragment); in BreakLineCommand()
818 lines.AppendString(""); in NextLineCommand()
/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp220 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp5346 details.AppendString(module_stream.GetString()); in ComputeDetailsList()
5354 details.AppendString(compile_unit_stream.GetString()); in ComputeDetailsList()
5361 details.AppendString(function_stream.GetString()); in ComputeDetailsList()
5368 details.AppendString(location_stream.GetString()); in ComputeDetailsList()
5380 details.AppendString(symbol_stream.GetString()); in ComputeDetailsList()
5389 details.AppendString(address_stream.GetString()); in ComputeDetailsList()
5402 details.AppendString(indirect_target_stream.GetString()); in ComputeDetailsList()
5409 details.AppendString(resolved_stream.GetString()); in ComputeDetailsList()
5414 details.AppendString(hardware_stream.GetString()); in ComputeDetailsList()
5419 details.AppendString(hit_count_strea in ComputeDetailsList()
[all...]

12