scuffed-code/icu4c/source/common
Markus Scherer fe3eb3ed5c
ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48)
* ICU-13530 copy C/C++ files UTrie2 -> UTrie3

X-SVN-Rev: 40754

* ICU-13530 UTrie3 new files copied from UTrie2: rename types/functions/macros

X-SVN-Rev: 40755

* ICU-13530 debug-print building each UTrie2

X-SVN-Rev: 40756

* ICU-13530 remove two-byte-UTF-8 errorValue block; move highValue from end of data array into header; add errorValue to header

X-SVN-Rev: 40762

* ICU-13530 UTrie3 U16_NEXT/PREV: errorValue for unpaired surrogates

X-SVN-Rev: 40763

* ICU-13530 no more separate values for lead surrogate code units

X-SVN-Rev: 40764

* ICU-13530 change from 11:5 trie bits to 10:6 for simpler UTF-8 code

X-SVN-Rev: 40766

* ICU-13530 UTrie2 build UTrie3 as well, print sizes

X-SVN-Rev: 40767

* ICU-13530 debug-print countSame, sumOverlaps, countInitial

X-SVN-Rev: 40768

* ICU-13530 debug-print whether trie is for CanonIterData

X-SVN-Rev: 40769

* ICU-13530 no index-shift for BMP data, no separate index-2 for 2-byte UTF-8; builder changes incomplete

X-SVN-Rev: 40777

* ICU-13530 remove errorValue and highStart from UNewTrie3

X-SVN-Rev: 40778

* ICU-13530 rewrite UTrie3 builder code

X-SVN-Rev: 40783

* ICU-13530 UTrie3 bug fixes

X-SVN-Rev: 40788

* ICU-13530 fully re-inline _UTRIE3_U8_NEXT()

X-SVN-Rev: 40790

* ICU-13530 find most common all-same data block for dataNullBlock and initialValue

X-SVN-Rev: 40792

* ICU-13530 UTrie3 iterator functions take start and return the end of a range, rather than callback call for each range

X-SVN-Rev: 40800

* ICU-13530 mask off unused data value bits before building a UTrie3 with values less than 32 bits wide

X-SVN-Rev: 40803

* ICU-13530 split utrie3builder.h out of utrie3.h

X-SVN-Rev: 40804

* ICU-13530 separate types UTrie3 vs. UTrie3Builder, implement builder as wrapper over C++ class Trie3Builder in .cpp

X-SVN-Rev: 40809

* ICU-13530 function to make a UTrie3Builder from a UTrie3

X-SVN-Rev: 40810

* ICU-13530 debug-print some data; some cleanup

X-SVN-Rev: 40865

* ICU-13530 BMP 10:6 but supplementary 10:6:4

X-SVN-Rev: 40984

* ICU-13530 move errorValue & highValue to the end of the data table, minimal padding to 4 bytes

X-SVN-Rev: 41011

* ICU-13530 index-1 table gap of index-2 null blocks

X-SVN-Rev: 41018

* ICU-13530 test with more than 128k compacted data

X-SVN-Rev: 41034

* ICU-13530 supplementary bits 11:5:4 saves a little space

X-SVN-Rev: 41039

* ICU-13530 supplementary bits 6:5:5:4 instead of gap: about same size but simpler

X-SVN-Rev: 41050

* ICU-13530 remove unnecessary utrie3_clone(built trie)

X-SVN-Rev: 41058

* ICU-13530 remove unnecessary UTrie3StringIterator

X-SVN-Rev: 41059

* ICU-13530 back to UTRIE3_GET...() macros *returning* data values

X-SVN-Rev: 41060

* ICU-13530 fast vs. small

X-SVN-Rev: 41066

* ICU-13530 always load NFC data, add simple normalization performance test

X-SVN-Rev: 41110

* ICU-13530 change normalization main trie to UTrie3 with special values for lead surrogates; forbid non-inert surrogate code *points* because unable to store values different from code *units*; runtime code work around that for code point lookup and iteration; adjust UTS 46 for normalization no longer mapping unpaired surrogates to U+FFFD

X-SVN-Rev: 41122

* ICU-13530 simplenormperf bug fix and NFC base line

X-SVN-Rev: 41126

* ICU-13530 move normalization getRange skipping lead surrogates to API getRangeSkipLead()

X-SVN-Rev: 41182

* ICU-13530 switch CanonIterData and gennorm2 Norms to UTrie3

X-SVN-Rev: 41183

* ICU-13530 remove unused overwrite parameter from setRange()

X-SVN-Rev: 41184

* ICU-13530 getRange skip lead -> fixed surrogates

X-SVN-Rev: 41219

* ICU-13530 minor cleanup

X-SVN-Rev: 41221

* ICU-13530 UTS 46 code map unpaired surrogates to U+FFFD before normalization

X-SVN-Rev: 41224

* ICU-13530 minor internal-docs cleanup

X-SVN-Rev: 41225

* ICU-13530 rename UTrie3 to UCPTrie, and other name changes

X-SVN-Rev: 41226

* ICU-13530 add 8-bit data option; add type-any & valueBits-any for fromBinary(); macros consistently source type then data width

X-SVN-Rev: 41234

* ICU-13530 scrub the API docs for the proposal

X-SVN-Rev: 41319

* ICU-13530 tag internal definitions as such, or move them to an internal header

X-SVN-Rev: 41320

* ICU-13530 Java API skeleton

X-SVN-Rev: 41326

* ICU-13530 API feedback: ValueWidth, MutableCodePointTrie, base CodePointMap, ...

X-SVN-Rev: 41382

* ICU-13530 add UCPTrie valueWidth field and padding, and combine data pointers into a union

X-SVN-Rev: 41408

* ICU-13530 switch some macros to using dataAccess parameter: separate index vs. data lookups, no macro variant for each value width

X-SVN-Rev: 41409

* ICU-13530 StringIterator is no longer a java.util.Iterator (bad fit)

X-SVN-Rev: 41455

* ICU-13530 CodePointTrie.java code complete

X-SVN-Rev: 41518

* ICU-13530 finish Java port incl test; keep C++ parallel

* ICU-13530 adjust API for feedback: rename HandleValue to FilterValue, change getRange+getRangeFixedSurr(bool allSurr) to enum RangeOption+getRange(enum option); change remaining C macros to use dataAccess for 16/32/8-bit value widths; fix/clarify some API docs

* ICU-13530 add javadoc

* ICU-13530 document UCPTrie binary data format

* ICU-13530 update .nrm formatVersion 3->4, document change in surrogate handling with new trie

* ICU-13530 re-hardcode NFC data

* move trie swapper code into new file; add new files to Windows project files; turn off trie debugging

* ICU-13530 minor cleanup

* ICU-13530 test more range starts; fix a C test leak

* ICU-13530 regenerate Java data from scratch

* ICU-13530 review feedback changes: API docs typos, more @internal, C++11 field initializers, fix potential leak in MutableCodePointTrie::fromUCPTrie()

* ICU-13530 rename interface FilterValue to ValueFilter
2018-09-27 14:27:38 -07:00
..
unicode ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
appendable.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
bmpset.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
bmpset.h ICU-13311 change illegal-UTF-8 handling in non-converter code 2017-09-21 23:45:08 +00:00
brkeng.cpp ICU-10688 Break Iterator type logic removal, a few minor cleanups. 2017-12-05 00:07:30 +00:00
brkeng.h ICU-10688 branch, work in progress. 2017-12-03 00:36:54 +00:00
brkiter.cpp ICU-10688 branch, work in progress. 2017-12-03 00:36:54 +00:00
bytesinkutil.cpp ICU-12647 make string case mapping functions faster 2018-02-15 06:43:56 +00:00
bytesinkutil.h ICU-12647 make string case mapping functions faster 2018-02-15 06:43:56 +00:00
bytestream.cpp ICU-13203 CaseMap UTF-8 add StringPiece->ByteSink overloads; change implementation to that and change array->array versions into wrappers 2017-09-18 21:45:11 +00:00
bytestrie.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
bytestriebuilder.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
bytestrieiterator.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
caniter.cpp ICU-13275 Merge warning cleanup fixes into trunk 2017-07-22 01:11:59 +00:00
chariter.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
charstr.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
charstr.h ICU-13585 Adding std::move operators to CharString and MaybeStackArray. 2018-02-13 02:28:00 +00:00
cmemory.cpp ICU-13395 Remove uprv_checkValidMemory(). Was incompatible with memory and thread sanitizers. 2017-11-30 21:58:56 +00:00
cmemory.h ICU-13585 Adding std::move operators to CharString and MaybeStackArray. 2018-02-13 02:28:00 +00:00
common_uwp.vcxproj ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
common.rc ICU-12564 Update copyright notice in trunk 2016-06-15 18:58:17 +00:00
common.vcxproj ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
common.vcxproj.filters ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
cpputils.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
cstr.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
cstr.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
cstring.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
cstring.h ICU-13395 Remove uprv_checkValidMemory(). Was incompatible with memory and thread sanitizers. 2017-11-30 21:58:56 +00:00
cwchar.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
cwchar.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
dictbe.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
dictbe.h ICU-10688 Break Iterator type logic removal, a few minor cleanups. 2017-12-05 00:07:30 +00:00
dictionarydata.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
dictionarydata.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
dtintrv.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
edits.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
errorcode.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
filteredbrk.cpp ICU-13624 Public header build failures 2018-03-06 18:40:12 +00:00
filterednormalizer2.cpp ICU-13337 public string option for not resetting an Edits object: U_EDITS_NO_RESET 2017-09-13 16:15:28 +00:00
hash.h ICU-12380 Size reductions for transliterator registry (and some speedup) 2017-09-20 00:39:40 +00:00
icudataver.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
icuplug.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
icuplugimp.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
listformatter.cpp ICU-13029 Mark unmodified static data as const 2017-04-19 18:55:46 +00:00
loadednormalizer2impl.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
localsvc.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
locavailable.cpp ICU-13288 changes for jumbo compilation. 2017-08-11 21:38:54 +00:00
locbased.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
locbased.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
locdispnames.cpp ICU-13394 nul-terminated buffer handling fixed from Chromium. 2017-10-11 22:22:45 +00:00
locdspnm.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
locid.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
loclikely.cpp ICU-13094 Handle empty language subtag in parseTagString(). 2017-04-26 20:12:01 +00:00
locmap.cpp ICU-13554 Out of bounds array access in locale getPosixID. 2018-05-18 20:01:03 +00:00
locmap.h ICU-13027 - Merge in changes from 'branches/shawnste/working/icu4c' 2017-03-21 01:03:49 +00:00
locresdata.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
locutil.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
locutil.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
Makefile.in ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
messageimpl.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
messagepattern.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
msvcres.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
mutex.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
norm2_nfc_data.h ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
norm2allmodes.h ICU-13093 porting fixes (AIX) 2017-09-13 23:07:30 +00:00
normalizer2.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
normalizer2impl.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
normalizer2impl.h ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
normlzr.cpp ICU-13027 - Merge in changes from 'branches/shawnste/working/icu4c' 2017-03-21 01:03:49 +00:00
parsepos.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
patternprops.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
patternprops.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
pluralmap.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
pluralmap.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
propname_data.h ICU-13630 Unicode 11 update from near-final data 20180521 2018-05-22 01:56:20 +00:00
propname.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
propname.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
propsvec.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
propsvec.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
punycode.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
punycode.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
putil.cpp ICU-13634 Removing stray #include added in r41136. 2018-04-05 21:55:29 +00:00
putilimp.h ICU-12505 U_HAVE_STD_ATOMICS, reduce & simplify configure options. (#52) 2018-09-27 14:27:38 -07:00
rbbi_cache.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
rbbi_cache.h ICU-13541 Improve RuleBasedBreakIterator construction time, patch from grhoten. 2018-01-19 22:30:56 +00:00
rbbi.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
rbbicst.pl ICU-12761 Adds Unicode copyright notice. 2016-09-28 22:12:27 +00:00
rbbidata.cpp ICU-13194 RBBI auto reverse tables: size reduction, and remove hand written rules. 2018-03-28 01:20:13 +00:00
rbbidata.h ICU-13194 RBBI, bump data version number. New reverse tables are not compatible. 2018-03-28 22:07:24 +00:00
rbbinode.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
rbbinode.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
rbbirb.cpp ICU-7270 Line Break rule LB8 updated for UAX-14 conformance. (#41) 2018-09-27 14:27:38 -07:00
rbbirb.h ICU-13194 RBBI safe tables, remove unnecessary Java/C++ differences. 2018-04-03 23:41:28 +00:00
rbbirpt.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
rbbirpt.txt ICU-12761 Adds Unicode copyright notice. 2016-09-28 22:12:27 +00:00
rbbiscan.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
rbbiscan.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
rbbisetb.cpp ICU-13194 RBBI safe tables, improve code consistency between C++ and Java. 2018-04-06 00:19:32 +00:00
rbbisetb.h ICU-13194 RBBI safe tables, improve code consistency between C++ and Java. 2018-04-06 00:19:32 +00:00
rbbistbl.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
rbbitblb.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
rbbitblb.h ICU-7270 Line Break rule LB8 updated for UAX-14 conformance. (#41) 2018-09-27 14:27:38 -07:00
resbund_cnv.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
resbund.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
resource.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
resource.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ruleiter.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ruleiter.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
schriter.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
serv.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
serv.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
servlk.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
servlkf.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
servloc.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
servls.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
servnotf.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
servnotf.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
servrbf.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
servslkf.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
sharedobject.cpp ICU-13399 Fix thread race in the Unified Cache. 2018-02-27 19:27:42 +00:00
sharedobject.h ICU-13399 Fix thread race in the Unified Cache. 2018-02-27 19:27:42 +00:00
simpleformatter.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
sprpimpl.h ICU-12911 remove UBiDiProps except inside its .cpp file, and uprv_haveProperties() 2018-02-15 19:01:29 +00:00
static_unicode_sets.cpp ICU-13697 Renaming numparse_unisets.h to static_unicode_sets.h and refactoring to guarantee safety in no-data builds. 2018-05-16 22:46:40 +00:00
static_unicode_sets.h ICU-13697 Renaming numparse_unisets.h to static_unicode_sets.h and refactoring to guarantee safety in no-data builds. 2018-05-16 22:46:40 +00:00
stringpiece.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
stringtriebuilder.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
uarrsort.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uarrsort.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uassert.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ubidi_props_data.h ICU-13630 Unicode 11 update from near-final data 20180521 2018-05-22 01:56:20 +00:00
ubidi_props.cpp ICU-12911 remove UBiDiProps except inside its .cpp file, and uprv_haveProperties() 2018-02-15 19:01:29 +00:00
ubidi_props.h ICU-12911 remove UBiDiProps except inside its .cpp file, and uprv_haveProperties() 2018-02-15 19:01:29 +00:00
ubidi.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ubidiimp.h ICU-12911 remove UBiDiProps except inside its .cpp file, and uprv_haveProperties() 2018-02-15 19:01:29 +00:00
ubidiln.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ubiditransform.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ubidiwrt.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ubrk.cpp ICU-12914 change rulesLength/Capacity back to int32_t; handle INT32_MAX overflow 2017-02-01 20:27:47 +00:00
ubrkimpl.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucase_props_data.h ICU-13630 ucase.icu formatVersion 4: more compressible exceptions, and more room for future exceptions growth 2018-03-12 00:15:40 +00:00
ucase.cpp ICU-13851 case mapping data: when fetching delta make sure to read from start of exceptional values 2018-06-24 21:12:22 +00:00
ucase.h ICU-13630 ucase.icu formatVersion 4: more compressible exceptions, and more room for future exceptions growth 2018-03-12 00:15:40 +00:00
ucasemap_imp.h ICU-12911 remove UBiDiProps except inside its .cpp file, and uprv_haveProperties() 2018-02-15 19:01:29 +00:00
ucasemap_titlecase_brkiter.cpp ICU-13203 CaseMap UTF-8 add StringPiece->ByteSink overloads; change implementation to that and change array->array versions into wrappers 2017-09-18 21:45:11 +00:00
ucasemap.cpp ICU-12647 make string case mapping functions faster 2018-02-15 06:43:56 +00:00
ucat.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
uchar_props_data.h ICU-13630 Unicode 11 update from near-final data 20180521 2018-05-22 01:56:20 +00:00
uchar.cpp ICU-12911 remove UBiDiProps except inside its .cpp file, and uprv_haveProperties() 2018-02-15 19:01:29 +00:00
ucharstrie.cpp ICU-12992 move Char16Ptr to new char16ptr.h; change non-UnicodeString C++ functions from raw pointers to Char16Ptr where possible 2017-03-01 05:52:24 +00:00
ucharstriebuilder.cpp ICU-13298 Fix signed int overflow in StringTrieBuilder hash functions. 2017-08-04 17:44:00 +00:00
ucharstrieiterator.cpp ICU-12992 move Char16Ptr to new char16ptr.h; change non-UnicodeString C++ functions from raw pointers to Char16Ptr where possible 2017-03-01 05:52:24 +00:00
uchriter.cpp ICU-12992 move Char16Ptr to new char16ptr.h; change non-UnicodeString C++ functions from raw pointers to Char16Ptr where possible 2017-03-01 05:52:24 +00:00
ucln_cmn.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ucln_cmn.h ICU-13697 Adding data-loading logic for parseLenients sets in CLDR. Ties the sets in with number and currency parsing in ICU4C and ICU4J. 2018-04-12 10:59:37 +00:00
ucln_imp.h ICU-13027 - Merge in changes from 'branches/shawnste/working/icu4c' 2017-03-21 01:03:49 +00:00
ucln.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ucmndata.cpp ICU-13503 declare variable-length array at end of struct with length 1 to disable bounds checkers 2017-12-14 21:25:46 +00:00
ucmndata.h ICU-13503 declare variable-length array at end of struct with length 1 to disable bounds checkers 2017-12-14 21:25:46 +00:00
ucnv2022.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ucnv_bld.cpp ICU-13676 Enabling cleanup of default converter whenever the default converter is put back into the global singleton cache. 2018-05-03 06:50:50 +00:00
ucnv_bld.h ICU-13676 Enabling cleanup of default converter whenever the default converter is put back into the global singleton cache. 2018-05-03 06:50:50 +00:00
ucnv_cb.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucnv_cnv.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucnv_cnv.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucnv_ct.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ucnv_err.cpp ICU-12911 remove UBiDiProps except inside its .cpp file, and uprv_haveProperties() 2018-02-15 19:01:29 +00:00
ucnv_ext.cpp ICU-12410 class Edits, class CaseMap with new low-level functions that work with Edits, simpler case properties code, some cleanup 2017-02-17 21:03:35 +00:00
ucnv_ext.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ucnv_imp.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucnv_io.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucnv_io.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucnv_lmb.cpp ICU-13275 Merge warning cleanup fixes into trunk 2017-07-22 01:11:59 +00:00
ucnv_set.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ucnv_u7.cpp ICU-12766 z: library and tools build 2017-02-11 02:43:09 +00:00
ucnv_u8.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ucnv_u16.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ucnv_u32.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ucnv.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucnvbocu.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ucnvdisp.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ucnvhz.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ucnvisci.cpp ICU-12766 z: library and tools build 2017-02-11 02:43:09 +00:00
ucnvlat1.cpp ICU-13560 make some toUnicode converter check toULength not toUnicodeStatus for continuing after partial sequences; ucnv.cpp framework code only resets toULength after an error 2018-01-23 21:32:36 +00:00
ucnvmbcs.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ucnvmbcs.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ucnvscsu.cpp ICU-12766 z: library and tools build 2017-02-11 02:43:09 +00:00
ucnvsel.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
ucol_data.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ucol_swp.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
ucol_swp.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ucptrie_impl.h ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
ucptrie.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
ucurr.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ucurrimp.h ICU-13574 Adding currency names matcher to ICU4C. 2018-02-10 02:59:49 +00:00
udata.cpp ICU-13686 ICU4C: Prevent double file separators on data file paths. (#42) 2018-09-27 14:27:38 -07:00
udatamem.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
udatamem.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
udataswp.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
udataswp.h ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
uelement.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uenum.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uenumimp.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uhash_us.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
uhash.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
uhash.h ICU-12380 Size reductions for transliterator registry (and some speedup) 2017-09-20 00:39:40 +00:00
uidna.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uinit.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uinvchar.cpp ICU-13275 Merge warning cleanup fixes into trunk 2017-07-22 01:11:59 +00:00
uinvchar.h ICU-12992 add OldUChar type to match ICU 58 UChar; add public conversion functions from char16_t * to UChar * and OldUChar * with aliasing barrier 2017-03-08 22:08:12 +00:00
uiter.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ulist.cpp ICU-13275 Merge warning cleanup fixes into trunk 2017-07-22 01:11:59 +00:00
ulist.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ulistformatter.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
uloc_keytype.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
uloc_tag.cpp ICU-13275 Merge warning cleanup fixes into trunk 2017-07-22 01:11:59 +00:00
uloc.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ulocimp.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
umapfile.cpp ICU-13275 Merge warning cleanup fixes into trunk 2017-07-22 01:11:59 +00:00
umapfile.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
umath.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
umutablecptrie.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
umutex.cpp ICU-13275 Merge warning cleanup fixes into trunk 2017-07-22 01:11:59 +00:00
umutex.h ICU-13027 - Merge in changes from 'branches/shawnste/working/icu4c' 2017-03-21 01:03:49 +00:00
unames.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
unifiedcache.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
unifiedcache.h ICU-13399 Fix thread race in the Unified Cache. 2018-02-27 19:27:42 +00:00
unifilt.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
unifunct.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
uniset_closure.cpp ICU-13547 limit nesting depth of UnicodeSet pattern 2018-02-23 21:39:23 +00:00
uniset_props.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
uniset.cpp ICU-20035 UnicodeSet constructor(s) and assignment operator should setToBogus when out-of-memory (OOM) failure occurs. (#15) 2018-09-27 14:27:37 -07:00
unisetspan.cpp ICU-13311 change illegal-UTF-8 handling in non-converter code 2017-09-21 23:45:08 +00:00
unisetspan.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
unistr_case_locale.cpp ICU-12410 class Edits, class CaseMap with new low-level functions that work with Edits, simpler case properties code, some cleanup 2017-02-17 21:03:35 +00:00
unistr_case.cpp ICU-13234 rename UCASEMAP_OMIT_UNCHANGED_TEXT to U_OMIT_UNCHANGED_TEXT 2017-06-08 19:36:34 +00:00
unistr_cnv.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
unistr_props.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
unistr_titlecase_brkiter.cpp ICU-9198 add titlecasing options: wholeString, sentences, adjustToCased 2017-06-09 23:04:03 +00:00
unistr.cpp ICU-13104 remove U_HAVE_RVALUE_REFERENCES definition & conditions. 2017-04-26 20:23:44 +00:00
unistrappender.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
unorm.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
unormcmp.cpp ICU-12410 class Edits, class CaseMap with new low-level functions that work with Edits, simpler case properties code, some cleanup 2017-02-17 21:03:35 +00:00
unormimp.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uobject.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uposixdefs.h ICU-13016 solaris porting 2017-03-09 02:12:45 +00:00
uprops.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
uprops.h ICU-13630 implement, test, use emoji property Extended_Pictographic 2018-03-12 05:53:02 +00:00
ures_cnv.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uresbund.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
uresdata.cpp ICU-12969 protect against using negative ID for resource 2017-02-09 19:33:51 +00:00
uresdata.h ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
uresimp.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ureslocs.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
usc_impl.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
usc_impl.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
uscript_props.cpp ICU-13630 script metadata: Mongolian -> exclusion 2018-05-25 18:18:15 +00:00
uscript.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
uset_imp.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uset_props.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
uset.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
usetiter.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ushape.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
usprep.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ustack.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ustr_cnv.cpp ICU-13676 Enabling cleanup of default converter whenever the default converter is put back into the global singleton cache. 2018-05-03 06:50:50 +00:00
ustr_cnv.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
ustr_imp.h ICU-13311 change illegal-UTF-8 handling in converter code 2017-09-23 06:34:53 +00:00
ustr_titlecase_brkiter.cpp ICU-13093 porting fixes (AIX) 2017-09-13 23:07:30 +00:00
ustr_wcs.cpp ICU-13461 remove register keyword from C++ code 2017-12-18 23:17:26 +00:00
ustrcase_locale.cpp ICU-12992 revert new C++ API (CaseMap) to raw pointers 2017-03-08 21:07:27 +00:00
ustrcase.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
ustrenum.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ustrenum.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ustrfmt.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ustrfmt.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
ustring.cpp ICU-12410 class Edits, class CaseMap with new low-level functions that work with Edits, simpler case properties code, some cleanup 2017-02-17 21:03:35 +00:00
ustrtrns.cpp ICU-13311 change illegal-UTF-8 handling in non-converter code 2017-09-21 23:45:08 +00:00
utext.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
utf_impl.cpp ICU-13569 refresh dev branch from trunk. 2018-02-14 23:55:39 +00:00
util_props.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
util.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
util.h ICU-13437 Adding makeBogusString() utility function and returning bogus strings on failed FormattedNumber toString() calls. 2018-05-08 21:52:26 +00:00
utrace.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
utracimp.h ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
utrie2_builder.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
utrie2_impl.h ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
utrie2.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
utrie2.h ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
utrie_swap.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
utrie.cpp ICU-12764 UTF-8 source files, update file encoding comments. 2017-02-03 18:57:23 +00:00
utrie.h ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
uts46.cpp ICU-13530 add UCPTrie/CodePointTrie, switch normalization to use it (#48) 2018-09-27 14:27:38 -07:00
utypeinfo.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
utypes.cpp ICU-13597 Fixing safety of toUnicodeString() readonly aliases by moving that behavior to a new method, toTempUnicodeString(). 2018-03-28 03:42:12 +00:00
uvector.cpp ICU-13194 rbbi work, revert unneeded changes to UVector. 2018-04-01 20:44:40 +00:00
uvector.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
uvectr32.cpp ICU-13194 rbbi work, revert unneeded changes to UVector. 2018-04-01 20:44:40 +00:00
uvectr32.h ICU-13194 rbbi work, revert unneeded changes to UVector. 2018-04-01 20:44:40 +00:00
uvectr64.cpp ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
uvectr64.h ICU-12764 icu4c utf-8 source files, update Copyright notices. 2017-01-20 00:20:31 +00:00
wintz.cpp ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup (#53) 2018-09-27 14:27:38 -07:00
wintz.h ICU-12786 dont call Win32 tz functions on cygwin (patch) 2017-04-07 18:26:45 +00:00