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

Side by Side Diff: source/i18n/decimalformatpatternimpl.h

Issue 1621843002: ICU 56 update step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@561
Patch Set: Created 4 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/decimalformatpattern.cpp ('k') | source/i18n/decimfmt.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 ********************************************************************************
3 * Copyright (C) 2015, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 ********************************************************************************
6 *
7 * File decimalformatpatternimpl.h
8 ********************************************************************************
9 */
10
11 #ifndef DECIMALFORMATPATTERNIMPL_H
12 #define DECIMALFORMATPATTERNIMPL_H
13
14 #include "unicode/utypes.h"
15
16 #define kPatternZeroDigit ((UChar)0x0030) /*'0'*/
17 #define kPatternSignificantDigit ((UChar)0x0040) /*'@'*/
18 #define kPatternGroupingSeparator ((UChar)0x002C) /*','*/
19 #define kPatternDecimalSeparator ((UChar)0x002E) /*'.'*/
20 #define kPatternPerMill ((UChar)0x2030)
21 #define kPatternPercent ((UChar)0x0025) /*'%'*/
22 #define kPatternDigit ((UChar)0x0023) /*'#'*/
23 #define kPatternSeparator ((UChar)0x003B) /*';'*/
24 #define kPatternExponent ((UChar)0x0045) /*'E'*/
25 #define kPatternPlus ((UChar)0x002B) /*'+'*/
26 #define kPatternMinus ((UChar)0x002D) /*'-'*/
27 #define kPatternPadEscape ((UChar)0x002A) /*'*'*/
28 #define kQuote ((UChar)0x0027) /*'\''*/
29
30 #define kCurrencySign ((UChar)0x00A4)
31 #define kDefaultPad ((UChar)0x0020) /* */
32
33 #endif
OLDNEW
« no previous file with comments | « source/i18n/decimalformatpattern.cpp ('k') | source/i18n/decimfmt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698