Home
last modified time | relevance | path

Searched refs:InsertStringAtIndex (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DStringList.h77 void InsertStringAtIndex(size_t idx, const std::string &str);
79 void InsertStringAtIndex(size_t idx, std::string &&str);
81 void InsertStringAtIndex(size_t id, const char *str);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DStringList.cpp122 void StringList::InsertStringAtIndex(size_t idx, const char *str) { in InsertStringAtIndex() function in StringList
131 void StringList::InsertStringAtIndex(size_t idx, const std::string &str) { in InsertStringAtIndex() function in StringList
138 void StringList::InsertStringAtIndex(size_t idx, std::string &&str) { in InsertStringAtIndex() function in StringList
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1848 matches.InsertStringAtIndex(0, *hist_str); in HandleCompletion()
1849 descriptions.InsertStringAtIndex(0, "Previous command history event"); in HandleCompletion()
1868 matches.InsertStringAtIndex(0, ""); in HandleCompletion()
1869 descriptions.InsertStringAtIndex(0, ""); in HandleCompletion()
1890 matches.InsertStringAtIndex(0, common_prefix.c_str()); in HandleCompletion()
1891 descriptions.InsertStringAtIndex(0, ""); in HandleCompletion()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp254 matches.InsertStringAtIndex(0, std::move(common_prefix)); in IOHandlerComplete()