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.cpp241 m_type_vector.push_back(std::string(type, (cursor - type))); in ObjCRuntimeMethodType()
304 if (!m_is_valid || m_type_vector.size() < 3) in BuildMethod()
350 clang_ast_ctxt, m_type_vector[0].c_str(), for_expression)); in BuildMethod()
363 for (size_t ai = 3, ae = m_type_vector.size(); ai != ae; ++ai) { in BuildMethod()
367 clang_ast_ctxt, m_type_vector[ai].c_str(), for_expression)); in BuildMethod()
387 size_t GetNumTypes() { return m_type_vector.size(); } in GetNumTypes()
389 const char *GetTypeAtIndex(size_t idx) { return m_type_vector[idx].c_str(); } in GetTypeAtIndex()
394 TypeVector m_type_vector; member in ObjCRuntimeMethodType