Home | History | Annotate | Download | only in utils

Lines Matching defs:char16_t

60     explicit                    String16(const char16_t* o);
61 explicit String16(const char16_t* o, size_t len);
68 inline const char16_t* string() const;
75 status_t setTo(const char16_t* other);
76 status_t setTo(const char16_t* other, size_t len);
82 status_t append(const char16_t* other, size_t len);
89 status_t insert(size_t pos, const char16_t* chrs);
91 const char16_t* chrs, size_t len);
93 ssize_t findFirst(char16_t c) const;
94 ssize_t findLast(char16_t c) const;
97 bool startsWith(const char16_t* prefix) const;
99 bool contains(const char16_t* chrs) const;
103 status_t replaceAll(char16_t replaceThis,
104 char16_t withThis);
117 inline bool operator<(const char16_t* 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;
124 inline operator const char16_t*() const;
127 const char16_t* mString;
147 inline const char16_t* String16::string() const
211 inline bool String16::operator<(const char16_t* other) const
216 inline bool String16::operator<=(const char16_t* other) const
221 inline bool String16::operator==(const char16_t* other) const
226 inline bool String16::operator!=(const char16_t* other) const
231 inline bool String16::operator>=(const char16_t* other) const
236 inline bool String16::operator>(const char16_t* other) const
241 inline String16::operator const char16_t*() const