Lines Matching defs:SymbolContextList
721 module](const SymbolContextList &sc_list,
834 SymbolContextList sc_list;
846 SymbolContextList sc_list;
1124 // SymbolContextList
1127 SymbolContextList::SymbolContextList() : m_symbol_contexts() {}
1129 SymbolContextList::~SymbolContextList() = default;
1131 void SymbolContextList::Append(const SymbolContext &sc) {
1135 void SymbolContextList::Append(const SymbolContextList &sc_list) {
1141 uint32_t SymbolContextList::AppendIfUnique(const SymbolContextList &sc_list,
1152 bool SymbolContextList::AppendIfUnique(const SymbolContext &sc,
1186 void SymbolContextList::Clear() { m_symbol_contexts.clear(); }
1188 void SymbolContextList::Dump(Stream *s, Target *target) const {
1192 s->PutCString("SymbolContextList");
1204 bool SymbolContextList::GetContextAtIndex(size_t idx, SymbolContext &sc) const {
1212 bool SymbolContextList::RemoveContextAtIndex(size_t idx) {
1220 uint32_t SymbolContextList::GetSize() const { return m_symbol_contexts.size(); }
1222 bool SymbolContextList::IsEmpty() const { return m_symbol_contexts.empty(); }
1224 uint32_t SymbolContextList::NumLineEntriesWithLine(uint32_t line) const {
1234 void SymbolContextList::GetDescription(Stream *s, lldb::DescriptionLevel level,
1241 bool lldb_private::operator==(const SymbolContextList &lhs,
1242 const SymbolContextList &rhs) {
1258 bool lldb_private::operator!=(const SymbolContextList &lhs,
1259 const SymbolContextList &rhs) {