Lines Matching refs:other

75             void                setTo(const String16& other);
76 status_t setTo(const char16_t* other);
77 status_t setTo(const char16_t* other, size_t len);
78 status_t setTo(const String16& other,
82 status_t append(const String16& other);
83 status_t append(const char16_t* other, size_t len);
85 inline String16& operator=(const String16& other);
87 inline String16& operator+=(const String16& other);
88 inline String16 operator+(const String16& other) const;
109 inline int compare(const String16& other) const;
111 inline bool operator<(const String16& other) const;
112 inline bool operator<=(const String16& other) const;
113 inline bool operator==(const String16& other) const;
114 inline bool operator!=(const String16& other) const;
115 inline bool operator>=(const String16& other) const;
116 inline bool operator>(const String16& other) const;
118 inline bool operator<(const char16_t* other) const;
119 inline bool operator<=(const char16_t* other) const;
120 inline bool operator==(const char16_t* other) const;
121 inline bool operator!=(const char16_t* other) const;
122 inline bool operator>=(const char16_t* other) const;
123 inline bool operator>(const char16_t* other) const;
158 inline String16& String16::operator=(const String16& other)
160 setTo(other);
164 inline String16& String16::operator+=(const String16& other)
166 append(other);
170 inline String16 String16::operator+(const String16& other) const
173 tmp += other;
177 inline int String16::compare(const String16& other) const
179 return strzcmp16(mString, size(), other.mString, other.size());
182 inline bool String16::operator<(const String16& other) const
184 return strzcmp16(mString, size(), other.mString, other.size()) < 0;
187 inline bool String16::operator<=(const String16& other) const
189 return strzcmp16(mString, size(), other.mString, other.size()) <= 0;
192 inline bool String16::operator==(const String16& other) const
194 return strzcmp16(mString, size(), other.mString, other.size()) == 0;
197 inline bool String16::operator!=(const String16& other) const
199 return strzcmp16(mString, size(), other.mString, other.size()) != 0;
202 inline bool String16::operator>=(const String16& other) const
204 return strzcmp16(mString, size(), other.mString, other.size()) >= 0;
207 inline bool String16::operator>(const String16& other) const
209 return strzcmp16(mString, size(), other.mString, other.size()) > 0;
212 inline bool String16::operator<(const char16_t* other) const
214 return strcmp16(mString, other) < 0;
217 inline bool String16::operator<=(const char16_t* other) const
219 return strcmp16(mString, other) <= 0;
222 inline bool String16::operator==(const char16_t* other) const
224 return strcmp16(mString, other) == 0;
227 inline bool String16::operator!=(const char16_t* other) const
229 return strcmp16(mString, other) != 0;
232 inline bool String16::operator>=(const char16_t* other) const
234 return strcmp16(mString, other) >= 0;
237 inline bool String16::operator>(const char16_t* other) const
239 return strcmp16(mString, other) > 0;