Lines Matching refs:AString
37 constexpr const char *AString::kEmptyString;
39 AString::AString() in AString() function in android::AString
45 AString::AString(const char *s) in AString() function in android::AString
57 AString::AString(const char *s, size_t size) in AString() function in android::AString
69 AString::AString(const String8 &from) in AString() function in android::AString
76 AString::AString(const AString &from) in AString() function in android::AString
83 AString::AString(const AString &from, size_t offset, size_t n) in AString() function in android::AString
90 AString::~AString() { in ~AString()
94 AString &AString::operator=(const AString &from) { in operator =()
102 size_t AString::size() const { in size()
106 const char *AString::c_str() const { in c_str()
110 bool AString::empty() const { in empty()
114 void AString::setTo(const char *s) { in setTo()
118 void AString::setTo(const char *s, size_t size) { in setTo()
123 void AString::setTo(const AString &from, size_t offset, size_t n) { in setTo()
130 void AString::clear() { in clear()
139 size_t AString::hash() const { in hash()
148 bool AString::operator==(const AString &other) const { in operator ==()
152 void AString::trim() { in trim()
170 void AString::erase(size_t start, size_t n) { in erase()
181 void AString::makeMutable() { in makeMutable()
187 void AString::append(const char *s) { in append()
191 void AString::append(const char *s, size_t size) { in append()
205 void AString::append(const AString &from) { in append()
209 void AString::append(const AString &from, size_t offset, size_t n) { in append()
213 void AString::append(int x) { in append()
220 void AString::append(unsigned x) { in append()
227 void AString::append(long x) { in append()
234 void AString::append(unsigned long x) { in append()
241 void AString::append(long long x) { in append()
248 void AString::append(unsigned long long x) { in append()
255 void AString::append(float x) { in append()
262 void AString::append(double x) { in append()
269 void AString::append(void *x) { in append()
276 ssize_t AString::find(const char *substring, size_t start) const { in find()
288 void AString::insert(const AString &from, size_t insertionPos) { in insert()
292 void AString::insert(const char *from, size_t size, size_t insertionPos) { in insert()
312 bool AString::operator<(const AString &other) const { in operator <()
316 bool AString::operator>(const AString &other) const { in operator >()
320 int AString::compare(const AString &other) const { in compare()
324 int AString::compareIgnoreCase(const AString &other) const { in compareIgnoreCase()
328 bool AString::equalsIgnoreCase(const AString &other) const { in equalsIgnoreCase()
332 void AString::tolower() { in tolower()
340 bool AString::startsWith(const char *prefix) const { in startsWith()
344 bool AString::endsWith(const char *suffix) const { in endsWith()
354 bool AString::startsWithIgnoreCase(const char *prefix) const { in startsWithIgnoreCase()
358 bool AString::endsWithIgnoreCase(const char *suffix) const { in endsWithIgnoreCase()
370 AString AString::FromParcel(const Parcel &parcel) { in FromParcel()
372 return AString(static_cast<const char *>(parcel.readInplace(size)), size); in FromParcel()
375 status_t AString::writeToParcel(Parcel *parcel) const { in writeToParcel()
385 AString AStringPrintf(const char *format, ...) { in AStringPrintf()
395 return AString(); in AStringPrintf()
398 AString result(buffer); in AStringPrintf()