| OLD | NEW |
| 1 /** | 1 /** |
| 2 ******************************************************************************* | 2 ******************************************************************************* |
| 3 * Copyright (C) 2001-2014, 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 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 result.put(_id, (void*)this, status); | 90 result.put(_id, (void*)this, status); |
| 91 } | 91 } |
| 92 } | 92 } |
| 93 } | 93 } |
| 94 | 94 |
| 95 #ifdef SERVICE_DEBUG | 95 #ifdef SERVICE_DEBUG |
| 96 UnicodeString& | 96 UnicodeString& |
| 97 SimpleLocaleKeyFactory::debug(UnicodeString& result) const | 97 SimpleLocaleKeyFactory::debug(UnicodeString& result) const |
| 98 { | 98 { |
| 99 LocaleKeyFactory::debug(result); | 99 LocaleKeyFactory::debug(result); |
| 100 result.append(", id: "); | 100 result.append((UnicodeString)", id: "); |
| 101 result.append(_id); | 101 result.append(_id); |
| 102 result.append(", kind: "); | 102 result.append((UnicodeString)", kind: "); |
| 103 result.append(_kind); | 103 result.append(_kind); |
| 104 return result; | 104 return result; |
| 105 } | 105 } |
| 106 | 106 |
| 107 UnicodeString& | 107 UnicodeString& |
| 108 SimpleLocaleKeyFactory::debugClass(UnicodeString& result) const | 108 SimpleLocaleKeyFactory::debugClass(UnicodeString& result) const |
| 109 { | 109 { |
| 110 return result.append("SimpleLocaleKeyFactory"); | 110 return result.append((UnicodeString)"SimpleLocaleKeyFactory"); |
| 111 } | 111 } |
| 112 #endif | 112 #endif |
| 113 | 113 |
| 114 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SimpleLocaleKeyFactory) | 114 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SimpleLocaleKeyFactory) |
| 115 | 115 |
| 116 U_NAMESPACE_END | 116 U_NAMESPACE_END |
| 117 | 117 |
| 118 /* !UCONFIG_NO_SERVICE */ | 118 /* !UCONFIG_NO_SERVICE */ |
| 119 #endif | 119 #endif |
| 120 | 120 |
| 121 | 121 |
| OLD | NEW |