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

Side by Side Diff: third_party/icu/source/i18n/timezone.cpp

Issue 6484008: Enable RTTI for ICU.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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
« no previous file with comments | « third_party/icu/source/i18n/tblcoll.cpp ('k') | third_party/icu/source/i18n/tmunit.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) 1997-2010, International Business Machines Corporation and * 3 * Copyright (C) 1997-2010, International Business Machines Corporation and *
4 * others. All Rights Reserved. * 4 * others. All Rights Reserved. *
5 ******************************************************************************* 5 *******************************************************************************
6 * 6 *
7 * File TIMEZONE.CPP 7 * File TIMEZONE.CPP
8 * 8 *
9 * Modification History: 9 * Modification History:
10 * 10 *
(...skipping 17 matching lines...) Expand all
28 * 09/02/98 stephen Added getOffset(monthLen) and hasSameRules() 28 * 09/02/98 stephen Added getOffset(monthLen) and hasSameRules()
29 * 09/15/98 stephen Added getStaticClassID() 29 * 09/15/98 stephen Added getStaticClassID()
30 * 02/22/99 stephen Removed character literals for EBCDIC safety 30 * 02/22/99 stephen Removed character literals for EBCDIC safety
31 * 05/04/99 stephen Changed initDefault() for Mutex issues 31 * 05/04/99 stephen Changed initDefault() for Mutex issues
32 * 07/12/99 helena HPUX 11 CC Port. 32 * 07/12/99 helena HPUX 11 CC Port.
33 * 12/03/99 aliu Moved data out of static table into icudata.dll. 33 * 12/03/99 aliu Moved data out of static table into icudata.dll.
34 * Substantial rewrite of zone lookup, default zone, an d 34 * Substantial rewrite of zone lookup, default zone, an d
35 * available IDs code. Misc. cleanup. 35 * available IDs code. Misc. cleanup.
36 ******************************************************************************** */ 36 ******************************************************************************** */
37 37
38 #include <typeinfo> // for 'typeid' to work 38 #include "unicode/utypeinfo.h" // for 'typeid' to work
39 39
40 #include "unicode/utypes.h" 40 #include "unicode/utypes.h"
41 #include "unicode/ustring.h" 41 #include "unicode/ustring.h"
42 42
43 #ifdef U_DEBUG_TZ 43 #ifdef U_DEBUG_TZ
44 # include <stdio.h> 44 # include <stdio.h>
45 # include "uresimp.h" // for debugging 45 # include "uresimp.h" // for debugging
46 46
47 static void debug_tz_loc(const char *f, int32_t l) 47 static void debug_tz_loc(const char *f, int32_t l)
48 { 48 {
(...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 getCustomID(id, canonicalID, status); 1378 getCustomID(id, canonicalID, status);
1379 } 1379 }
1380 return canonicalID; 1380 return canonicalID;
1381 } 1381 }
1382 1382
1383 U_NAMESPACE_END 1383 U_NAMESPACE_END
1384 1384
1385 #endif /* #if !UCONFIG_NO_FORMATTING */ 1385 #endif /* #if !UCONFIG_NO_FORMATTING */
1386 1386
1387 //eof 1387 //eof
OLDNEW
« no previous file with comments | « third_party/icu/source/i18n/tblcoll.cpp ('k') | third_party/icu/source/i18n/tmunit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698