1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*
* Copyright (C) 2009-2015, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
* file name: udatpg.cpp
* encoding: UTF-8
* tab size: 8 (not used)
* indentation:4
*
* created on: 2007jul30
* created by: Markus W. Scherer
*/
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
#include <_foundation_unicode/udatpg.h>
#include <_foundation_unicode/uenum.h>
#include <_foundation_unicode/strenum.h>
#include <_foundation_unicode/dtptngen.h>
#if APPLE_ICU_CHANGES
// rdar://
#include <_foundation_unicode/unistr.h>
#include <_foundation_unicode/uchar.h>
#endif // APPLE_ICU_CHANGES
#include "ustrenum.h"
#if APPLE_ICU_CHANGES
// rdar://
#include "dtitv_impl.h"
#endif // APPLE_ICU_CHANGES
U_NAMESPACE_USE
U_CAPI UDateTimePatternGenerator * U_EXPORT2
udatpg_open(const char *locale, UErrorCode *pErrorCode) {
if(locale==nullptr) {
return (UDateTimePatternGenerator *)DateTimePatternGenerator::createInstance(*pErrorCode);
} else {
return (UDateTimePatternGenerator *)DateTimePatternGenerator::createInstance(Locale(locale), *pErrorCode);
}
}
U_CAPI UDateTimePatternGenerator * U_EXPORT2
udatpg_openEmpty(UErrorCode *pErrorCode) {
return (UDateTimePatternGenerator *)DateTimePatternGenerator::createEmptyInstance(*pErrorCode);
}
U_CAPI void U_EXPORT2
udatpg_close(UDateTimePatternGenerator *dtpg) {
delete (DateTimePatternGenerator *)dtpg;
}
U_CAPI UDateTimePatternGenerator * U_EXPORT2
udatpg_clone(const UDateTimePatternGenerator *dtpg, UErrorCode *pErrorCode) {
if(U_FAILURE(*pErrorCode)) {
return nullptr;
}
return (UDateTimePatternGenerator *)(((const DateTimePatternGenerator *)dtpg)->clone());
}
U_CAPI int32_t U_EXPORT2
udatpg_getBestPattern(UDateTimePatternGenerator *dtpg,
const char16_t *skeleton, int32_t length,
char16_t *bestPattern, int32_t capacity,
UErrorCode *pErrorCode) {
return udatpg_getBestPatternWithOptions(dtpg, skeleton, length,
UDATPG_MATCH_NO_OPTIONS,
bestPattern, capacity, pErrorCode);
}
U_CAPI int32_t U_EXPORT2
udatpg_getBestPatternWithOptions(UDateTimePatternGenerator *dtpg,
const char16_t *skeleton, int32_t length,
UDateTimePatternMatchOptions options,
char16_t *bestPattern, int32_t capacity,
UErrorCode *pErrorCode) {
if(U_FAILURE(*pErrorCode)) {
return 0;
}
if(skeleton==nullptr && length!=0) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}
UnicodeString skeletonString((UBool)(length<0), skeleton, length);
UnicodeString result=((DateTimePatternGenerator *)dtpg)->getBestPattern(skeletonString, options, *pErrorCode);
return result.extract(bestPattern, capacity, *pErrorCode);
}
U_CAPI int32_t U_EXPORT2
udatpg_getSkeleton(UDateTimePatternGenerator * /* dtpg */,
const char16_t *pattern, int32_t length,
char16_t *skeleton, int32_t capacity,
UErrorCode *pErrorCode) {
if(U_FAILURE(*pErrorCode)) {
return 0;
}
if(pattern==nullptr && length!=0) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}
UnicodeString patternString((UBool)(length<0), pattern, length);
UnicodeString result=DateTimePatternGenerator::staticGetSkeleton(
patternString, *pErrorCode);
return result.extract(skeleton, capacity, *pErrorCode);
}
U_CAPI int32_t U_EXPORT2
udatpg_getBaseSkeleton(UDateTimePatternGenerator * /* dtpg */,
const char16_t *pattern, int32_t length,
char16_t *skeleton, int32_t capacity,
UErrorCode *pErrorCode) {
if(U_FAILURE(*pErrorCode)) {
return 0;
}
if(pattern==nullptr && length!=0) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}
UnicodeString patternString((UBool)(length<0), pattern, length);
UnicodeString result=DateTimePatternGenerator::staticGetBaseSkeleton(
patternString, *pErrorCode);
return result.extract(skeleton, capacity, *pErrorCode);
}
U_CAPI UDateTimePatternConflict U_EXPORT2
udatpg_addPattern(UDateTimePatternGenerator *dtpg,
const char16_t *pattern, int32_t patternLength,
UBool override,
char16_t *conflictingPattern, int32_t capacity, int32_t *pLength,
UErrorCode *pErrorCode) {
if(U_FAILURE(*pErrorCode)) {
return UDATPG_NO_CONFLICT;
}
if(pattern==nullptr && patternLength!=0) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return UDATPG_NO_CONFLICT;
}
UnicodeString patternString((UBool)(patternLength<0), pattern, patternLength);
UnicodeString conflictingPatternString;
UDateTimePatternConflict result=((DateTimePatternGenerator *)dtpg)->
addPattern(patternString, override, conflictingPatternString, *pErrorCode);
int32_t length=conflictingPatternString.extract(conflictingPattern, capacity, *pErrorCode);
if(pLength!=nullptr) {
*pLength=length;
}
return result;
}
U_CAPI void U_EXPORT2
udatpg_setAppendItemFormat(UDateTimePatternGenerator *dtpg,
UDateTimePatternField field,
const char16_t *value, int32_t length) {
UnicodeString valueString((UBool)(length<0), value, length);
((DateTimePatternGenerator *)dtpg)->setAppendItemFormat(field, valueString);
}
U_CAPI const char16_t * U_EXPORT2
udatpg_getAppendItemFormat(const UDateTimePatternGenerator *dtpg,
UDateTimePatternField field,
int32_t *pLength) {
const UnicodeString &result=((const DateTimePatternGenerator *)dtpg)->getAppendItemFormat(field);
if(pLength!=nullptr) {
*pLength=result.length();
}
return result.getBuffer();
}
U_CAPI void U_EXPORT2
udatpg_setAppendItemName(UDateTimePatternGenerator *dtpg,
UDateTimePatternField field,
const char16_t *value, int32_t length) {
UnicodeString valueString((UBool)(length<0), value, length);
((DateTimePatternGenerator *)dtpg)->setAppendItemName(field, valueString);
}
U_CAPI const char16_t * U_EXPORT2
udatpg_getAppendItemName(const UDateTimePatternGenerator *dtpg,
UDateTimePatternField field,
int32_t *pLength) {
const UnicodeString &result=((const DateTimePatternGenerator *)dtpg)->getAppendItemName(field);
if(pLength!=nullptr) {
*pLength=result.length();
}
return result.getBuffer();
}
U_CAPI int32_t U_EXPORT2
udatpg_getFieldDisplayName(const UDateTimePatternGenerator *dtpg,
UDateTimePatternField field,
UDateTimePGDisplayWidth width,
char16_t *fieldName, int32_t capacity,
UErrorCode *pErrorCode) {
if (U_FAILURE(*pErrorCode))
return -1;
if (fieldName == nullptr ? capacity != 0 : capacity < 0) {
*pErrorCode = U_ILLEGAL_ARGUMENT_ERROR;
return -1;
}
UnicodeString result = ((const DateTimePatternGenerator *)dtpg)->getFieldDisplayName(field,width);
if (fieldName == nullptr) {
return result.length();
}
return result.extract(fieldName, capacity, *pErrorCode);
}
U_CAPI void U_EXPORT2
udatpg_setDateTimeFormat(const UDateTimePatternGenerator *dtpg,
const char16_t *dtFormat, int32_t length) {
UnicodeString dtFormatString((UBool)(length<0), dtFormat, length);
((DateTimePatternGenerator *)dtpg)->setDateTimeFormat(dtFormatString);
}
U_CAPI const char16_t * U_EXPORT2
udatpg_getDateTimeFormat(const UDateTimePatternGenerator *dtpg,
int32_t *pLength) {
UErrorCode status = U_ZERO_ERROR;
return udatpg_getDateTimeFormatForStyle(dtpg, UDAT_MEDIUM, pLength, &status);
}
U_CAPI void U_EXPORT2
udatpg_setDateTimeFormatForStyle(UDateTimePatternGenerator *udtpg,
UDateFormatStyle style,
const char16_t *dateTimeFormat, int32_t length,
UErrorCode *pErrorCode) {
if (U_FAILURE(*pErrorCode)) {
return;
} else if (dateTimeFormat==nullptr) {
*pErrorCode = U_ILLEGAL_ARGUMENT_ERROR;
return;
}
DateTimePatternGenerator *dtpg = reinterpret_cast<DateTimePatternGenerator *>(udtpg);
UnicodeString dtFormatString((UBool)(length<0), dateTimeFormat, length);
dtpg->setDateTimeFormat(style, dtFormatString, *pErrorCode);
}
U_CAPI const char16_t* U_EXPORT2
udatpg_getDateTimeFormatForStyle(const UDateTimePatternGenerator *udtpg,
UDateFormatStyle style, int32_t *pLength,
UErrorCode *pErrorCode) {
static const char16_t emptyString[] = { (char16_t)0 };
if (U_FAILURE(*pErrorCode)) {
if (pLength !=nullptr) {
*pLength = 0;
}
return emptyString;
}
const DateTimePatternGenerator *dtpg = reinterpret_cast<const DateTimePatternGenerator *>(udtpg);
const UnicodeString &result = dtpg->getDateTimeFormat(style, *pErrorCode);
if (pLength != nullptr) {
*pLength=result.length();
}
// Note: The UnicodeString for the dateTimeFormat string in the DateTimePatternGenerator
// was NUL-terminated when it was set, to avoid doing it here which could re-allocate
// the buffer and affect const references to the string or its buffer.
return result.getBuffer();
}
U_CAPI void U_EXPORT2
udatpg_setDecimal(UDateTimePatternGenerator *dtpg,
const char16_t *decimal, int32_t length) {
UnicodeString decimalString((UBool)(length<0), decimal, length);
((DateTimePatternGenerator *)dtpg)->setDecimal(decimalString);
}
U_CAPI const char16_t * U_EXPORT2
udatpg_getDecimal(const UDateTimePatternGenerator *dtpg,
int32_t *pLength) {
const UnicodeString &result=((const DateTimePatternGenerator *)dtpg)->getDecimal();
if(pLength!=nullptr) {
*pLength=result.length();
}
return result.getBuffer();
}
U_CAPI int32_t U_EXPORT2
udatpg_replaceFieldTypes(UDateTimePatternGenerator *dtpg,
const char16_t *pattern, int32_t patternLength,
const char16_t *skeleton, int32_t skeletonLength,
char16_t *dest, int32_t destCapacity,
UErrorCode *pErrorCode) {
return udatpg_replaceFieldTypesWithOptions(dtpg, pattern, patternLength, skeleton, skeletonLength,
UDATPG_MATCH_NO_OPTIONS,
dest, destCapacity, pErrorCode);
}
U_CAPI int32_t U_EXPORT2
udatpg_replaceFieldTypesWithOptions(UDateTimePatternGenerator *dtpg,
const char16_t *pattern, int32_t patternLength,
const char16_t *skeleton, int32_t skeletonLength,
UDateTimePatternMatchOptions options,
char16_t *dest, int32_t destCapacity,
UErrorCode *pErrorCode) {
if(U_FAILURE(*pErrorCode)) {
return 0;
}
if((pattern==nullptr && patternLength!=0) || (skeleton==nullptr && skeletonLength!=0)) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}
UnicodeString patternString((UBool)(patternLength<0), pattern, patternLength);
UnicodeString skeletonString((UBool)(skeletonLength<0), skeleton, skeletonLength);
UnicodeString result=((DateTimePatternGenerator *)dtpg)->replaceFieldTypes(patternString, skeletonString, options, *pErrorCode);
return result.extract(dest, destCapacity, *pErrorCode);
}
U_CAPI UEnumeration * U_EXPORT2
udatpg_openSkeletons(const UDateTimePatternGenerator *dtpg, UErrorCode *pErrorCode) {
return uenum_openFromStringEnumeration(
((DateTimePatternGenerator *)dtpg)->getSkeletons(*pErrorCode),
pErrorCode);
}
U_CAPI UEnumeration * U_EXPORT2
udatpg_openBaseSkeletons(const UDateTimePatternGenerator *dtpg, UErrorCode *pErrorCode) {
return uenum_openFromStringEnumeration(
((DateTimePatternGenerator *)dtpg)->getBaseSkeletons(*pErrorCode),
pErrorCode);
}
U_CAPI const char16_t * U_EXPORT2
udatpg_getPatternForSkeleton(const UDateTimePatternGenerator *dtpg,
const char16_t *skeleton, int32_t skeletonLength,
int32_t *pLength) {
UnicodeString skeletonString((UBool)(skeletonLength<0), skeleton, skeletonLength);
const UnicodeString &result=((const DateTimePatternGenerator *)dtpg)->getPatternForSkeleton(skeletonString);
if(pLength!=nullptr) {
*pLength=result.length();
}
return result.getBuffer();
}
#if APPLE_ICU_CHANGES
// rdar://
// Helper function for uadatpg_remapPatternWithOptionsLoc
static int32_t
_doReplaceAndReturnAdj( UDateTimePatternGenerator *dtpg, uint32_t options, UBool matchHourLen,
UnicodeString &patternString, const UnicodeString &skeleton, const UnicodeString &otherCycSkeleton,
int32_t timePatStart, int32_t timePatLimit, int32_t timeNonHourStart, int32_t timeNonHourLimit,
UErrorCode *pErrorCode) {
if (matchHourLen) {
options |= UDATPG_MATCH_HOUR_FIELD_LENGTH;
}
UnicodeString replacement=((DateTimePatternGenerator *)dtpg)->getBestPattern(otherCycSkeleton, (UDateTimePatternMatchOptions)options, *pErrorCode);
if (U_FAILURE(*pErrorCode)) {
return 0;
}
UnicodeString stringForOrigSkeleton=((DateTimePatternGenerator *)dtpg)->getBestPattern(skeleton, UDATPG_MATCH_ALL_FIELDS_LENGTH, *pErrorCode); // match orig field lengths
if (U_SUCCESS(*pErrorCode)) {
int32_t index = patternString.indexOf(stringForOrigSkeleton);
if (index >= 0) {
int32_t stringForOrigSkelLen = stringForOrigSkeleton.length();
patternString.replace(index, stringForOrigSkelLen, replacement);
return replacement.length() - stringForOrigSkelLen;
}
} else {
*pErrorCode = U_ZERO_ERROR;
}
if (timeNonHourStart >= 0 && timeNonHourLimit > timeNonHourStart) {
// find any minutes/seconds/milliseconds part of replacement, set that back to the
// minutes/seconds/milliseconds part of the original pattern.
// First get the minutes/seconds/milliseconds part of the original pattern.
UnicodeString nonHour;
patternString.extractBetween(timeNonHourStart, timeNonHourLimit, nonHour);
// Now scan to find position from just after hours to end of minutes/seconds/milliseconds.
timeNonHourStart = -1;
timeNonHourLimit = 0;
UBool inQuoted = false;
int32_t repPos, repLen = replacement.length();
for (repPos = 0; repPos < repLen; repPos++) {
UChar repChr = replacement.charAt(repPos);
if (repChr == 0x27 /* ASCII-range single quote */) {
inQuoted = !inQuoted;
} else if (!inQuoted) {
if (repChr==LOW_H || repChr==CAP_H || repChr==CAP_K || repChr==LOW_K) { // hHKk, hour
timeNonHourStart = repPos + 1;
} else if (timeNonHourStart < 0 && (repChr==LOW_M || repChr==LOW_S)) { // 'm' or 's' and we did not have hour
timeNonHourStart = repPos;
}
if (!u_isUWhiteSpace(repChr) && timeNonHourStart >= 0 && repChr!=LOW_A) { // NonHour portion should not include 'a'
timeNonHourLimit = repPos + 1;
}
}
}
// If we found minutes/seconds/milliseconds in replacement, restore that part to original.
if (timeNonHourStart >= 0 && timeNonHourLimit > timeNonHourStart) {
replacement.replaceBetween(timeNonHourStart, timeNonHourLimit, nonHour);
}
}
patternString.replaceBetween(timePatStart, timePatLimit, replacement);
return replacement.length() - (timePatLimit - timePatStart); // positive if replacement is longer
}
/*
* uadatpg_remapPatternWithOptionsLoc
*
* Thee general idea is:
* 1. Scan the pattern for one or more time subpatterns
* 2. For each time subpattern, if the hour pattern characters don't match the
* time cycle that we want to force to, then:
* a) Save the nonHour portion of the subpattern (from just after hours to end
* of minutes/seconds/ milliseconds)
* b) Turn the pattern characters in that subpattern into a skeleton, but with
* the hour pattern characters switched to the desired time cycle
* c) Use that skeleton to get the locale's corresponding replacement pattern
* for the desired time cycle (with all desired elements - min, sec, etc.)
* d) In that replacement pattern, find the new nonHour portion, and restore
* that to the original nonHour portion
* e) Finally, replace the original time subpattern with the adjusted
* replacement.
*/
U_CAPI int32_t U_EXPORT2
uadatpg_remapPatternWithOptions(UDateTimePatternGenerator *dtpg,
const UChar *pattern, int32_t patternLength,
UDateTimePatternMatchOptions options,
UChar *newPattern, int32_t newPatternCapacity,
UErrorCode *pErrorCode) {
if (U_FAILURE(*pErrorCode)) {
return 0;
}
if ( pattern==NULL || ((newPattern==NULL)? newPatternCapacity!=0: newPatternCapacity<0) ) {
*pErrorCode = U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}
UnicodeString patternString((patternLength < 0), pattern, patternLength);
UBool force12 = ((options & UADATPG_FORCE_HOUR_CYCLE_MASK) == UADATPG_FORCE_12_HOUR_CYCLE);
UBool force24 = ((options & UADATPG_FORCE_HOUR_CYCLE_MASK) == UADATPG_FORCE_24_HOUR_CYCLE);
if (force12 || force24) {
UBool inQuoted = false;
UBool inTimePat = false;
UBool needReplacement = false;
int32_t timePatStart = 0;
int32_t timePatLimit = 0;
int32_t timeNonHourStart = -1;
int32_t timeNonHourLimit = 0;
UnicodeString skeleton, otherCycSkeleton;
UnicodeString timePatChars("abBhHKkmsSzZOvVXx", -1, US_INV); // all pattern chars for times
int32_t numForcedH = 0;
int32_t patPos, patLen = patternString.length();
for (patPos = 0; patPos < patLen; patPos++) {
UChar patChr = patternString.charAt(patPos);
UChar otherCycPatChr = patChr;
if (patChr == 0x27 /* ASCII-range single quote */) {
inQuoted = !inQuoted;
} else if (!inQuoted) {
if (timePatChars.indexOf(patChr) >= 0) {
// in a time pattern
if (!inTimePat) {
inTimePat = true;
timePatStart = patPos;
timeNonHourStart = -1;
skeleton.remove();
otherCycSkeleton.remove();
numForcedH = 0;
}
if (patChr==LOW_H || patChr==CAP_K) { // hK, hour, 12-hour cycle
if (force24) {
otherCycPatChr = CAP_H; // force to H
needReplacement = true;
timeNonHourStart = patPos + 1;
// If we are switching from a 12-hour cycle to a 24-hour cycle
// and the pattern for 12-hour cycle was zero-padded to 2 digits,
// make sure the new pattern for 24-hour cycle is also padded to
// 2 digits regardless of locale default, to match the
// expectations of the pattern provider. However we don't need
// to do this going the other direction (from 24- to 12-hour
// cycles, don't require that the 12-hour cycle has zero padding
// just because the 24-hour cycle did; the 12-hour cycle will
// add other elements such as a, so there wil be a length change
// anyway).
numForcedH++;
}
} else if (patChr==CAP_H || patChr==LOW_K) { // Hk, hour, 24-hour cycle
if (force12) {
otherCycPatChr = LOW_H; // force to h
needReplacement = true;
timeNonHourStart = patPos + 1;
}
} else if (timeNonHourStart < 0 && (patChr==LOW_M || patChr==LOW_S)) { // 'm' or 's' and we did not have hour
timeNonHourStart = patPos;
}
skeleton.append(patChr);
otherCycSkeleton.append(otherCycPatChr);
} else if ((patChr >= 0x41 && patChr <= 0x5A) || (patChr >= 0x61 && patChr <= 0x7A)) {
// a non-time pattern character, forces end of any time pattern
if (inTimePat) {
inTimePat = false;
if (needReplacement) {
needReplacement = false;
// do replacement
int32_t posAdjust = _doReplaceAndReturnAdj(dtpg, options, numForcedH >= 2, patternString, skeleton, otherCycSkeleton,
timePatStart, timePatLimit, timeNonHourStart, timeNonHourLimit, pErrorCode);
patLen += posAdjust;
patPos += posAdjust;
}
}
}
if (inTimePat && !u_isUWhiteSpace(patChr)) {
timePatLimit = patPos + 1;
if (timeNonHourStart >= 0 && patChr!=LOW_A && patChr!=LOW_B && patChr!=CAP_B) { // NonHour portion should not include 'a','b','B'
timeNonHourLimit = timePatLimit;
}
}
}
}
// end of string
if (needReplacement) {
// do replacement
_doReplaceAndReturnAdj(dtpg, options, numForcedH >= 2, patternString, skeleton, otherCycSkeleton,
timePatStart, timePatLimit, timeNonHourStart, timeNonHourLimit, pErrorCode);
}
}
return patternString.extract(newPattern, newPatternCapacity, *pErrorCode);
}
#endif // APPLE_ICU_CHANGES
U_CAPI UDateFormatHourCycle U_EXPORT2
udatpg_getDefaultHourCycle(const UDateTimePatternGenerator *dtpg, UErrorCode* pErrorCode) {
return ((const DateTimePatternGenerator *)dtpg)->getDefaultHourCycle(*pErrorCode);
}
#endif
|