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

Side by Side Diff: source/i18n/unicode/ulocdata.h

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/unicode/uldnames.h ('k') | source/i18n/unicode/unum.h » ('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 ****************************************************************************** 2 ******************************************************************************
3 * * 3 * *
4 * Copyright (C) 2003-2013, International Business Machines * 4 * Copyright (C) 2003-2014, International Business Machines *
5 * Corporation and others. All Rights Reserved. * 5 * Corporation and others. All Rights Reserved. *
6 * * 6 * *
7 ****************************************************************************** 7 ******************************************************************************
8 * file name: ulocdata.h 8 * file name: ulocdata.h
9 * encoding: US-ASCII 9 * encoding: US-ASCII
10 * tab size: 8 (not used) 10 * tab size: 8 (not used)
11 * indentation:4 11 * indentation:4
12 * 12 *
13 * created on: 2003Oct21 13 * created on: 2003Oct21
14 * created by: Ram Viswanadha 14 * created by: Ram Viswanadha
(...skipping 23 matching lines...) Expand all
38 /** The possible types of exemplar character sets. 38 /** The possible types of exemplar character sets.
39 * @stable ICU 3.4 39 * @stable ICU 3.4
40 */ 40 */
41 typedef enum ULocaleDataExemplarSetType { 41 typedef enum ULocaleDataExemplarSetType {
42 /** Basic set @stable ICU 3.4 */ 42 /** Basic set @stable ICU 3.4 */
43 ULOCDATA_ES_STANDARD=0, 43 ULOCDATA_ES_STANDARD=0,
44 /** Auxiliary set @stable ICU 3.4 */ 44 /** Auxiliary set @stable ICU 3.4 */
45 ULOCDATA_ES_AUXILIARY=1, 45 ULOCDATA_ES_AUXILIARY=1,
46 /** Index Character set @stable ICU 4.8 */ 46 /** Index Character set @stable ICU 4.8 */
47 ULOCDATA_ES_INDEX=2, 47 ULOCDATA_ES_INDEX=2,
48 #ifndef U_HIDE_DRAFT_API 48 /** Punctuation set @stable ICU 51 */
49 /** Punctuation set @draft ICU 51 */
50 ULOCDATA_ES_PUNCTUATION=3, 49 ULOCDATA_ES_PUNCTUATION=3,
51 #endif /* U_HIDE_DRAFT_API */
52 /** One higher than the last valid type @stable ICU 3.4 */ 50 /** One higher than the last valid type @stable ICU 3.4 */
53 ULOCDATA_ES_COUNT=4 51 ULOCDATA_ES_COUNT=4
54 } ULocaleDataExemplarSetType; 52 } ULocaleDataExemplarSetType;
55 53
56 /** The possible types of delimiters. 54 /** The possible types of delimiters.
57 * @stable ICU 3.4 55 * @stable ICU 3.4
58 */ 56 */
59 typedef enum ULocaleDataDelimiterType { 57 typedef enum ULocaleDataDelimiterType {
60 /** Quotation start @stable ICU 3.4 */ 58 /** Quotation start @stable ICU 3.4 */
61 ULOCDATA_QUOTATION_START = 0, 59 ULOCDATA_QUOTATION_START = 0,
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 * than separatorCapacity, the returned separator will be truncated. 268 * than separatorCapacity, the returned separator will be truncated.
271 * 269 *
272 * @stable ICU 4.2 270 * @stable ICU 4.2
273 */ 271 */
274 U_STABLE int32_t U_EXPORT2 272 U_STABLE int32_t U_EXPORT2
275 ulocdata_getLocaleSeparator(ULocaleData *uld, 273 ulocdata_getLocaleSeparator(ULocaleData *uld,
276 UChar *separator, 274 UChar *separator,
277 int32_t separatorCapacity, 275 int32_t separatorCapacity,
278 UErrorCode *status); 276 UErrorCode *status);
279 #endif 277 #endif
OLDNEW
« no previous file with comments | « source/i18n/unicode/uldnames.h ('k') | source/i18n/unicode/unum.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698