Frank Tang
ede201c305
ICU-22994 Use C++ typeid() instead of Calendar::getType() for calendar type comparison
...
See #3310
2025-01-31 15:19:55 +01:00
Fredrik Roubert
53568e8dfc
ICU-22520 Refactor CharString & CharStringByteSink into helper.
...
The repeated sequence of allocating a CharString and CharStringByteSink,
before calling some function that writes into this, can be moved into a
single shared helper function which then is used to give all ulocimp.h
functions that write to ByteSink an overload that instead returns a
CharString, to make call sites look like perfectly normal C++ code.
2024-03-05 23:44:50 +01:00
Fredrik Roubert
939f08f274
ICU-22520 Use C++ function signatures for internal C++ functions.
...
Some of this code was originally written as C code and some of this code
was originally written as C++ code but made to resemble the then already
existing code that had once been C code. Changing it all to normal C++
now will make it easier and safer to work with going forward.
· Use unnamed namespace instead of static.
· Use reference instead of non-nullable pointer.
· Use bool instead of UBool.
· Use constexpr for static data.
· Use U_EXPORT instead of U_CAPI or U_CFUNC.
· Use the default calling convention instead of U_EXPORT2.
2024-02-12 21:44:06 +01:00
Fredrik Roubert
9bce52f003
ICU-21289 Switch to using CharString for calling uloc_toLanguageTag().
2023-09-26 13:26:11 +02:00
Fredrik Roubert
2de88f9d9c
ICU-21833 Replace UChar with char16_t in all C++ code.
2023-02-06 19:27:44 +01:00
Fredrik Roubert
2e0d30cfcf
ICU-21833 Replace NULL with nullptr in all C++ code.
2023-02-03 20:20:38 +01:00
Fredrik Roubert
030fa1a479
ICU-21148 Consistently use standard lowercase true/false everywhere.
...
This is the normal standard way in C, C++ as well as Java and there's no
longer any reason for ICU to be different. The various internal macros
providing custom boolean constants can all be deleted and code as well
as documentation can be updated to use lowercase true/false everywhere.
2022-09-07 20:56:33 +02:00
Markus Scherer
46720c4120
ICU-21559 more guards for self-assignment
2021-03-30 12:19:11 -07:00
Markus Scherer
f02b496494
ICU-20783 C++ covariant return types: clone(), freeze() & friends
2019-08-22 16:24:41 -07:00
Andy Heninger
2f534730c9
ICU-13816 Windows compiler warning fix.
...
X-SVN-Rev: 41504
2018-06-04 21:04:14 +00:00
William Zhao
d847a21238
ICU-13275 Merge warning cleanup fixes into trunk
...
X-SVN-Rev: 40283
2017-07-22 01:11:59 +00:00
Steven R. Loomis
02e76897eb
ICU-12786 dont call Win32 tz functions on cygwin (patch)
...
X-SVN-Rev: 40007
2017-04-07 18:26:45 +00:00
Jeff Genovy
ada968b02d
ICU-13027 - Use int32_t instead of int for a few places for consistency.
...
X-SVN-Rev: 39893
2017-03-22 05:21:19 +00:00
Jeff Genovy
e9946ec98e
ICU-13027 - Merge in changes from 'branches/shawnste/working/icu4c'
...
X-SVN-Rev: 39890
2017-03-21 01:03:49 +00:00
Andy Heninger
242e02c388
ICU-12764 icu4c utf-8 source files, update Copyright notices.
...
X-SVN-Rev: 39583
2017-01-20 00:20:31 +00:00
Andy Heninger
85f8d034a7
ICU-12547 UCHAR_TYPE=char16_t on Windows, fix compilation problems.
...
X-SVN-Rev: 39217
2016-09-13 21:37:40 +00:00
Michael Ow
61607c2773
ICU-12564 Update copyright notice in trunk
...
X-SVN-Rev: 38848
2016-06-15 18:58:17 +00:00
Yoshito Umaoka
00ca13e126
ICU-12564 Reverted r38761 and r38762, because we want to prepend the Unicode copyright for existing source files, instead of replacing copyright comments.
...
X-SVN-Rev: 38776
2016-05-31 21:45:07 +00:00
Michael Ow
c9f199a30f
ICU-12564 Update copyright notice in ICU4C
...
X-SVN-Rev: 38761
2016-05-26 22:32:17 +00:00
Fredrik Roubert
7f4b8d106b
ICU-12012 Replace all sizeof p / sizeof *p with UPRV_LENGTHOF().
...
R=markus.icu@gmail.com
Review URL: https://codereview.appspot.com/285520043 .
X-SVN-Rev: 38337
2016-02-23 10:40:09 +00:00
Markus Scherer
bb5f37a069
ICU-7457 replace MessageFormat with SimpleFormatter where easy; remove obsolete ChoiceFormat handling of currency names; move LocaleDisplayNames & ucurr from i18n to common
...
X-SVN-Rev: 38200
2016-01-26 22:56:59 +00:00
Yoshito Umaoka
42040b3e4a
ICU-11389 Fixed a problem in Win32DateFormat assignment operator which triggered intltest.exe crash in u_cleanup with the recent DateFormat caching change.
...
X-SVN-Rev: 36756
2014-11-20 00:08:49 +00:00
Yoshito Umaoka
1551c65468
ICU-10098 Fixed LCID to posix-style locale ID mapping problem. The fix required to change the internal LCID mapping function interface, and resolved a threading issue in uloc_getLocaleForLCID() and some other internal implementation problems in Win32DateFormat/Win32NumberFormat.
...
X-SVN-Rev: 33586
2013-05-03 21:36:03 +00:00
Markus Scherer
9bcc40cf9e
ICU-8452 un-autoconf platform.h, move user-configurable settings to uconfig.h, and other changes; from svn merge --reintegrate branches/markus/platformh at r30411
...
X-SVN-Rev: 30412
2011-07-23 00:10:30 +00:00
Jason Spieth
a1a235b15e
ICU-6726 Remove unneeded lower bound check in ICU4C
...
X-SVN-Rev: 25657
2009-03-26 19:06:50 +00:00
Jason Spieth
b0c73cc54b
ICU-6726 Integrate changes back into ICU4C trunk
...
X-SVN-Rev: 25653
2009-03-25 20:25:39 +00:00
Yoshito Umaoka
e8f967a5fc
ICU-6726 Fixed the date format test failures.
...
X-SVN-Rev: 25596
2009-03-16 22:25:05 +00:00
Jason Spieth
99ca0b9eac
ICU-6726 Changes to dateTimePatterns lengths and default glue pattern usage
...
X-SVN-Rev: 25592
2009-03-16 15:23:11 +00:00
Michael Ow
eac717e1df
ICU-6207 Disable getting windows timezone information from static tables. Use resource bundles and TimeZone and Calendar API to get needed timezone information. Create a new file in i18n to allow access to TimeZone and Calendar API. Update subsequent files to use new wintzimpl.h API.
...
X-SVN-Rev: 24594
2008-09-18 21:13:52 +00:00
George Rhoten
e9a3130705
ICU-5410 Improve code coverage by turning a stack array into a static const array.
...
X-SVN-Rev: 21749
2007-06-15 17:21:17 +00:00
George Rhoten
bb11dbdf53
ICU-5254 Fix for MinGW
...
X-SVN-Rev: 20065
2006-08-15 06:48:01 +00:00
Eric Mader
79df33682b
ICU-5196 Skip Windows locales that don't have a corresponding ICU locale ID. Generate random doubles as the quotient of two int64_ts.
...
X-SVN-Rev: 19619
2006-05-05 23:21:23 +00:00
George Rhoten
8bb51a8617
ICU-5029 Fix some memory problems
...
X-SVN-Rev: 19070
2006-02-06 18:21:06 +00:00
Eric Mader
ae8baeb57d
ICU-4152 Use TimeZone::getEquivalentID to handle aliases.
...
X-SVN-Rev: 19020
2006-01-24 22:16:39 +00:00
Eric Mader
ed5ad9b463
ICU-4152 Initial checkin of tests. Aslo bug fixes for bugs that the tests found!
...
X-SVN-Rev: 19016
2006-01-23 23:25:00 +00:00
George Rhoten
01d8b5a202
ICU-4152 Use uprv_ for the private function prefix.
...
X-SVN-Rev: 18971
2006-01-13 00:16:51 +00:00
Eric Mader
a992570c40
ICU-4152 Initial check in of Windows formatting code!
...
X-SVN-Rev: 18963
2006-01-12 19:53:58 +00:00