Home | History | Annotate | Download | only in unicode

Lines Matching refs:replace

1752    * Assignment operator.  Replace the characters in this UnicodeString
1754 * @param srcText The text containing the characters to replace
1762 * Replace the characters in this UnicodeString
1776 * @param src The text containing the characters to replace.
1783 * Assignment operator. Replace the characters in this UnicodeString
1785 * @param ch the code unit to replace
1792 * Assignment operator. Replace the characters in this UnicodeString
1794 * @param ch the code point to replace
1823 * replace string.
2159 /* Replace operations */
2162 * Replace the characters in the range
2167 * @param start the offset at which the replace operation begins
2168 * @param length the number of characters to replace. The character at
2174 * the replace string
2178 UnicodeString& replace(int32_t start,
2185 * Replace the characters in the range
2189 * @param start the offset at which the replace operation begins
2190 * @param length the number of characters to replace. The character at
2196 UnicodeString& replace(int32_t start,
2201 * Replace the characters in the range
2206 * @param start the offset at which the replace operation begins
2207 * @param length the number of characters to replace. The character at
2213 * in the replace string
2217 UnicodeString& replace(int32_t start,
2224 * Replace the characters in the range
2227 * @param start the offset at which the replace operation begins
2228 * @param length number of characters to replace. The character at
2235 inline UnicodeString& replace(int32_t start,
2241 * Replace the characters in the range
2244 * @param start the offset at which the replace operation begins
2245 * @param length the number of characters to replace. The character at
2251 inline UnicodeString& replace(int32_t start,
2256 * Replace the characters in the range
2259 * @param start the offset at which the replace operation begins
2260 * @param length the number of characters to replace. The character at
2266 inline UnicodeString& replace(int32_t start,
2271 * Replace the characters in the range [<TT>start</TT>, <TT>limit</TT>)
2273 * @param start the offset at which the replace operation begins
2274 * @param limit the offset immediately following the replace range
2284 * Replace the characters in the range [<TT>start</TT>, <TT>limit</TT>)
2287 * @param start the offset at which the replace operation begins
2288 * @param limit the offset immediately following the replace range
2304 * Replace a substring of this object with the given text.
2309 * @param text the text to replace characters <code>start</code>
2341 /* Search and replace operations */
2344 * Replace all occurrences of characters in oldText with the characters
2355 * Replace all occurrences of characters in oldText with characters
2358 * @param start the start of the range in which replace will performed
2359 * @param length the length of the range in which replace will be performed
2371 * Replace all occurrences of characters in oldText in the range
2376 * @param start the start of the range in which replace will performed
2377 * @param length the length of the range in which replace will be performed
3981 // replace
3984 UnicodeString::replace(int32_t start,
3990 UnicodeString::replace(int32_t start,
3998 UnicodeString::replace(int32_t start,
4005 UnicodeString::replace(int32_t start,
4013 UnicodeString::replace(int32_t start,
4019 UnicodeString::replace(int32_t start,
4064 { target.replace(0, target.length(), *this, start, _length); }
4249 { return replace(0, length(), ch); }
4295 return replace(0, length(), srcChar);
4378 { return replace(start, 0, srcChar); }