Lines Matching defs: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);
74 inline String16& operator+=(const String16& other);
75 inline String16 operator+(const String16& other) const;
94 inline int compare(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;
101 inline bool operator>(const String16& 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;
108 inline bool operator>(const char16_t* other) const;
150 inline String16& String16::operator=(const String16& other)
152 setTo(other);
156 inline String16& String16::operator+=(const String16& other)
158 append(other);
162 inline String16 String16::operator+(const String16& other) const
165 tmp += other;
169 inline int String16::compare(const String16& other) const
171 return strzcmp16(mString, size(), other.mString, other.size());
174 inline bool String16::operator<(const String16& other) const
176 return strzcmp16(mString, size(), other.mString, other.size()) < 0;
179 inline bool String16::operator<=(const String16& other) const
181 return strzcmp16(mString, size(), other.mString, other.size()) <= 0;
184 inline bool String16::operator==(const String16& other) const
186 return strzcmp16(mString, size(), other.mString, other.size()) == 0;
189 inline bool String16::operator!=(const String16& other) const
191 return strzcmp16(mString, size(), other.mString, other.size()) != 0;
194 inline bool String16::operator>=(const String16& other) const
196 return strzcmp16(mString, size(), other.mString, other.size()) >= 0;
199 inline bool String16::operator>(const String16& other) const
201 return strzcmp16(mString, size(), other.mString, other.size()) > 0;
204 inline bool String16::operator<(const char16_t* other) const
206 return strcmp16(mString, other) < 0;
209 inline bool String16::operator<=(const char16_t* other) const
211 return strcmp16(mString, other) <= 0;
214 inline bool String16::operator==(const char16_t* other) const
216 return strcmp16(mString, other) == 0;
219 inline bool String16::operator!=(const char16_t* other) const
221 return strcmp16(mString, other) != 0;
224 inline bool String16::operator>=(const char16_t* other) const
226 return strcmp16(mString, other) >= 0;
229 inline bool String16::operator>(const char16_t* other) const
231 return strcmp16(mString, other) > 0;