Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Utility/
DStringList.h84 void InsertStringAtIndex(size_t idx, const std::string &str);
86 void InsertStringAtIndex(size_t idx, std::string &&str);
88 void InsertStringAtIndex(size_t id, const char *str);
/external/llvm-project/lldb/unittests/Utility/
DStringListTest.cpp326 s.InsertStringAtIndex(0, "bar"); in TEST()
330 s.InsertStringAtIndex(0, "foo"); in TEST()
339 s.InsertStringAtIndex(0, "foo"); in TEST()
343 s.InsertStringAtIndex(1, "bar"); in TEST()
352 s.InsertStringAtIndex(1, "foo"); in TEST()
358 s.InsertStringAtIndex(3, "bar"); in TEST()
368 s.InsertStringAtIndex(0, foo); in TEST()
377 s.InsertStringAtIndex(0, std::move(foo)); in TEST()
/external/llvm-project/lldb/source/Utility/
DStringList.cpp118 void StringList::InsertStringAtIndex(size_t idx, const char *str) { in InsertStringAtIndex() function in StringList
127 void StringList::InsertStringAtIndex(size_t idx, const std::string &str) { in InsertStringAtIndex() function in StringList
134 void StringList::InsertStringAtIndex(size_t idx, std::string &&str) { in InsertStringAtIndex() function in StringList
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp286 lldb_matches.InsertStringAtIndex(0, ""); in HandleCompletionWithDescriptions()
287 lldb_descriptions.InsertStringAtIndex(0, ""); in HandleCompletionWithDescriptions()
307 lldb_matches.InsertStringAtIndex(0, common_prefix.c_str()); in HandleCompletionWithDescriptions()
308 lldb_descriptions.InsertStringAtIndex(0, ""); in HandleCompletionWithDescriptions()