Lines Matching refs:m_symbol_contexts

970     m_symbol_contexts()  in SymbolContextList()
981 m_symbol_contexts.push_back(sc); in Append()
987 collection::const_iterator pos, end = sc_list.m_symbol_contexts.end(); in Append()
988 for (pos = sc_list.m_symbol_contexts.begin(); pos != end; ++pos) in Append()
989 m_symbol_contexts.push_back (*pos); in Append()
997 collection::const_iterator pos, end = sc_list.m_symbol_contexts.end(); in AppendIfUnique()
998 for (pos = sc_list.m_symbol_contexts.begin(); pos != end; ++pos) in AppendIfUnique()
1009 collection::iterator pos, end = m_symbol_contexts.end(); in AppendIfUnique()
1010 for (pos = m_symbol_contexts.begin(); pos != end; ++pos) in AppendIfUnique()
1024 for (pos = m_symbol_contexts.begin(); pos != end; ++pos) in AppendIfUnique()
1047 m_symbol_contexts.push_back(sc); in AppendIfUnique()
1064 const size_t end = std::min<size_t>(m_symbol_contexts.size(), stop_idx); in MergeSymbolContextIntoFunctionContext()
1067 const SymbolContext &function_sc = m_symbol_contexts[i]; in MergeSymbolContextIntoFunctionContext()
1083 m_symbol_contexts[i].symbol = symbol_sc.symbol; in MergeSymbolContextIntoFunctionContext()
1097 m_symbol_contexts.clear(); in Clear()
1110 collection::const_iterator pos, end = m_symbol_contexts.end(); in Dump()
1111 for (pos = m_symbol_contexts.begin(); pos != end; ++pos) in Dump()
1122 if (idx < m_symbol_contexts.size()) in GetContextAtIndex()
1124 sc = m_symbol_contexts[idx]; in GetContextAtIndex()
1133 if (!m_symbol_contexts.empty()) in GetLastContext()
1135 sc = m_symbol_contexts.back(); in GetLastContext()
1144 if (idx < m_symbol_contexts.size()) in RemoveContextAtIndex()
1146 m_symbol_contexts.erase(m_symbol_contexts.begin() + idx); in RemoveContextAtIndex()
1155 return m_symbol_contexts.size(); in GetSize()
1162 const size_t size = m_symbol_contexts.size(); in NumLineEntriesWithLine()
1165 if (m_symbol_contexts[idx].line_entry.line == line) in NumLineEntriesWithLine()
1176 const size_t size = m_symbol_contexts.size(); in GetDescription()
1178 m_symbol_contexts[idx].GetDescription (s, level, target); in GetDescription()