Lines Matching defs:SymbolContextList
786 module](const SymbolContextList &sc_list,
899 SymbolContextList sc_list;
911 SymbolContextList sc_list;
1189 // SymbolContextList
1192 SymbolContextList::SymbolContextList() : m_symbol_contexts() {}
1194 SymbolContextList::~SymbolContextList() = default;
1196 void SymbolContextList::Append(const SymbolContext &sc) {
1200 void SymbolContextList::Append(const SymbolContextList &sc_list) {
1206 uint32_t SymbolContextList::AppendIfUnique(const SymbolContextList &sc_list,
1217 bool SymbolContextList::AppendIfUnique(const SymbolContext &sc,
1252 void SymbolContextList::Clear() { m_symbol_contexts.clear(); }
1254 void SymbolContextList::Dump(Stream *s, Target *target) const {
1258 s->PutCString("SymbolContextList");
1270 bool SymbolContextList::GetContextAtIndex(size_t idx, SymbolContext &sc) const {
1278 bool SymbolContextList::RemoveContextAtIndex(size_t idx) {
1286 uint32_t SymbolContextList::GetSize() const { return m_symbol_contexts.size(); }
1288 bool SymbolContextList::IsEmpty() const { return m_symbol_contexts.empty(); }
1290 uint32_t SymbolContextList::NumLineEntriesWithLine(uint32_t line) const {
1300 void SymbolContextList::GetDescription(Stream *s, lldb::DescriptionLevel level,
1307 bool lldb_private::operator==(const SymbolContextList &lhs,
1308 const SymbolContextList &rhs) {
1324 bool lldb_private::operator!=(const SymbolContextList &lhs,
1325 const SymbolContextList &rhs) {