Home | History | Annotate | Download | only in utils

Lines Matching full:char16_t

48     explicit                    String16(const char16_t* o);
49 explicit String16(const char16_t* o, size_t len);
56 inline const char16_t* string() const;
62 status_t setTo(const char16_t* other);
63 status_t setTo(const char16_t* other, size_t len);
69 status_t append(const char16_t* other, size_t len);
76 status_t insert(size_t pos, const char16_t* chrs);
78 const char16_t* chrs, size_t len);
80 ssize_t findFirst(char16_t c) const;
81 ssize_t findLast(char16_t c) const;
84 bool startsWith(const char16_t* prefix) const;
88 status_t replaceAll(char16_t replaceThis,
89 char16_t withThis);
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;
109 inline operator const char16_t*() const;
112 const char16_t* mString;
130 inline const char16_t* String16::string() const
137 return SharedBuffer::sizeFromData(mString)/sizeof(char16_t)-1;
199 inline bool String16::operator<(const char16_t* other) const
204 inline bool String16::operator<=(const char16_t* other) const
209 inline bool String16::operator==(const char16_t* other) const
214 inline bool String16::operator!=(const char16_t* other) const
219 inline bool String16::operator>=(const char16_t* other) const
224 inline bool String16::operator>(const char16_t* other) const
229 inline String16::operator const char16_t*() const