| OLD | NEW |
| 1 /** | 1 /** |
| 2 ******************************************************************************* | 2 ******************************************************************************* |
| 3 * Copyright (C) 2001-2004, International Business Machines Corporation and * | 3 * Copyright (C) 2001-2014, International Business Machines Corporation and * |
| 4 * others. All Rights Reserved. * | 4 * others. All Rights Reserved. * |
| 5 ******************************************************************************* | 5 ******************************************************************************* |
| 6 * | 6 * |
| 7 ******************************************************************************* | 7 ******************************************************************************* |
| 8 */ | 8 */ |
| 9 #include "unicode/utypes.h" | 9 #include "unicode/utypes.h" |
| 10 | 10 |
| 11 #if !UCONFIG_NO_SERVICE | 11 #if !UCONFIG_NO_SERVICE |
| 12 | 12 |
| 13 #include "unicode/resbund.h" | 13 #include "unicode/resbund.h" |
| 14 #include "uresimp.h" | 14 #include "uresimp.h" |
| 15 #include "cmemory.h" | 15 #include "cmemory.h" |
| 16 #include "servloc.h" | 16 #include "servloc.h" |
| 17 #include "ustrfmt.h" | 17 #include "ustrfmt.h" |
| 18 #include "uhash.h" | 18 #include "uhash.h" |
| 19 #include "charstr.h" | 19 #include "charstr.h" |
| 20 #include "ucln_cmn.h" | |
| 21 #include "uassert.h" | 20 #include "uassert.h" |
| 22 | 21 |
| 23 #define UNDERSCORE_CHAR ((UChar)0x005f) | 22 #define UNDERSCORE_CHAR ((UChar)0x005f) |
| 24 #define AT_SIGN_CHAR ((UChar)64) | 23 #define AT_SIGN_CHAR ((UChar)64) |
| 25 #define PERIOD_CHAR ((UChar)46) | 24 #define PERIOD_CHAR ((UChar)46) |
| 26 | 25 |
| 27 U_NAMESPACE_BEGIN | 26 U_NAMESPACE_BEGIN |
| 28 | 27 |
| 29 LocaleKey* | 28 LocaleKey* |
| 30 LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID, | 29 LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID, |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 #endif | 177 #endif |
| 179 | 178 |
| 180 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(LocaleKey) | 179 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(LocaleKey) |
| 181 | 180 |
| 182 U_NAMESPACE_END | 181 U_NAMESPACE_END |
| 183 | 182 |
| 184 /* !UCONFIG_NO_SERVICE */ | 183 /* !UCONFIG_NO_SERVICE */ |
| 185 #endif | 184 #endif |
| 186 | 185 |
| 187 | 186 |
| OLD | NEW |