Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDCompileUnit.cpp27 m_functions (), in CompileUnit()
44 m_functions (), in CompileUnit()
117 if (!m_functions.empty()) in Dump()
121 std::vector<FunctionSP>::const_iterator end = m_functions.end(); in Dump()
122 for (pos = m_functions.begin(); pos != end; ++pos) in Dump()
139 m_functions.push_back(funcSP); in AddFunction()
146 if (idx < m_functions.size()) in GetFunctionAtIndex()
147 funcSP = m_functions[idx]; in GetFunctionAtIndex()
200 if (!m_functions.empty()) in FindFunctionByUID()
203 std::vector<FunctionSP>::const_iterator end = m_functions.end(); in FindFunctionByUID()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDCompileUnit.h413 …std::vector<lldb::FunctionSP> m_functions; ///< The sparsely populated list of shared pointers to … variable