Lines Matching full:const
54 String16(const String16& o);
55 String16(const String16& o,
58 explicit String16(const char16_t* o);
59 explicit String16(const char16_t* o, size_t len);
60 explicit String16(const String8& o);
61 explicit String16(const char* o);
62 explicit String16(const char* o, size_t len);
66 inline const char16_t* string() const;
68 size_t size() const;
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;
84 status_t insert(size_t pos, const char16_t* chrs);
86 const char16_t* chrs, size_t len);
88 ssize_t findFirst(char16_t c) const;
89 ssize_t findLast(char16_t c) const;
91 bool startsWith(const String16& prefix) const;
92 bool startsWith(const char16_t* prefix) const;
94 bool contains(const char16_t* chrs) 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;
119 inline operator const char16_t*() const;
122 const char16_t* mString;
132 inline int compare_type(const String16& lhs, const String16& rhs)
137 inline int strictly_order_type(const String16& lhs, const String16& rhs)
142 inline const char16_t* String16::string() const
147 inline String16& String16::operator=(const String16& other)
153 inline String16& String16::operator+=(const String16& other)
159 inline String16 String16::operator+(const String16& other) const
166 inline int String16::compare(const String16& other) const
171 inline bool String16::operator<(const String16& other) const
176 inline bool String16::operator<=(const String16& other) const
181 inline bool String16::operator==(const String16& other) const
186 inline bool String16::operator!=(const String16& other) const
191 inline bool String16::operator>=(const String16& other) const
196 inline bool String16::operator>(const String16& other) const
201 inline bool String16::operator<(const char16_t* other) const
206 inline bool String16::operator<=(const char16_t* other) 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 String16::operator const char16_t*() const