Lines Matching defs:srcChar

1854    * <TT>srcChar</TT>.
1855 * @param srcChar the code unit which becomes the UnicodeString's character
1860 UnicodeString& setTo(UChar srcChar);
1864 * <TT>srcChar</TT>.
1865 * @param srcChar the code point which becomes the UnicodeString's character
1870 UnicodeString& setTo(UChar32 srcChar);
2058 * Append the code unit <TT>srcChar</TT> to the UnicodeString object.
2059 * @param srcChar the code unit to append
2063 inline UnicodeString& append(UChar srcChar);
2066 * Append the code point <TT>srcChar</TT> to the UnicodeString object.
2067 * @param srcChar the code point to append
2071 inline UnicodeString& append(UChar32 srcChar);
2137 * Insert the code unit <TT>srcChar</TT> into the UnicodeString object at
2140 * @param srcChar the code unit to insert
2145 UChar srcChar);
2148 * Insert the code point <TT>srcChar</TT> into the UnicodeString object at
2151 * @param srcChar the code point to insert
2156 UChar32 srcChar);
2243 * <TT>srcChar</TT>.
2247 * @param srcChar the new code unit
2253 UChar srcChar);
2258 * <TT>srcChar</TT>.
2262 * @param srcChar the new code point
2268 UChar32 srcChar);
4015 UChar srcChar)
4016 { return doReplace(start, _length, &srcChar, 0, 1); }
4021 UChar32 srcChar) {
4025 U16_APPEND(buffer, count, U16_MAX_LENGTH, srcChar, isError);
4286 UnicodeString::setTo(UChar srcChar)
4289 return doReplace(0, length(), &srcChar, 0, 1);
4293 UnicodeString::setTo(UChar32 srcChar)
4296 return replace(0, length(), srcChar);
4321 UnicodeString::append(UChar srcChar)
4322 { return doReplace(length(), 0, &srcChar, 0, 1); }
4325 UnicodeString::append(UChar32 srcChar) {
4329 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError);
4374 UChar srcChar)
4375 { return doReplace(start, 0, &srcChar, 0, 1); }
4379 UChar32 srcChar)
4380 { return replace(start, 0, srcChar); }