*/
static int32_t toLower(
const char *locale, uint32_t options,
- ConstChar16Ptr src, int32_t srcLength,
- Char16Ptr dest, int32_t destCapacity, Edits *edits,
+ const char16_t *src, int32_t srcLength,
+ char16_t *dest, int32_t destCapacity, Edits *edits,
UErrorCode &errorCode);
/**
*/
static int32_t toUpper(
const char *locale, uint32_t options,
- ConstChar16Ptr src, int32_t srcLength,
- Char16Ptr dest, int32_t destCapacity, Edits *edits,
+ const char16_t *src, int32_t srcLength,
+ char16_t *dest, int32_t destCapacity, Edits *edits,
UErrorCode &errorCode);
#if !UCONFIG_NO_BREAK_ITERATION
*/
static int32_t toTitle(
const char *locale, uint32_t options, BreakIterator *iter,
- ConstChar16Ptr src, int32_t srcLength,
- Char16Ptr dest, int32_t destCapacity, Edits *edits,
+ const char16_t *src, int32_t srcLength,
+ char16_t *dest, int32_t destCapacity, Edits *edits,
UErrorCode &errorCode);
#endif // UCONFIG_NO_BREAK_ITERATION
*/
static int32_t fold(
uint32_t options,
- ConstChar16Ptr src, int32_t srcLength,
- Char16Ptr dest, int32_t destCapacity, Edits *edits,
+ const char16_t *src, int32_t srcLength,
+ char16_t *dest, int32_t destCapacity, Edits *edits,
UErrorCode &errorCode);
private:
int32_t CaseMap::toTitle(
const char *locale, uint32_t options, BreakIterator *iter,
- ConstChar16Ptr src, int32_t srcLength,
- Char16Ptr dest, int32_t destCapacity, Edits *edits,
+ const UChar *src, int32_t srcLength,
+ UChar *dest, int32_t destCapacity, Edits *edits,
UErrorCode &errorCode) {
LocalPointer<BreakIterator> ownedIter;
if(iter==NULL) {
int32_t CaseMap::fold(
uint32_t options,
- ConstChar16Ptr src, int32_t srcLength,
- Char16Ptr dest, int32_t destCapacity, Edits *edits,
+ const UChar *src, int32_t srcLength,
+ UChar *dest, int32_t destCapacity, Edits *edits,
UErrorCode &errorCode) {
return ustrcase_map(
UCASE_LOC_ROOT, options, UCASEMAP_BREAK_ITERATOR_NULL
int32_t CaseMap::toLower(
const char *locale, uint32_t options,
- ConstChar16Ptr src, int32_t srcLength,
- Char16Ptr dest, int32_t destCapacity, Edits *edits,
+ const UChar *src, int32_t srcLength,
+ UChar *dest, int32_t destCapacity, Edits *edits,
UErrorCode &errorCode) {
return ustrcase_map(
ustrcase_getCaseLocale(locale), options, UCASEMAP_BREAK_ITERATOR_NULL
int32_t CaseMap::toUpper(
const char *locale, uint32_t options,
- ConstChar16Ptr src, int32_t srcLength,
- Char16Ptr dest, int32_t destCapacity, Edits *edits,
+ const UChar *src, int32_t srcLength,
+ UChar *dest, int32_t destCapacity, Edits *edits,
UErrorCode &errorCode) {
return ustrcase_map(
ustrcase_getCaseLocale(locale), options, UCASEMAP_BREAK_ITERATOR_NULL