Lines Matching defs:other
61 XcodeSDK &XcodeSDK::operator=(const XcodeSDK &other) = default;
63 bool XcodeSDK::operator==(const XcodeSDK &other) const {
64 return m_name == other.m_name;
145 bool XcodeSDK::Info::operator<(const Info &other) const {
147 std::tie(other.type, other.version, other.internal);
150 bool XcodeSDK::Info::operator==(const Info &other) const {
152 std::tie(other.type, other.version, other.internal);
155 void XcodeSDK::Merge(const XcodeSDK &other) {
158 auto r = other.Parse();
160 *this = other;