Lines Matching refs:CharString
27 CharString::CharString(CharString&& src) U_NOEXCEPT in CharString() function in CharString
32 CharString& CharString::operator=(CharString&& src) U_NOEXCEPT { in operator =()
39 char *CharString::cloneData(UErrorCode &errorCode) const { in cloneData()
50 int32_t CharString::extract(char *dest, int32_t capacity, UErrorCode &errorCode) const { in extract()
63 CharString &CharString::copyFrom(const CharString &s, UErrorCode &errorCode) { in copyFrom()
71 int32_t CharString::lastIndexOf(char c) const { in lastIndexOf()
80 bool CharString::contains(StringPiece s) const { in contains()
92 CharString &CharString::truncate(int32_t newLength) { in truncate()
102 CharString &CharString::append(char c, UErrorCode &errorCode) { in append()
110 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) { in append()
135 return append(CharString(s, sLength, errorCode), errorCode); in append()
144 char *CharString::getAppendBuffer(int32_t minCapacity, in getAppendBuffer()
165 CharString &CharString::appendInvariantChars(const UnicodeString &s, UErrorCode &errorCode) { in appendInvariantChars()
169 CharString &CharString::appendInvariantChars(const UChar* uchars, int32_t ucharsLen, UErrorCode &er… in appendInvariantChars()
185 UBool CharString::ensureCapacity(int32_t capacity, in ensureCapacity()
205 CharString &CharString::appendPathPart(StringPiece s, UErrorCode &errorCode) { in appendPathPart()
220 CharString &CharString::ensureEndsWithFileSeparator(UErrorCode &errorCode) { in ensureEndsWithFileSeparator()
229 char CharString::getDirSepChar() const { in getDirSepChar()