Searched defs:srcChar (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/icu/source/common/unicode/
H A Dunistr.h1915 * <TT>srcChar</TT>.
1916 * @param srcChar the code unit which becomes the UnicodeString's character
1921 UnicodeString& setTo(UChar srcChar);
1925 * <TT>srcChar</TT>.
1926 * @param srcChar the code point which becomes the UnicodeString's character
1931 UnicodeString& setTo(UChar32 srcChar);
2122 * Append the code unit <TT>srcChar</TT> to the UnicodeString object.
2123 * @param srcChar the code unit to append
2127 inline UnicodeString& append(UChar srcChar);
2130 * Append the code point <TT>srcChar</T
4148 replace(int32_t start, int32_t _length, UChar srcChar) argument
4323 setTo(UChar srcChar) argument
4330 setTo(UChar32 srcChar) argument
4358 append(UChar srcChar) argument
4400 insert(int32_t start, UChar srcChar) argument
4405 insert(int32_t start, UChar32 srcChar) argument
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dunistr.h1915 * <TT>srcChar</TT>.
1916 * @param srcChar the code unit which becomes the UnicodeString's character
1921 UnicodeString& setTo(UChar srcChar);
1925 * <TT>srcChar</TT>.
1926 * @param srcChar the code point which becomes the UnicodeString's character
1931 UnicodeString& setTo(UChar32 srcChar);
2122 * Append the code unit <TT>srcChar</TT> to the UnicodeString object.
2123 * @param srcChar the code unit to append
2127 inline UnicodeString& append(UChar srcChar);
2130 * Append the code point <TT>srcChar</T
4148 replace(int32_t start, int32_t _length, UChar srcChar) argument
4323 setTo(UChar srcChar) argument
4330 setTo(UChar32 srcChar) argument
4358 append(UChar srcChar) argument
4400 insert(int32_t start, UChar srcChar) argument
4405 insert(int32_t start, UChar32 srcChar) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dunistr.cpp1285 UChar32 srcChar) {
1289 U16_APPEND(buffer, count, U16_MAX_LENGTH, srcChar, isError);
1291 // If isError (srcChar is not a valid code point) then count==0 which means
1292 // we remove the source segment rather than replacing it with srcChar.
1297 UnicodeString::append(UChar32 srcChar) { argument
1301 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError);
1283 replace(int32_t start, int32_t _length, UChar32 srcChar) argument
/external/icu/icu4c/source/common/
H A Dunistr.cpp1285 UChar32 srcChar) {
1289 U16_APPEND(buffer, count, U16_MAX_LENGTH, srcChar, isError);
1291 // If isError (srcChar is not a valid code point) then count==0 which means
1292 // we remove the source segment rather than replacing it with srcChar.
1297 UnicodeString::append(UChar32 srcChar) { argument
1301 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError);
1283 replace(int32_t start, int32_t _length, UChar32 srcChar) argument

Completed in 117 milliseconds