Home | History | Annotate | Download | only in unicode

Lines Matching refs:replace

1751    * Assignment operator.  Replace the characters in this UnicodeString
1753 * @param srcText The text containing the characters to replace
1761 * Replace the characters in this UnicodeString
1775 * @param src The text containing the characters to replace.
1782 * Assignment operator. Replace the characters in this UnicodeString
1784 * @param ch the code unit to replace
1791 * Assignment operator. Replace the characters in this UnicodeString
1793 * @param ch the code point to replace
1822 * replace string.
2158 /* Replace operations */
2161 * Replace the characters in the range
2166 * @param start the offset at which the replace operation begins
2167 * @param length the number of characters to replace. The character at
2173 * the replace string
2177 UnicodeString& replace(int32_t start,
2184 * Replace the characters in the range
2188 * @param start the offset at which the replace operation begins
2189 * @param length the number of characters to replace. The character at
2195 UnicodeString& replace(int32_t start,
2200 * Replace the characters in the range
2205 * @param start the offset at which the replace operation begins
2206 * @param length the number of characters to replace. The character at
2212 * in the replace string
2216 UnicodeString& replace(int32_t start,
2223 * Replace the characters in the range
2226 * @param start the offset at which the replace operation begins
2227 * @param length number of characters to replace. The character at
2234 inline UnicodeString& replace(int32_t start,
2240 * Replace the characters in the range
2243 * @param start the offset at which the replace operation begins
2244 * @param length the number of characters to replace. The character at
2250 inline UnicodeString& replace(int32_t start,
2255 * Replace the characters in the range
2258 * @param start the offset at which the replace operation begins
2259 * @param length the number of characters to replace. The character at
2265 inline UnicodeString& replace(int32_t start,
2270 * Replace the characters in the range [<TT>start</TT>, <TT>limit</TT>)
2272 * @param start the offset at which the replace operation begins
2273 * @param limit the offset immediately following the replace range
2283 * Replace the characters in the range [<TT>start</TT>, <TT>limit</TT>)
2286 * @param start the offset at which the replace operation begins
2287 * @param limit the offset immediately following the replace range
2303 * Replace a substring of this object with the given text.
2308 * @param text the text to replace characters <code>start</code>
2340 /* Search and replace operations */
2343 * Replace all occurrences of characters in oldText with the characters
2354 * Replace all occurrences of characters in oldText with characters
2357 * @param start the start of the range in which replace will performed
2358 * @param length the length of the range in which replace will be performed
2370 * Replace all occurrences of characters in oldText in the range
2375 * @param start the start of the range in which replace will performed
2376 * @param length the length of the range in which replace will be performed
3980 // replace
3983 UnicodeString::replace(int32_t start,
3989 UnicodeString::replace(int32_t start,
3997 UnicodeString::replace(int32_t start,
4004 UnicodeString::replace(int32_t start,
4012 UnicodeString::replace(int32_t start,
4018 UnicodeString::replace(int32_t start,
4063 { target.replace(0, target.length(), *this, start, _length); }
4248 { return replace(0, length(), ch); }
4294 return replace(0, length(), srcChar);
4377 { return replace(start, 0, srcChar); }