Searched refs:strv (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBStringList.i30 AppendList (const char **strv, int strc);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBStringList.cpp73 void SBStringList::AppendList(const char **strv, int strc) { argument
74 LLDB_RECORD_METHOD(void, SBStringList, AppendList, (const char **, int), strv,
77 if ((strv != nullptr) && (strc > 0)) {
79 m_opaque_up->AppendList(strv, strc);
81 m_opaque_up.reset(new lldb_private::StringList(strv, strc));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBStringList.h32 void AppendList(const char **strv, int strc);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStringList.cpp29 StringList::StringList(const char **strv, int strc) : m_strings() { argument
31 if (strv[i])
32 m_strings.push_back(strv[i]);
56 void StringList::AppendList(const char **strv, int strc) { argument
58 if (strv[i])
59 m_strings.push_back(strv[i]);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringList.h33 StringList(const char **strv, int strc);
47 void AppendList(const char **strv, int strc);

Completed in 70 milliseconds