Fredrik Roubert
0178a07a26
ICU-22793 Clang-Tidy: google-readability-casting
...
https://releases.llvm.org/17.0.1/tools/clang/tools/extra/docs/clang-tidy/checks/google/readability-casting.html
2024-07-04 22:32:12 +02:00
Fredrik Roubert
5401c12018
ICU-22621 Clang-Tidy: modernize-use-nullptr
...
https://releases.llvm.org/17.0.1/tools/clang/tools/extra/docs/clang-tidy/checks/modernize/use-nullptr.html
2024-03-15 14:31:54 +01:00
Frank Tang
757d2cd90a
ICU-22555 Fix infinity loop in RuleBasedCollator constructor
...
Fix C++ and Java code.
Add unit tests for both C++ and Java.
2023-11-29 11:31:27 -08:00
Frank Tang
05b0e7abaf
ICU-22517 Limit the closure expansion loop and return error
...
To avoid very slow return from the constructor, we return
error while the Collation rule expand too big.
Add a soft limit to limit to the number of loop needed for 8 Hanguls
Necessary number of loop: H(0)=0; H(i)=3H(i-1)+2.
Where i is the length of Hangul in the rule.
H(1) = 2, H(2) = 8, H(3)=26, H(4)=80, H(5) = 242 ...
2023-10-02 19:06:38 -07:00
Frank Yung-Fong Tang
47b321f1fa
ICU-22277 correct collation error return of uninitialized length value while previous code return error
...
See #2320
2023-02-13 14:24:33 -08:00
Frank Tang
638acd0c38
ICU-21374 Add a CFI build bot for ICU4C
...
Add the github action bot to build with cfi
Also fix all the known issues which require the change from C style cast to
static_cast inside the i18n and common directory while we are sure about
the object. and use
C++ style dynamic_cast for base-to-derive cast in other code inside i18n
and common and in test code or tool.
Change to use const_cast for casting between const / non-const
2023-02-06 15:47:14 -08: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
Jeff Genovy
8f787b6de9
ICU-21388 Remove test case that does nothing so that we can mark RuleBasedCollator as final.
2020-12-04 15:47:40 -08:00
Markus Scherer
d3315d98ef
ICU-20783 use C++ covariant return types
2019-08-23 11:45:36 -07: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
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
f34de568c4
ICU-12012 Replace irregular sizeof expressions with UPRV_LENGTHOF().
...
R=markus.icu@gmail.com
Review URL: https://codereview.appspot.com/286430043 .
X-SVN-Rev: 38378
2016-02-26 11:21:55 +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
9edbbecb24
ICU-11339 add & use LocalPointer(p, errorCode) and adoptInsteadAndCheckErrorCode(p, errorCode)
...
X-SVN-Rev: 36757
2014-11-20 00:27:17 +00:00
Andy Heninger
f626431e29
ICU-11233 Remove U_FINAL for classes we subclass. Produces bad code.
...
X-SVN-Rev: 36346
2014-09-04 18:58:17 +00:00
Steven R. Loomis
e3dc3bc456
ICU-10347 add U_FINAL and U_OVERRIDE for C++11 "final" and "override".
...
Added them to several "not for subclassing" classes.
Some exceptions:
* Commented out U_FINAL where there's an internal override needed.
* For tests, added "#define U_FINAL" at the top to disable this.
#defined to null for Doxygen.
X-SVN-Rev: 36177
2014-08-16 01:30:43 +00:00
Markus Scherer
78b241a52b
ICU-9959 test that RBC forbids rules with a before-reset followed by a stronger relation
...
X-SVN-Rev: 35263
2014-02-28 20:15:58 +00:00
Markus Scherer
a2a0fa000d
ICU-8070 Check that the rule parser handles a comment without terminating end-of-line
...
X-SVN-Rev: 35257
2014-02-27 22:52:07 +00:00
Markus Scherer
50a883201d
ICU-9101 fix test memory leak
...
X-SVN-Rev: 35229
2014-02-25 23:20:31 +00:00
Markus Scherer
e977c057a9
ICU-9101 merge branches/markus/collv2@35225 into the trunk
...
X-SVN-Rev: 35227
2014-02-25 21:21:49 +00:00
Yoshito Umaoka
0f29677f6a
ICU-8624 Fixed a collation key compression problem. A tertiary key value was incorrect with a long string when case first option is set.
...
X-SVN-Rev: 30220
2011-06-20 17:18:46 +00:00
Peter Edberg
0cc2fd091f
ICU-8046 CLDR 1.9 integration pass 1, update tests
...
X-SVN-Rev: 28867
2010-10-19 03:31:50 +00:00
Steven R. Loomis
a1ea70071b
ICU-7708 compiler warnings for 4.5.1 (batch 1)
...
X-SVN-Rev: 28103
2010-05-25 22:17:12 +00:00
Michael Ow
e698d415eb
ICU-7189 Remove accidental character.
...
X-SVN-Rev: 26795
2009-10-20 16:51:02 +00:00
Michael Ow
774ac9c733
ICU-7189 Add missing header file and fix tabs.
...
X-SVN-Rev: 26794
2009-10-20 16:48:17 +00:00
Yoshito Umaoka
155dfc0605
ICU-7189 Fixed missing collation case bytes problem in ucol_nextSortKeyPart.
...
X-SVN-Rev: 26787
2009-10-14 21:45:30 +00:00
Michael Ow
6b1f9ef27c
ICU-6905 Make intltest pass without any data.
...
X-SVN-Rev: 26096
2009-06-12 19:34:21 +00:00
Michael Ow
b88911b137
ICU-6412 Fix some copyright date.
...
X-SVN-Rev: 24665
2008-09-26 21:25:04 +00:00
George Rhoten
a74869abf6
ICU-5955 Fix a few crashes under error conditions.
...
X-SVN-Rev: 23277
2008-01-21 17:35:02 +00:00
George Rhoten
4b8ef3e6e6
ICU-4288 Mostly fixes for --enable-strict for gcc 3.4 (Fedora Core 3)
...
X-SVN-Rev: 17040
2004-12-30 07:25:51 +00:00
Vladimir Weinstein
4df42a86bb
ICU-2840 tests shouldn't crash if there is no data
...
X-SVN-Rev: 12340
2003-06-06 04:54:34 +00:00
Alan Liu
de95737116
ICU-2959 update copyright dates to include 2003
...
X-SVN-Rev: 12253
2003-06-03 20:58:22 +00:00
GCL Shanghai
2de3bade18
ICU-2222 fix breaking changes
...
X-SVN-Rev: 11357
2003-03-19 13:21:51 +00:00
GCL Shanghai
513a23fdae
ICU-2222 Deprecate C++ enums that duplicate C enums
...
X-SVN-Rev: 11137
2003-02-21 08:32:22 +00:00
Markus Scherer
0eb9c506ec
ICU-2248 modularize ICU
...
X-SVN-Rev: 9910
2002-09-21 00:43:14 +00:00
George Rhoten
56cbadb751
ICU-2085 Don't use deprecated code anymore
...
X-SVN-Rev: 9755
2002-08-21 19:09:33 +00:00
George Rhoten
d3c17fa8bc
ICU-2131 Stop using the LocaleProxy deprecated code hack
...
X-SVN-Rev: 9746
2002-08-21 00:16:30 +00:00
George Rhoten
7777030a4f
ICU-1828 Remove tabs
...
X-SVN-Rev: 8331
2002-04-02 02:55:31 +00:00
George Rhoten
7bc5d45c83
ICU-1811 Increase the code coverage of Locale:get methods
...
X-SVN-Rev: 8255
2002-03-26 23:18:57 +00:00
Vladimir Weinstein
9268bcb6a4
ICU-1003 removing incremental compare from intltest
...
X-SVN-Rev: 5020
2001-06-19 21:16:48 +00:00
Vladimir Weinstein
5dac29c154
ICU-96 more tests and test fixes
...
X-SVN-Rev: 4475
2001-04-13 00:05:42 +00:00
George Rhoten
a8e20b45dc
ICU-900 Fixed some compiler warnings.
...
X-SVN-Rev: 4401
2001-03-29 20:47:43 +00:00
George Rhoten
bc61d8da9e
ICU-900 Fixed some compiler warnings.
...
X-SVN-Rev: 4346
2001-03-27 02:52:12 +00:00
George Rhoten
0b1da35b77
ICU-900 Fixed some compiler warnings.
...
X-SVN-Rev: 4335
2001-03-26 23:27:49 +00:00
Vladimir Weinstein
418ed2d3bc
ICU-96 removed Test4095316 which expects part of Greek collation to be in contradiction with the UCA
...
X-SVN-Rev: 4325
2001-03-24 00:27:29 +00:00
Syn Wee Quek
6f1fa85d5b
ICU-807
...
Replaced tests that uses the default collators with en_US collators.
X-SVN-Rev: 4244
2001-03-21 22:13:30 +00:00