Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.cpp240 m_type_vector.push_back(std::string(type, (cursor - type))); in ObjCRuntimeMethodType()
303 if (!m_is_valid || m_type_vector.size() < 3) in BuildMethod()
349 clang_ast_ctxt, m_type_vector[0].c_str(), for_expression)); in BuildMethod()
362 for (size_t ai = 3, ae = m_type_vector.size(); ai != ae; ++ai) { in BuildMethod()
366 clang_ast_ctxt, m_type_vector[ai].c_str(), for_expression)); in BuildMethod()
386 size_t GetNumTypes() { return m_type_vector.size(); } in GetNumTypes()
388 const char *GetTypeAtIndex(size_t idx) { return m_type_vector[idx].c_str(); } in GetTypeAtIndex()
393 TypeVector m_type_vector; member in ObjCRuntimeMethodType