Home
last modified time | relevance | path

Searched defs:AppendString (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DStringList.cpp39 void StringList::AppendString(const char *str) { in AppendString() function in StringList
44 void StringList::AppendString(const std::string &s) { m_strings.push_back(s); } in AppendString() function in StringList
46 void StringList::AppendString(std::string &&s) { m_strings.push_back(s); } in AppendString() function in StringList
48 void StringList::AppendString(const char *str, size_t str_len) { in AppendString() function in StringList
53 void StringList::AppendString(llvm::StringRef str) { in AppendString() function in StringList
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBStringList.cpp52 void SBStringList::AppendString(const char *str) { in AppendString() function in SBStringList
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandHistory.cpp83 void CommandHistory::AppendString(llvm::StringRef str, bool reject_if_dupe) { in AppendString() function in CommandHistory
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cc104 static int AppendString(char **buff, const char *buff_end, int width, in AppendString() function