Lines Matching refs:other

62             void                setTo(const String16& other);
63 status_t setTo(const char16_t* other);
64 status_t setTo(const char16_t* other, size_t len);
65 status_t setTo(const String16& other,
69 status_t append(const String16& other);
70 status_t append(const char16_t* other, size_t len);
72 inline String16& operator=(const String16& other);
73 String16& operator=(String16&& other) noexcept;
75 inline String16& operator+=(const String16& other);
76 inline String16 operator+(const String16& other) const;
93 inline int compare(const String16& other) const;
95 inline bool operator<(const String16& other) const;
96 inline bool operator<=(const String16& other) const;
97 inline bool operator==(const String16& other) const;
98 inline bool operator!=(const String16& other) const;
99 inline bool operator>=(const String16& other) const;
100 inline bool operator>(const String16& other) const;
102 inline bool operator<(const char16_t* other) const;
103 inline bool operator<=(const char16_t* other) const;
104 inline bool operator==(const char16_t* other) const;
105 inline bool operator!=(const char16_t* other) const;
106 inline bool operator>=(const char16_t* other) const;
107 inline bool operator>(const char16_t* other) const;
208 constexpr StaticString16(const StaticString16<N>& other) in StaticString16() argument
209 : String16(mData), mData(other.mData) {} in StaticString16()
247 inline String16& String16::operator=(const String16& other)
249 setTo(other);
253 inline String16& String16::operator+=(const String16& other)
255 append(other);
259 inline String16 String16::operator+(const String16& other) const
262 tmp += other;
266 inline int String16::compare(const String16& other) const in compare() argument
268 return strzcmp16(mString, size(), other.mString, other.size()); in compare()
271 inline bool String16::operator<(const String16& other) const
273 return strzcmp16(mString, size(), other.mString, other.size()) < 0;
276 inline bool String16::operator<=(const String16& other) const
278 return strzcmp16(mString, size(), other.mString, other.size()) <= 0;
281 inline bool String16::operator==(const String16& other) const
283 return strzcmp16(mString, size(), other.mString, other.size()) == 0;
286 inline bool String16::operator!=(const String16& other) const
288 return strzcmp16(mString, size(), other.mString, other.size()) != 0;
291 inline bool String16::operator>=(const String16& other) const
293 return strzcmp16(mString, size(), other.mString, other.size()) >= 0;
296 inline bool String16::operator>(const String16& other) const
298 return strzcmp16(mString, size(), other.mString, other.size()) > 0;
301 inline bool String16::operator<(const char16_t* other) const
303 return strcmp16(mString, other) < 0;
306 inline bool String16::operator<=(const char16_t* other) const
308 return strcmp16(mString, other) <= 0;
311 inline bool String16::operator==(const char16_t* other) const
313 return strcmp16(mString, other) == 0;
316 inline bool String16::operator!=(const char16_t* other) const
318 return strcmp16(mString, other) != 0;
321 inline bool String16::operator>=(const char16_t* other) const
323 return strcmp16(mString, other) >= 0;
326 inline bool String16::operator>(const char16_t* other) const
328 return strcmp16(mString, other) > 0;