Home | History | Annotate | Download | only in utils

Lines Matching full:const

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);
56 inline const char16_t* string() const;
57 inline size_t size() const;
59 inline const SharedBuffer* sharedBuffer() const;
61 void setTo(const String16& other);
62 status_t setTo(const char16_t* other);
63 status_t setTo(const char16_t* other, size_t len);
64 status_t setTo(const String16& other,
68 status_t append(const String16& other);
69 status_t append(const char16_t* other, size_t len);
71 inline String16& operator=(const String16& other);
73 inline String16& operator+=(const String16& other);
74 inline String16 operator+(const String16& other) const;
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;
83 bool startsWith(const String16& prefix) const;
84 bool startsWith(const char16_t* 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;
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;
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
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