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

Side by Side Diff: source/i18n/unicode/gender.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/fmtable.h ('k') | source/i18n/unicode/locdspnm.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) 2008-2013, International Business Machines Corporation and 3 * Copyright (C) 2008-2013, International Business Machines Corporation and
4 * others. All Rights Reserved. 4 * others. All Rights Reserved.
5 ******************************************************************************* 5 *******************************************************************************
6 * 6 *
7 * 7 *
8 * File GENDER.H 8 * File GENDER.H
9 * 9 *
10 * Modification History:* 10 * Modification History:*
(...skipping 11 matching lines...) Expand all
22 22
23 #include "unicode/locid.h" 23 #include "unicode/locid.h"
24 #include "unicode/ugender.h" 24 #include "unicode/ugender.h"
25 #include "unicode/uobject.h" 25 #include "unicode/uobject.h"
26 26
27 class GenderInfoTest; 27 class GenderInfoTest;
28 28
29 U_NAMESPACE_BEGIN 29 U_NAMESPACE_BEGIN
30 30
31 // Forward Declaration 31 // Forward Declaration
32 void GenderInfo_initCache(UErrorCode &status); 32 void U_CALLCONV GenderInfo_initCache(UErrorCode &status);
33 33
34 /** 34 /**
35 * GenderInfo computes the gender of a list as a whole given the gender of 35 * GenderInfo computes the gender of a list as a whole given the gender of
36 * each element. 36 * each element.
37 * @stable ICU 50 37 * @stable ICU 50
38 */ 38 */
39 class U_I18N_API GenderInfo : public UObject { 39 class U_I18N_API GenderInfo : public UObject {
40 public: 40 public:
41 41
42 /** 42 /**
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 static const GenderInfo* getNeutralInstance(); 94 static const GenderInfo* getNeutralInstance();
95 95
96 static const GenderInfo* getMixedNeutralInstance(); 96 static const GenderInfo* getMixedNeutralInstance();
97 97
98 static const GenderInfo* getMaleTaintsInstance(); 98 static const GenderInfo* getMaleTaintsInstance();
99 99
100 static const GenderInfo* loadInstance(const Locale& locale, UErrorCode& stat us); 100 static const GenderInfo* loadInstance(const Locale& locale, UErrorCode& stat us);
101 101
102 friend class ::GenderInfoTest; 102 friend class ::GenderInfoTest;
103 friend void GenderInfo_initCache(UErrorCode &status); 103 friend void U_CALLCONV GenderInfo_initCache(UErrorCode &status);
104 }; 104 };
105 105
106 U_NAMESPACE_END 106 U_NAMESPACE_END
107 107
108 #endif /* #if !UCONFIG_NO_FORMATTING */ 108 #endif /* #if !UCONFIG_NO_FORMATTING */
109 109
110 #endif // _GENDER 110 #endif // _GENDER
111 //eof 111 //eof
OLDNEW
« no previous file with comments | « source/i18n/unicode/fmtable.h ('k') | source/i18n/unicode/locdspnm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698