Home | History | Annotate | Download | only in common

Lines Matching defs:doReplace

219   doReplace(0, 0, text, 0, -1);
227 doReplace(0, 0, text, 0, textLength);
1293 return doReplace(start, _length, buffer, 0, isError ? 0 : count);
1303 // If isError then _length==0 which turns the doReplace() into a no-op anyway.
1304 return isError ? *this : doReplace(length(), 0, buffer, 0, _length);
1308 UnicodeString::doReplace( int32_t start,
1320 return doReplace(start, length, src.getArrayStart(), srcStart, srcLength);
1323 return doReplace(start, length, 0, 0, 0);
1328 UnicodeString::doReplace(int32_t start,
1749 return str.doReplace(str.length(), 0, &c, 0, 1).isWritable();
1758 return !isError && str.doReplace(str.length(), 0, buffer, 0, cLength).isWritable();
1763 return str.doReplace(str.length(), 0, s, 0, length).isWritable();