Lines Matching defs:lhs
378 bool lldb_private::operator==(const SymbolContext &lhs,
380 return lhs.function == rhs.function && lhs.symbol == rhs.symbol &&
381 lhs.module_sp.get() == rhs.module_sp.get() &&
382 lhs.comp_unit == rhs.comp_unit &&
383 lhs.target_sp.get() == rhs.target_sp.get() &&
384 LineEntry::Compare(lhs.line_entry, rhs.line_entry) == 0 &&
385 lhs.variable == rhs.variable;
388 bool lldb_private::operator!=(const SymbolContext &lhs,
390 return !(lhs == rhs);
1307 bool lldb_private::operator==(const SymbolContextList &lhs,
1309 const uint32_t size = lhs.GetSize();
1316 lhs.GetContextAtIndex(i, lhs_sc);
1324 bool lldb_private::operator!=(const SymbolContextList &lhs,
1326 return !(lhs == rhs);