Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: source/i18n/dtitvfmt.cpp

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/i18n/dtitv_impl.h ('k') | source/i18n/dtptngen.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /******************************************************************************* 1 /*******************************************************************************
2 * Copyright (C) 2008-2013, International Business Machines Corporation and 2 * Copyright (C) 2008-2014, International Business Machines Corporation and
3 * others. All Rights Reserved. 3 * others. All Rights Reserved.
4 ******************************************************************************* 4 *******************************************************************************
5 * 5 *
6 * File DTITVFMT.CPP 6 * File DTITVFMT.CPP
7 * 7 *
8 ******************************************************************************* 8 *******************************************************************************
9 */ 9 */
10 10
11 #include "utypeinfo.h" // for 'typeid' to work 11 #include "utypeinfo.h" // for 'typeid' to work
12 12
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 case LOW_Q: 813 case LOW_Q:
814 case CAP_L: 814 case CAP_L:
815 case LOW_L: 815 case LOW_L:
816 case CAP_W: 816 case CAP_W:
817 case LOW_W: 817 case LOW_W:
818 case CAP_D: 818 case CAP_D:
819 case CAP_F: 819 case CAP_F:
820 case LOW_G: 820 case LOW_G:
821 case LOW_E: 821 case LOW_E:
822 case LOW_C: 822 case LOW_C:
823 case CAP_U:
824 case LOW_R:
823 normalizedDateSkeleton.append(ch); 825 normalizedDateSkeleton.append(ch);
824 dateSkeleton.append(ch); 826 dateSkeleton.append(ch);
825 break; 827 break;
826 case LOW_A: 828 case LOW_A:
827 // 'a' is implicitly handled 829 // 'a' is implicitly handled
828 timeSkeleton.append(ch); 830 timeSkeleton.append(ch);
829 break; 831 break;
830 case LOW_H: 832 case LOW_H:
831 timeSkeleton.append(ch); 833 timeSkeleton.append(ch);
832 ++hCount; 834 ++hCount;
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
1463 1465
1464 1466
1465 1467
1466 const UChar 1468 const UChar
1467 DateIntervalFormat::fgCalendarFieldToPatternLetter[] = 1469 DateIntervalFormat::fgCalendarFieldToPatternLetter[] =
1468 { 1470 {
1469 /*GyM*/ CAP_G, LOW_Y, CAP_M, 1471 /*GyM*/ CAP_G, LOW_Y, CAP_M,
1470 /*wWd*/ LOW_W, CAP_W, LOW_D, 1472 /*wWd*/ LOW_W, CAP_W, LOW_D,
1471 /*DEF*/ CAP_D, CAP_E, CAP_F, 1473 /*DEF*/ CAP_D, CAP_E, CAP_F,
1472 /*ahH*/ LOW_A, LOW_H, CAP_H, 1474 /*ahH*/ LOW_A, LOW_H, CAP_H,
1473 /*m..*/ LOW_M, 1475 /*msS*/ LOW_M, LOW_S, CAP_S, // MINUTE, SECOND, MILLISECOND
1476 /*z.Y*/ LOW_Z, SPACE, CAP_Y, // ZONE_OFFSET, DST_OFFSET, YEAR_WOY,
1477 /*eug*/ LOW_E, LOW_U, LOW_G, // DOW_LOCAL, EXTENDED_YEAR, JULIAN_DAY,
1478 /*A..*/ CAP_A, SPACE, SPACE, // MILLISECONDS_IN_DAY, IS_LEAP_MONTH, FIELD_CO UNT
1474 }; 1479 };
1475 1480
1476 1481
1477 U_NAMESPACE_END 1482 U_NAMESPACE_END
1478 1483
1479 #endif 1484 #endif
OLDNEW
« no previous file with comments | « source/i18n/dtitv_impl.h ('k') | source/i18n/dtptngen.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698