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

Side by Side Diff: source/tools/toolutil/collationinfo.h

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/tools/pkgdata/pkgdata.vcxproj.filters ('k') | source/tools/toolutil/collationinfo.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 * Copyright (C) 2013-2014, International Business Machines 3 * Copyright (C) 2013-2015, International Business Machines
4 * Corporation and others. All Rights Reserved. 4 * Corporation and others. All Rights Reserved.
5 ******************************************************************************* 5 *******************************************************************************
6 * collationinfo.h 6 * collationinfo.h
7 * 7 *
8 * created on: 2013aug05 8 * created on: 2013aug05
9 * created by: Markus W. Scherer 9 * created by: Markus W. Scherer
10 */ 10 */
11 11
12 #ifndef __COLLATIONINFO_H__ 12 #ifndef __COLLATIONINFO_H__
13 #define __COLLATIONINFO_H__ 13 #define __COLLATIONINFO_H__
14 14
15 #include "unicode/utypes.h" 15 #include "unicode/utypes.h"
16 16
17 #if !UCONFIG_NO_COLLATION 17 #if !UCONFIG_NO_COLLATION
18 18
19 U_NAMESPACE_BEGIN 19 U_NAMESPACE_BEGIN
20 20
21 struct CollationData;
22
21 /** 23 /**
22 * Collation-related code for tools & demos. 24 * Collation-related code for tools & demos.
23 */ 25 */
24 class U_TOOLUTIL_API CollationInfo /* all static */ { 26 class U_TOOLUTIL_API CollationInfo /* all static */ {
25 public: 27 public:
26 static void printSizes(int32_t sizeWithHeader, const int32_t indexes[]); 28 static void printSizes(int32_t sizeWithHeader, const int32_t indexes[]);
29 static void printReorderRanges(const CollationData &data, const int32_t *cod es, int32_t length);
27 30
28 private: 31 private:
29 CollationInfo(); // no constructor 32 CollationInfo(); // no constructor
30 33
31 static int32_t getDataLength(const int32_t indexes[], int32_t startIndex); 34 static int32_t getDataLength(const int32_t indexes[], int32_t startIndex);
32 }; 35 };
33 36
34 U_NAMESPACE_END 37 U_NAMESPACE_END
35 38
36 #endif // !UCONFIG_NO_COLLATION 39 #endif // !UCONFIG_NO_COLLATION
37 #endif // __COLLATIONINFO_H__ 40 #endif // __COLLATIONINFO_H__
OLDNEW
« no previous file with comments | « source/tools/pkgdata/pkgdata.vcxproj.filters ('k') | source/tools/toolutil/collationinfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698