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

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

Issue 587833004: Turn on UCONFIG_NO_NON_HTML5_CONVERTER to save 100kB (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu52/
Patch Set: more tests added to desc Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « source/common/ucnv_lmb.c ('k') | source/common/unicode/urename.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 * Copyright (C) 2000-2011, International Business Machines 3 * Copyright (C) 2000-2011, International Business Machines
4 * Corporation and others. All Rights Reserved. 4 * Corporation and others. All Rights Reserved.
5 ********************************************************************** 5 **********************************************************************
6 * file name: ucnvhz.c 6 * file name: ucnvhz.c
7 * encoding: US-ASCII 7 * encoding: US-ASCII
8 * tab size: 8 (not used) 8 * tab size: 8 (not used)
9 * indentation:4 9 * indentation:4
10 * 10 *
11 * created on: 2000oct16 11 * created on: 2000oct16
12 * created by: Ram Viswanadha 12 * created by: Ram Viswanadha
13 * 10/31/2000 Ram Implemented offsets logic function 13 * 10/31/2000 Ram Implemented offsets logic function
14 * 14 *
15 */ 15 */
16 16
17 #include "unicode/utypes.h" 17 #include "unicode/utypes.h"
18 18
19 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION 19 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFIG_NO_NON_H TML5_CONVERSION
20 20
21 #include "cmemory.h" 21 #include "cmemory.h"
22 #include "unicode/ucnv.h" 22 #include "unicode/ucnv.h"
23 #include "unicode/ucnv_cb.h" 23 #include "unicode/ucnv_cb.h"
24 #include "unicode/uset.h" 24 #include "unicode/uset.h"
25 #include "unicode/utf16.h" 25 #include "unicode/utf16.h"
26 #include "ucnv_bld.h" 26 #include "ucnv_bld.h"
27 #include "ucnv_cnv.h" 27 #include "ucnv_cnv.h"
28 #include "ucnv_imp.h" 28 #include "ucnv_imp.h"
29 29
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 sizeof(UConverterSharedData), 630 sizeof(UConverterSharedData),
631 ~((uint32_t) 0), 631 ~((uint32_t) 0),
632 NULL, 632 NULL,
633 NULL, 633 NULL,
634 &_HZStaticData, 634 &_HZStaticData,
635 FALSE, 635 FALSE,
636 &_HZImpl, 636 &_HZImpl,
637 0 637 0
638 }; 638 };
639 639
640 #endif /* #if !UCONFIG_NO_LEGACY_CONVERSION */ 640 #endif /* #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFI G_NO_NON_HTML5_CONVERSION */
OLDNEW
« no previous file with comments | « source/common/ucnv_lmb.c ('k') | source/common/unicode/urename.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698