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

Side by Side Diff: source/common/ucnvscsu.c

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/common/ucnvisci.c ('k') | source/common/ucol_swp.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 ****************************************************************************** 2 ******************************************************************************
3 * 3 *
4 * Copyright (C) 2000-2011, International Business Machines 4 * Copyright (C) 2000-2015, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ****************************************************************************** 7 ******************************************************************************
8 * file name: ucnvscsu.c 8 * file name: ucnvscsu.c
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: 2000nov18 13 * created on: 2000nov18
14 * created by: Markus W. Scherer 14 * created by: Markus W. Scherer
15 * 15 *
16 * This is an implementation of the Standard Compression Scheme for Unicode 16 * This is an implementation of the Standard Compression Scheme for Unicode
17 * as defined in http://www.unicode.org/unicode/reports/tr6/ . 17 * as defined in http://www.unicode.org/unicode/reports/tr6/ .
18 * Reserved commands and window settings are treated as illegal sequences and 18 * Reserved commands and window settings are treated as illegal sequences and
19 * will result in callback calls. 19 * will result in callback calls.
20 */ 20 */
21 21
22 #include "unicode/utypes.h" 22 #include "unicode/utypes.h"
23 23
24 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_NON_HTML5_CONVERSION 24 #if !UCONFIG_NO_CONVERSION && !UCONFIG_ONLY_HTML_CONVERSION
25 25
26 #include "unicode/ucnv.h" 26 #include "unicode/ucnv.h"
27 #include "unicode/ucnv_cb.h" 27 #include "unicode/ucnv_cb.h"
28 #include "unicode/utf16.h" 28 #include "unicode/utf16.h"
29 #include "ucnv_bld.h" 29 #include "ucnv_bld.h"
30 #include "ucnv_cnv.h" 30 #include "ucnv_cnv.h"
31 #include "cmemory.h" 31 #include "cmemory.h"
32 32
33 /* SCSU definitions --------------------------------------------------------- */ 33 /* SCSU definitions --------------------------------------------------------- */
34 34
(...skipping 1971 matching lines...) Expand 10 before | Expand all | Expand 10 after
2006 FALSE, FALSE, 2006 FALSE, FALSE,
2007 0, 2007 0,
2008 0, 2008 0,
2009 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */ 2009 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */
2010 }; 2010 };
2011 2011
2012 const UConverterSharedData _SCSUData= 2012 const UConverterSharedData _SCSUData=
2013 UCNV_IMMUTABLE_SHARED_DATA_INITIALIZER(&_SCSUStaticData, &_SCSUImpl); 2013 UCNV_IMMUTABLE_SHARED_DATA_INITIALIZER(&_SCSUStaticData, &_SCSUImpl);
2014 2014
2015 #endif 2015 #endif
OLDNEW
« no previous file with comments | « source/common/ucnvisci.c ('k') | source/common/ucol_swp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698