Lines Matching defs:other
67 void swap(String16& other) {
68 m_impl.swap(other.m_impl);
69 std::swap(hash_code, other.hash_code);
91 inline bool operator==(const String16& other) const {
92 return m_impl == other.m_impl;
94 inline bool operator<(const String16& other) const {
95 return m_impl < other.m_impl;
97 inline bool operator!=(const String16& other) const {
98 return m_impl != other.m_impl;
100 inline String16 operator+(const String16& other) const {
101 return String16(m_impl + other.m_impl);
103 inline String16& operator+=(const String16& other) {
104 m_impl += other.m_impl;