Lines Matching defs:String16

40 class String16
43 String16();
44 String16(const String16& o);
45 String16(const String16& o,
48 explicit String16(const char16_t* o);
49 explicit String16(const char16_t* o, size_t len);
50 explicit String16(const String8& o);
51 explicit String16(const char* o);
52 explicit String16(const char* o, size_t len);
54 ~String16();
61 void setTo(const String16& other);
64 status_t setTo(const String16& other,
68 status_t append(const String16& other);
71 inline String16& operator=(const String16& other);
73 inline String16& operator+=(const String16& other);
74 inline String16 operator+(const String16& other) const;
83 bool startsWith(const String16& prefix) const;
93 inline int compare(const String16& other) const;
95 inline bool operator<(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;
115 TextOutput& operator<<(TextOutput& to, const String16& val);
120 inline int compare_type(const String16& lhs, const String16& rhs)
125 inline int strictly_order_type(const String16& lhs, const String16& rhs)
130 inline const char16_t* String16::string() const
135 inline size_t String16::size() const
140 inline const SharedBuffer* String16::sharedBuffer() const
145 inline String16& String16::operator=(const String16& other)
151 inline String16& String16::operator+=(const String16& other)
157 inline String16 String16::operator+(const String16& other) const
159 String16 tmp(*this);
164 inline int String16::compare(const String16& other) const
169 inline bool String16::operator<(const String16& other) const
174 inline bool String16::operator<=(const String16& other) const
179 inline bool String16::operator==(const String16& other) const
184 inline bool String16::operator!=(const String16& other) const
189 inline bool String16::operator>=(const String16& other) const
194 inline bool String16::operator>(const String16& other) const
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