Fredrik Roubert
3f5fd0df73
ICU-22901 Update ulocimp_canonicalize() &co. to use std::string_view.
2025-02-13 15:50:54 +01:00
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
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
2df1ab7240
ICU-21289 Switch to using CharString for calling uloc_canonicalize().
2023-09-26 00:52:13 +02:00
Fredrik Roubert
6d1999fbb9
ICU-21289 Switch to using CharString for calling uloc_getKeywordValue().
2023-09-25 19:02:41 +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
c8aa800735
ICU-21035 add & use CharString::extract(dest buffer)
...
See #1253
2020-08-21 16:29:25 -07:00
Jeff Genovy
822eb4e622
ICU-20979 Fixing minor MSVC warnings
2020-04-01 14:31:28 -07:00
Steven R. Loomis
2ced2624fc
ICU-20976 GCC 8 fixes phase 1
...
Some initial fixes for GCC 8
- setup a GCC 8 buildbot with -Wextra
- rewrite ucol_sit to use CharString
- workaround for gcc7+ on mac
see https://github.com/arbor-sim/arbor/issues/562#issuecomment-409970434
- fix ucnv_2022 strcpy site
2020-03-24 11:51:20 -07:00
Andy Heninger
1c794eb111
ICU-13394 nul-terminated buffer handling fixed from Chromium.
...
X-SVN-Rev: 40615
2017-10-11 22:22:45 +00:00
Andy Heninger
04448b004f
ICU-12764 UTF-8 source files, update file encoding comments.
...
X-SVN-Rev: 39641
2017-02-03 18:57:23 +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
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
e977c057a9
ICU-9101 merge branches/markus/collv2@35225 into the trunk
...
X-SVN-Rev: 35227
2014-02-25 21:21:49 +00:00
Markus Scherer
66325c9f16
ICU-9139 namespace bug fix
...
X-SVN-Rev: 31559
2012-03-01 21:55:23 +00:00
Steven R. Loomis
eec528c85f
ICU-8157 commit from branch
...
X-SVN-Rev: 31434
2012-02-18 23:10:51 +00:00
Jungshik Shin
8cc8801c03
ICU-8613 fix a trivial bug found by PSV (a static analysis tool)
...
X-SVN-Rev: 30188
2011-06-02 22:08:21 +00:00
Umesh Nair
c9ae826bca
ICU-7023 Supporting import in collation rules
...
X-SVN-Rev: 28967
2010-11-01 22:23:49 +00:00
Markus Scherer
5cb38459a6
ICU-7273 remove #include unormimp.h where not used any more
...
X-SVN-Rev: 27667
2010-02-25 00:21:02 +00:00
Michael Ow
b4853d0331
ICU-7222 Remove Windows x64 warnings by casting explicitly.
...
X-SVN-Rev: 26870
2009-11-11 15:47:22 +00:00
Claire Ho
9efbecd983
ICU-6799 Fixed warnings for collation.
...
X-SVN-Rev: 25871
2009-04-22 23:10:07 +00:00
Steven R. Loomis
714d7d9808
ICU-6804 Move @draft to @stable, regen api report
...
X-SVN-Rev: 25631
2009-03-19 06:45:04 +00:00
Eric Mader
5f73103b5a
ICU-6659 Merge changes from branches/eric/boyer-moore
...
X-SVN-Rev: 25282
2009-01-22 00:24:48 +00:00
George Rhoten
82b85fb45c
ICU-6118 Remove the @internal functions ucol_collatorToIdentifier, ucol_openFromIdentifier, ucol_identifierToShortString and ucol_shortStringToIdentifier (not used by original customer and their data is out of date).
...
Remove some references to unused internal header references.
Make some functions library private.
X-SVN-Rev: 23177
2008-01-05 01:27:56 +00:00
George Rhoten
760e4c2a65
ICU-5445 Fix some compiler warnings.
...
X-SVN-Rev: 20504
2006-10-06 18:08:06 +00:00
George Rhoten
361f663295
ICU-5190 Perform fewer mallocs and frees for easier safe cloning.
...
X-SVN-Rev: 19627
2006-05-21 01:27:15 +00:00
Vladimir Weinstein
5839d96cdc
ICU-4288 fix compiler warnings
...
X-SVN-Rev: 18263
2005-07-15 22:11:40 +00:00
George Rhoten
86296b2eae
ICU-4288 Fix some compiler warnings.
...
X-SVN-Rev: 18206
2005-07-12 03:02:06 +00:00
Vladimir Weinstein
878fd2f84d
ICU-4165 Some tweaks to the contraction finder, due to the Java port
...
X-SVN-Rev: 18008
2005-06-24 05:50:27 +00:00
Vladimir Weinstein
21775c8f6f
ICU-4588 prepareShortStringOpen function
...
X-SVN-Rev: 17963
2005-06-21 20:46:04 +00:00
Vladimir Weinstein
2e725da4c6
ICU-4165 API for finding contractions and expansions - C version
...
X-SVN-Rev: 17952
2005-06-20 22:58:50 +00:00
Vladimir Weinstein
162ffbb8f8
ICU-4118 fix ucol_normalizeShortDefinitionString crash when parse error is NULL
...
X-SVN-Rev: 16373
2004-09-30 20:39:02 +00:00
George Rhoten
137b9d4d0a
ICU-3718 Make some data read-only
...
X-SVN-Rev: 15893
2004-06-16 21:17:33 +00:00
Vladimir Weinstein
0a61ee4332
ICU-3100 changes according to the code review
...
X-SVN-Rev: 15870
2004-06-14 21:00:06 +00:00
Vladimir Weinstein
8c13042074
ICU-3100 fix a memory leak
...
X-SVN-Rev: 15857
2004-06-11 23:41:16 +00:00
Steven R. Loomis
617cee06dd
ICU-3831 uconfig.h fixes
...
X-SVN-Rev: 15841
2004-06-10 23:49:07 +00:00
Vladimir Weinstein
a2af700b96
ICU-3100 fix assertion failure on 400 due to usage of variant chars
...
X-SVN-Rev: 15810
2004-06-09 06:01:39 +00:00
Vladimir Weinstein
dd221c3945
ICU-3100 Fix some compiler warnings
...
X-SVN-Rev: 15684
2004-06-03 20:07:39 +00:00
Vladimir Weinstein
4c96e76b8f
ICU-3100 redo getContractions after a review. Add tests for getContractions and getUnsafeSet
...
X-SVN-Rev: 15683
2004-06-03 19:26:16 +00:00
Vladimir Weinstein
407e75f56c
ICU-3100 more bug fixes to contraction getting + compiler warning fixes
...
X-SVN-Rev: 15678
2004-06-02 22:19:52 +00:00
Vladimir Weinstein
aecdf82f4b
ICU-3100 reimplement getContractions and getUnsafe according to the comments from d02
...
X-SVN-Rev: 15673
2004-06-02 08:09:01 +00:00
Vladimir Weinstein
f9d36f208d
ICU-3100 collator <> identifier, bug fix
...
X-SVN-Rev: 15545
2004-05-25 23:00:52 +00:00
Vladimir Weinstein
d45f502825
ICU-3100 collator <> identifier, short string implementation
...
X-SVN-Rev: 15511
2004-05-24 22:11:31 +00:00