Lines Matching refs:lhs
422 …friend bool operator==(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>…
424 …return lhs.GetLength() == rhs.GetLength() && std::memcmp(lhs.GetString(), rhs.GetString(), sizeof(…
427 friend bool operator==(const FixedLengthString& lhs, const Char* rhs)
429 …return std::memcmp(lhs.m_Data, rhs, sizeof(Char) * lhs.GetLength()) == 0 && rhs[lhs.GetLength()] =…
432 friend bool operator==(const Char* lhs, const FixedLengthString& rhs)
434 return rhs == lhs;
438 …friend bool operator!=(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>…
440 return !(lhs == rhs);
443 friend bool operator!=(const FixedLengthString& lhs, const Char* rhs)
445 return !(lhs == rhs);
448 friend bool operator!=(const Char* lhs, const FixedLengthString& rhs)
450 return !(lhs == rhs);
454 …friend bool operator<(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>& …
456 …int n = std::memcmp(lhs.GetString(), rhs.GetString(), sizeof(Char) * std::min(lhs.GetLength(), rhs…
457 return n < 0 || (n == 0 && lhs.GetLength() < rhs.GetLength());
461 …friend bool operator>(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>& …
463 return rhs < lhs;
467 …friend bool operator<=(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>&…
469 return !(lhs > rhs);
473 …friend bool operator>=(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>&…
475 return rhs <= lhs;