Lines Matching defs:other

69             void                setTo(const String16& other);
70 status_t setTo(const char16_t* other);
71 status_t setTo(const char16_t* other, size_t len);
72 status_t setTo(const String16& other,
76 status_t append(const String16& other);
77 status_t append(const char16_t* other, size_t len);
79 inline String16& operator=(const String16& other);
81 inline String16& operator+=(const String16& other);
82 inline String16 operator+(const String16& other) const;
103 inline int compare(const String16& other) const;
105 inline bool operator<(const String16& other) const;
106 inline bool operator<=(const String16& other) const;
107 inline bool operator==(const String16& other) const;
108 inline bool operator!=(const String16& other) const;
109 inline bool operator>=(const String16& other) const;
110 inline bool operator>(const String16& other) const;
112 inline bool operator<(const char16_t* other) const;
113 inline bool operator<=(const char16_t* other) const;
114 inline bool operator==(const char16_t* other) const;
115 inline bool operator!=(const char16_t* other) const;
116 inline bool operator>=(const char16_t* other) const;
117 inline bool operator>(const char16_t* other) const;
147 inline String16& String16::operator=(const String16& other)
149 setTo(other);
153 inline String16& String16::operator+=(const String16& other)
155 append(other);
159 inline String16 String16::operator+(const String16& other) const
162 tmp += other;
166 inline int String16::compare(const String16& other) const
168 return strzcmp16(mString, size(), other.mString, other.size());
171 inline bool String16::operator<(const String16& other) const
173 return strzcmp16(mString, size(), other.mString, other.size()) < 0;
176 inline bool String16::operator<=(const String16& other) const
178 return strzcmp16(mString, size(), other.mString, other.size()) <= 0;
181 inline bool String16::operator==(const String16& other) const
183 return strzcmp16(mString, size(), other.mString, other.size()) == 0;
186 inline bool String16::operator!=(const String16& other) const
188 return strzcmp16(mString, size(), other.mString, other.size()) != 0;
191 inline bool String16::operator>=(const String16& other) const
193 return strzcmp16(mString, size(), other.mString, other.size()) >= 0;
196 inline bool String16::operator>(const String16& other) const
198 return strzcmp16(mString, size(), other.mString, other.size()) > 0;
201 inline bool String16::operator<(const char16_t* other) const
203 return strcmp16(mString, other) < 0;
206 inline bool String16::operator<=(const char16_t* other) const
208 return strcmp16(mString, other) <= 0;
211 inline bool String16::operator==(const char16_t* other) const
213 return strcmp16(mString, other) == 0;
216 inline bool String16::operator!=(const char16_t* other) const
218 return strcmp16(mString, other) != 0;
221 inline bool String16::operator>=(const char16_t* other) const
223 return strcmp16(mString, other) >= 0;
226 inline bool String16::operator>(const char16_t* other) const
228 return strcmp16(mString, other) > 0;