Searched refs:strc (Results 1 – 5 of 5) sorted by relevance
/llvm-project/lldb/source/API/ |
H A D | SBStringList.cpp | 76 void SBStringList::AppendList(const char **strv, int strc) { in AppendList() argument 77 LLDB_INSTRUMENT_VA(this, strv, strc); in AppendList() 79 if ((strv != nullptr) && (strc > 0)) { in AppendList() 81 m_opaque_up->AppendList(strv, strc); in AppendList() 83 m_opaque_up = std::make_unique<lldb_private::StringList>(strv, strc); in AppendList()
|
/llvm-project/lldb/source/Utility/ |
H A D | StringList.cpp | 29 StringList::StringList(const char **strv, int strc) : m_strings() { in StringList() argument 30 for (int i = 0; i < strc; ++i) { in StringList() 62 void StringList::AppendList(const char **strv, int strc) { in AppendList() argument 63 for (int i = 0; i < strc; ++i) { in AppendList()
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | StringList.h | 34 StringList(const char **strv, int strc); 50 void AppendList(const char **strv, int strc);
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBStringList.h | 32 void AppendList(const char **strv, int strc);
|
/llvm-project/llvm/test/Linker/ |
H A D | 2004-05-07-TypeResolution1.ll | 22 @strc = constant [12 x i8] zeroinitializer ; <ptr> [#uses=0]
|