Lines Matching refs:rhs
53 bool operator==(const AvailabilityValues& rhs) const {
55 std::tie(rhs.introduced, rhs.deprecated, rhs.obsoleted);
58 bool operator!=(const AvailabilityValues& rhs) const {
59 return !(*this == rhs);
83 bool operator==(const DeclarationAvailability& rhs) const {
85 std::tie(rhs.global_availability, rhs.arch_availability);
88 bool operator!=(const DeclarationAvailability& rhs) const {
89 return !(*this == rhs);
102 bool operator<(const FileLocation& rhs) const {
103 return std::tie(line, column) < std::tie(rhs.line, rhs.column);
106 bool operator==(const FileLocation& rhs) const {
107 return std::tie(line, column) == std::tie(rhs.line, rhs.column);
116 bool operator<(const Location& rhs) const {
117 return std::tie(filename, start, end) < std::tie(rhs.filename, rhs.start, rhs.end);
134 bool operator<(const Declaration& rhs) const {
135 return location < rhs.location;
173 bool operator<(const Symbol& rhs) const {
174 return name < rhs.name;
177 bool operator==(const Symbol& rhs) const {
178 return name == rhs.name;