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

Side by Side Diff: third_party/icu38/source/common/uset_imp.h

Issue 52030: Apply ICU patches for ICU tickets 6175 (ISO-2022 and ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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
OLDNEW
1 /* 1 /*
2 ******************************************************************************* 2 *******************************************************************************
3 * 3 *
4 * Copyright (C) 2004-2007, International Business Machines 4 * Copyright (C) 2004-2007, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ******************************************************************************* 7 *******************************************************************************
8 * file name: uset_imp.h 8 * file name: uset_imp.h
9 * encoding: US-ASCII 9 * encoding: US-ASCII
10 * tab size: 8 (not used) 10 * tab size: 8 (not used)
(...skipping 18 matching lines...) Expand all
29 29
30 typedef void U_CALLCONV 30 typedef void U_CALLCONV
31 USetAddRange(USet *set, UChar32 start, UChar32 end); 31 USetAddRange(USet *set, UChar32 start, UChar32 end);
32 32
33 typedef void U_CALLCONV 33 typedef void U_CALLCONV
34 USetAddString(USet *set, const UChar *str, int32_t length); 34 USetAddString(USet *set, const UChar *str, int32_t length);
35 35
36 typedef void U_CALLCONV 36 typedef void U_CALLCONV
37 USetRemove(USet *set, UChar32 c); 37 USetRemove(USet *set, UChar32 c);
38 38
39 typedef void U_CALLCONV
40 USetRemoveRange(USet *set, UChar32 start, UChar32 end);
41
39 /** 42 /**
40 * Interface for adding items to a USet, to keep low-level code from 43 * Interface for adding items to a USet, to keep low-level code from
41 * statically depending on the USet implementation. 44 * statically depending on the USet implementation.
42 * Calls will look like sa->add(sa->set, c); 45 * Calls will look like sa->add(sa->set, c);
43 */ 46 */
44 struct USetAdder { 47 struct USetAdder {
45 USet *set; 48 USet *set;
46 USetAdd *add; 49 USetAdd *add;
47 USetAddRange *addRange; 50 USetAddRange *addRange;
48 USetAddString *addString; 51 USetAddString *addString;
49 USetRemove *remove; 52 USetRemove *remove;
53 USetRemoveRange *removeRange;
50 }; 54 };
51 typedef struct USetAdder USetAdder; 55 typedef struct USetAdder USetAdder;
52 56
53 U_CDECL_END 57 U_CDECL_END
54 58
55 #endif 59 #endif
56 60
OLDNEW
« no previous file with comments | « third_party/icu38/source/common/ucnvmbcs.c ('k') | third_party/icu38/source/test/cintltst/ncnvtst.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698