Markus Scherer
38b6d7fe5a
ICU-22954 Revert PR #3295 make all LocalXyzPointer header-only
...
This reverts commit 5bdb4c44af
.
Making LocalPointer header-only, with a different namespace when compiling internally,
turned out to be problematic.
2024-12-23 11:17:14 -08:00
Markus Scherer
70409090de
ICU-22954 make all LocalXyzPointer header-only
2024-12-19 17:40:33 -08:00
Fredrik Roubert
424d6a3e8b
ICU-22901 Update ulocimp_getSubtags() &co. to use std::string_view.
2024-11-22 19:05:03 +01:00
Fredrik Roubert
1dccc10085
ICU-22901 Move calls to uloc_getDefault() out of ulocimp_getSubtags().
2024-11-22 19:05:03 +01:00
LamTrinh.Dev
f6b274a197
ICU-22721 Enhance #if for locdispnames.cpp
...
Enhance #if for locdispnames.cpp
ICU-22721 Enhance #if for locdispnames.cpp, remove auto-generate file in local git.
ICU-22721 Enhance #if for locdispnames.cpp.
ICU-22721 Enhance #if for locdispnames.cpp, revert old-xmls.tar.bz2 file from main branch.
ICU-22721 Enhance #if for locdispnames.cpp
Enhance #if for locdispnames.cpp
ICU-22721 Enhance #if for locdispnames.cpp, remove auto-generate file in local git.
ICU-22721 Enhance #if for locdispnames.cpp.
ICU-22721 Enhance #if for locdispnames.cpp, revert old-xmls.tar.bz2 file from main branch.
2024-09-10 14:32:14 -07:00
Fredrik Roubert
dd65ee3f0b
ICU-22696 Update ulocimp_getKeywordValue() to use std::string_view.
2024-07-31 15:39:15 +02: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
929cd9bb4f
ICU-22520 Standardize return on error for all locale functions.
...
· No function should do anything if an error has already occurred.
· On error, a value of 0, nullptr, {}, etc., should be returned.
· Values shouldn't have overloaded meanings (eg. index or found).
· Values that are never used should not be returned at all.
2024-02-29 20:42:03 +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
d28e12b1f2
ICU-22520 Replace char arrays with icu::CharString.
2024-02-06 19:53:53 +01: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
Peter Edberg
0da0fabfae
ICU-20870 If locale/lang name lookup fails, canonicalize lang and try again
2021-09-13 09:50:33 -07:00
Erik Torres Aguilar
bd3b202741
ICU-21018 Fix typos across repo that start with letter A
...
See #1506
2021-01-06 15:15:35 -08:00
Fredrik Roubert
936f53a1f1
ICU-21035 Update locale implementation to use ulocimp_getKeywordValue().
2020-09-03 19:02:47 +02:00
Frank Tang
cde54fc5ba
ICU-21157 Fix incorrect null termination.
...
See #1236
2020-08-20 16:22:34 -07:00
Frank Tang
0d4b1c1cb9
ICU-21160 Fix the length return by preflight
...
See #1178
2020-07-21 18:05:20 -07:00
Frank Tang
982c4799bf
ICU-21161 Mark uloc_getDisplayScriptInContext static
...
Remove from urename.h
2020-06-17 23:26:33 -07:00
Fredrik Roubert
c3abe48e1c
ICU-20447 fix uloc_getName(x) same as Locale(x).getName() etc. for ""/"und"/"root"
2019-02-23 16:21:57 +01:00
Fredrik Roubert
09bf9f2845
ICU-20273 Resolve inconsistent behavior of "root", "und", "" in locales
2019-02-21 20:18:35 +01:00
Fredrik Roubert
91d38d14e8
ICU-20169 Use smart pointers in all locale code instead of u*_close().
...
Doing this consistently first will make it easier to then clean up
resource management and error handling later.
2018-10-31 17:51:53 +01: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
William Zhao
4bb34584ad
ICU-13275 Merge into some W3 warning fixes into trunk
...
X-SVN-Rev: 40446
2017-09-22 18:00:51 +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
Markus Scherer
7960164327
ICU-12663 UnicodeString support nearly 2G UChars & avoid integer overflows; string-to-string case mappings & detect integer overflows; make some calls to uprv_memcpy() and similar a little more robust by casting int32_t to size_t before multiplying
...
X-SVN-Rev: 39288
2016-09-20 01:10:36 +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
Markus Scherer
a9c247a3cb
ICU-12166 annotate intended switch case fallthroughs
...
X-SVN-Rev: 38447
2016-03-01 07:44:57 +00:00
Peter Edberg
bb7e154629
ICU-10260 Port J LocaleDisplayNamesImpl change for (->[ to C; make similar changes in uloc_getDisplayName
...
X-SVN-Rev: 34369
2013-09-18 08:33:47 +00:00
Peter Edberg
76d880b44f
ICU-10244 (C) Handle localeDisplayPattern/separator as pattern
...
X-SVN-Rev: 33889
2013-07-08 06:34:53 +00:00
Michael Ow
0ca13b73b0
ICU-9292 Merge BEAM warning fixes from branch into trunk
...
X-SVN-Rev: 31792
2012-05-03 05:50:26 +00:00
John Emmons
de229aa8da
ICU-8423 Use stand-alone script names if possible in uloc_getDisplayScript()
...
X-SVN-Rev: 30619
2011-09-02 21:58:42 +00:00
Michael Ow
310c23c24e
ICU-8578 Apply patch to fix some compiler warnings and related issues
...
X-SVN-Rev: 30205
2011-06-10 18:56:08 +00:00
Markus Scherer
3ed970f1a7
ICU-8262 remove uloc_getDisplayNameOld() which is unused and had /* TODO:dougfelt remove */
...
X-SVN-Rev: 30048
2011-05-06 19:59:10 +00:00
Doug Felt
45f8abf19f
ICU-8262 reorg code for uloc_getDisplayName, add regression test
...
X-SVN-Rev: 29760
2011-04-08 20:06:36 +00:00
Steven R. Loomis
78f9faec0a
ICU-7522 uconfigtest failures for 4.4
...
X-SVN-Rev: 27806
2010-03-09 23:11:48 +00:00
Doug Felt
809ac514dc
ICU-7500 fix uloc_getDisplayName incorrect length
...
X-SVN-Rev: 27774
2010-03-04 02:34:15 +00:00
Steven R. Loomis
1498352330
ICU-7482 z issues for 4.4
...
X-SVN-Rev: 27748
2010-03-02 22:00:40 +00:00
Markus Scherer
ea551a1d7f
ICU-7164 split locale API implementation into multiple files so that core locale ID .c/.cpp files (hopefully) do not depend on resource bundle code or data any more
...
X-SVN-Rev: 27685
2010-02-25 22:32:39 +00:00