D | unistr.cpp | 225 doReplace(0, 0, text, 0, -1); in UnicodeString() 233 doReplace(0, 0, text, 0, textLength); in UnicodeString() 1261 return doReplace(start, _length, buffer, 0, isError ? 0 : count); in replace() 1272 return isError ? *this : doReplace(length(), 0, buffer, 0, _length); in append() 1276 UnicodeString::doReplace( int32_t start, in doReplace() function in UnicodeString 1288 return doReplace(start, length, src.getArrayStart(), srcStart, srcLength); in doReplace() 1291 return doReplace(start, length, 0, 0, 0); in doReplace() 1296 UnicodeString::doReplace(int32_t start, in doReplace() function in UnicodeString 1714 return str.doReplace(str.length(), 0, &c, 0, 1).isWritable(); in appendCodeUnit() 1723 return !isError && str.doReplace(str.length(), 0, buffer, 0, cLength).isWritable(); in appendCodePoint() [all …]
|