Lines Matching defs:replace

1813    * @param srcText The text containing the characters to replace
1837 * @param src The text containing the characters to replace.
1846 * @param ch the code unit to replace
1855 * @param ch the code point to replace
1884 * replace string.
2231 * @param start the offset at which the replace operation begins
2232 * @param length the number of characters to replace. The character at
2238 * the replace string
2242 UnicodeString& replace(int32_t start,
2253 * @param start the offset at which the replace operation begins
2254 * @param length the number of characters to replace. The character at
2260 UnicodeString& replace(int32_t start,
2270 * @param start the offset at which the replace operation begins
2271 * @param length the number of characters to replace. The character at
2277 * in the replace string
2281 UnicodeString& replace(int32_t start,
2291 * @param start the offset at which the replace operation begins
2292 * @param length number of characters to replace. The character at
2299 inline UnicodeString& replace(int32_t start,
2308 * @param start the offset at which the replace operation begins
2309 * @param length the number of characters to replace. The character at
2315 inline UnicodeString& replace(int32_t start,
2323 * @param start the offset at which the replace operation begins
2324 * @param length the number of characters to replace. The character at
2330 UnicodeString& replace(int32_t start, int32_t length, UChar32 srcChar);
2335 * @param start the offset at which the replace operation begins
2336 * @param limit the offset immediately following the replace range
2349 * @param start the offset at which the replace operation begins
2350 * @param limit the offset immediately following the replace range
2371 * @param text the text to replace characters <code>start</code>
2403 /* Search and replace operations */
2420 * @param start the start of the range in which replace will performed
2421 * @param length the length of the range in which replace will be performed
2438 * @param start the start of the range in which replace will performed
2439 * @param length the length of the range in which replace will be performed
4116 // replace
4119 UnicodeString::replace(int32_t start,
4125 UnicodeString::replace(int32_t start,
4133 UnicodeString::replace(int32_t start,
4140 UnicodeString::replace(int32_t start,
4148 UnicodeString::replace(int32_t start,
4188 { target.replace(0, target.length(), *this, start, _length); }
4288 { return replace(0, length(), ch); }
4333 return replace(0, length(), srcChar);
4407 { return replace(start, 0, srcChar); }