pango 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +33 -0
- data/Rakefile +65 -0
- data/ext/pango/depend +12 -0
- data/ext/pango/extconf.rb +90 -0
- data/ext/pango/pango.def +18 -0
- data/ext/pango/rbpango.c +318 -0
- data/ext/pango/rbpango.h +96 -0
- data/ext/pango/rbpangoanalysis.c +218 -0
- data/ext/pango/rbpangoattribute.c +499 -0
- data/ext/pango/rbpangoattriterator.c +141 -0
- data/ext/pango/rbpangoattrlist.c +101 -0
- data/ext/pango/rbpangocairo.c +122 -0
- data/ext/pango/rbpangocairocontext.c +131 -0
- data/ext/pango/rbpangocolor.c +120 -0
- data/ext/pango/rbpangocontext.c +309 -0
- data/ext/pango/rbpangoconversions.h +111 -0
- data/ext/pango/rbpangocoverage.c +106 -0
- data/ext/pango/rbpangoengine.c +73 -0
- data/ext/pango/rbpangofont.c +110 -0
- data/ext/pango/rbpangofontdescription.c +282 -0
- data/ext/pango/rbpangofontface.c +73 -0
- data/ext/pango/rbpangofontfamily.c +79 -0
- data/ext/pango/rbpangofontmap.c +102 -0
- data/ext/pango/rbpangofontmetrics.c +85 -0
- data/ext/pango/rbpangofontset.c +69 -0
- data/ext/pango/rbpangofontsetsimple.c +60 -0
- data/ext/pango/rbpangoglyphinfo.c +123 -0
- data/ext/pango/rbpangoglyphitem.c +125 -0
- data/ext/pango/rbpangoglyphstring.c +151 -0
- data/ext/pango/rbpangogravity.c +54 -0
- data/ext/pango/rbpangoitem.c +95 -0
- data/ext/pango/rbpangolanguage.c +86 -0
- data/ext/pango/rbpangolayout.c +572 -0
- data/ext/pango/rbpangolayoutiter.c +189 -0
- data/ext/pango/rbpangolayoutline.c +239 -0
- data/ext/pango/rbpangologattr.c +109 -0
- data/ext/pango/rbpangomatrix.c +143 -0
- data/ext/pango/rbpangoprivate.h +49 -0
- data/ext/pango/rbpangorectangle.c +170 -0
- data/ext/pango/rbpangorenderer.c +193 -0
- data/ext/pango/rbpangoscript.c +84 -0
- data/ext/pango/rbpangoscriptiter.c +92 -0
- data/ext/pango/rbpangotabarray.c +128 -0
- data/extconf.rb +49 -0
- data/lib/2.0/pango.so +0 -0
- data/lib/2.1/pango.so +0 -0
- data/lib/2.2/pango.so +0 -0
- data/lib/pango.rb +79 -0
- data/sample/attribute.rb +82 -0
- data/sample/break.rb +28 -0
- data/sample/gdk_layout.rb +27 -0
- data/sample/glyphstring.rb +61 -0
- data/sample/item.rb +37 -0
- data/sample/label.rb +23 -0
- data/sample/layout.rb +102 -0
- data/sample/pango_cairo.rb +66 -0
- data/sample/parse.rb +33 -0
- data/sample/sample.txt +10 -0
- data/sample/script.rb +23 -0
- data/test/pango-test-utils.rb +9 -0
- data/test/run-test.rb +28 -0
- data/test/test-analysis.rb +26 -0
- data/test/test-attribute.rb +19 -0
- data/test/test-color.rb +47 -0
- data/test/test-language.rb +7 -0
- data/test/test-layout.rb +34 -0
- data/test/test-log-attr.rb +26 -0
- data/test/test-matrix.rb +26 -0
- data/test/test-rectangle.rb +26 -0
- data/vendor/local/bin/derb.exe +0 -0
- data/vendor/local/bin/genbrk.exe +0 -0
- data/vendor/local/bin/genccode.exe +0 -0
- data/vendor/local/bin/gencfu.exe +0 -0
- data/vendor/local/bin/gencmn.exe +0 -0
- data/vendor/local/bin/gencnval.exe +0 -0
- data/vendor/local/bin/gendict.exe +0 -0
- data/vendor/local/bin/gennorm2.exe +0 -0
- data/vendor/local/bin/genrb.exe +0 -0
- data/vendor/local/bin/gensprep.exe +0 -0
- data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
- data/vendor/local/bin/hb-shape.exe +0 -0
- data/vendor/local/bin/hb-view.exe +0 -0
- data/vendor/local/bin/icu-config +820 -0
- data/vendor/local/bin/icuinfo.exe +0 -0
- data/vendor/local/bin/icupkg.exe +0 -0
- data/vendor/local/bin/libharfbuzz-0.dll +0 -0
- data/vendor/local/bin/libpango-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
- data/vendor/local/bin/makeconv.exe +0 -0
- data/vendor/local/bin/pango-querymodules.exe +0 -0
- data/vendor/local/bin/pango-view.exe +0 -0
- data/vendor/local/bin/pkgdata.exe +0 -0
- data/vendor/local/bin/uconv.exe +0 -0
- data/vendor/local/etc/pango/pango.modules +19 -0
- data/vendor/local/include/harfbuzz/hb-blob.h +126 -0
- data/vendor/local/include/harfbuzz/hb-buffer.h +344 -0
- data/vendor/local/include/harfbuzz/hb-common.h +344 -0
- data/vendor/local/include/harfbuzz/hb-deprecated.h +51 -0
- data/vendor/local/include/harfbuzz/hb-face.h +117 -0
- data/vendor/local/include/harfbuzz/hb-font.h +507 -0
- data/vendor/local/include/harfbuzz/hb-ft.h +62 -0
- data/vendor/local/include/harfbuzz/hb-glib.h +52 -0
- data/vendor/local/include/harfbuzz/hb-icu.h +52 -0
- data/vendor/local/include/harfbuzz/hb-ot-font.h +41 -0
- data/vendor/local/include/harfbuzz/hb-ot-layout.h +302 -0
- data/vendor/local/include/harfbuzz/hb-ot-shape.h +53 -0
- data/vendor/local/include/harfbuzz/hb-ot-tag.h +59 -0
- data/vendor/local/include/harfbuzz/hb-ot.h +43 -0
- data/vendor/local/include/harfbuzz/hb-set.h +154 -0
- data/vendor/local/include/harfbuzz/hb-shape-plan.h +89 -0
- data/vendor/local/include/harfbuzz/hb-shape.h +81 -0
- data/vendor/local/include/harfbuzz/hb-unicode.h +445 -0
- data/vendor/local/include/harfbuzz/hb-version.h +66 -0
- data/vendor/local/include/harfbuzz/hb.h +47 -0
- data/vendor/local/include/layout/LEFontInstance.h +550 -0
- data/vendor/local/include/layout/LEGlyphFilter.h +45 -0
- data/vendor/local/include/layout/LEGlyphStorage.h +546 -0
- data/vendor/local/include/layout/LEInsertionList.h +177 -0
- data/vendor/local/include/layout/LELanguages.h +112 -0
- data/vendor/local/include/layout/LEScripts.h +263 -0
- data/vendor/local/include/layout/LESwaps.h +100 -0
- data/vendor/local/include/layout/LETableReference.h +418 -0
- data/vendor/local/include/layout/LETypes.h +728 -0
- data/vendor/local/include/layout/LayoutEngine.h +518 -0
- data/vendor/local/include/layout/ParagraphLayout.h +747 -0
- data/vendor/local/include/layout/RunArrays.h +676 -0
- data/vendor/local/include/layout/loengine.h +225 -0
- data/vendor/local/include/layout/playout.h +466 -0
- data/vendor/local/include/layout/plruns.h +441 -0
- data/vendor/local/include/pango-1.0/pango/pango-attributes.h +514 -0
- data/vendor/local/include/pango-1.0/pango/pango-bidi-type.h +136 -0
- data/vendor/local/include/pango-1.0/pango/pango-break.h +173 -0
- data/vendor/local/include/pango-1.0/pango/pango-context.h +112 -0
- data/vendor/local/include/pango-1.0/pango/pango-coverage.h +79 -0
- data/vendor/local/include/pango-1.0/pango/pango-engine.h +429 -0
- data/vendor/local/include/pango-1.0/pango/pango-enum-types.h +69 -0
- data/vendor/local/include/pango-1.0/pango/pango-features.h +12 -0
- data/vendor/local/include/pango-1.0/pango/pango-font.h +622 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +167 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontset.h +169 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +158 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph.h +197 -0
- data/vendor/local/include/pango-1.0/pango/pango-gravity.h +128 -0
- data/vendor/local/include/pango-1.0/pango/pango-item.h +109 -0
- data/vendor/local/include/pango-1.0/pango/pango-language.h +61 -0
- data/vendor/local/include/pango-1.0/pango/pango-layout.h +340 -0
- data/vendor/local/include/pango-1.0/pango/pango-matrix.h +117 -0
- data/vendor/local/include/pango-1.0/pango/pango-modules.h +71 -0
- data/vendor/local/include/pango-1.0/pango/pango-ot.h +391 -0
- data/vendor/local/include/pango-1.0/pango/pango-renderer.h +260 -0
- data/vendor/local/include/pango-1.0/pango/pango-script.h +260 -0
- data/vendor/local/include/pango-1.0/pango/pango-tabs.h +87 -0
- data/vendor/local/include/pango-1.0/pango/pango-types.h +200 -0
- data/vendor/local/include/pango-1.0/pango/pango-utils.h +189 -0
- data/vendor/local/include/pango-1.0/pango/pango.h +48 -0
- data/vendor/local/include/pango-1.0/pango/pangocairo.h +169 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-decoder.h +110 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-font.h +153 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +289 -0
- data/vendor/local/include/pango-1.0/pango/pangoft2.h +133 -0
- data/vendor/local/include/pango-1.0/pango/pangowin32.h +128 -0
- data/vendor/local/include/unicode/alphaindex.h +752 -0
- data/vendor/local/include/unicode/appendable.h +232 -0
- data/vendor/local/include/unicode/basictz.h +214 -0
- data/vendor/local/include/unicode/brkiter.h +655 -0
- data/vendor/local/include/unicode/bytestream.h +257 -0
- data/vendor/local/include/unicode/bytestrie.h +519 -0
- data/vendor/local/include/unicode/bytestriebuilder.h +181 -0
- data/vendor/local/include/unicode/calendar.h +2519 -0
- data/vendor/local/include/unicode/caniter.h +208 -0
- data/vendor/local/include/unicode/chariter.h +722 -0
- data/vendor/local/include/unicode/choicfmt.h +594 -0
- data/vendor/local/include/unicode/coleitr.h +404 -0
- data/vendor/local/include/unicode/coll.h +1267 -0
- data/vendor/local/include/unicode/compactdecimalformat.h +330 -0
- data/vendor/local/include/unicode/curramt.h +130 -0
- data/vendor/local/include/unicode/currpinf.h +258 -0
- data/vendor/local/include/unicode/currunit.h +110 -0
- data/vendor/local/include/unicode/datefmt.h +883 -0
- data/vendor/local/include/unicode/dbbi.h +40 -0
- data/vendor/local/include/unicode/dcfmtsym.h +482 -0
- data/vendor/local/include/unicode/decimfmt.h +2479 -0
- data/vendor/local/include/unicode/docmain.h +215 -0
- data/vendor/local/include/unicode/dtfmtsym.h +912 -0
- data/vendor/local/include/unicode/dtintrv.h +158 -0
- data/vendor/local/include/unicode/dtitvfmt.h +985 -0
- data/vendor/local/include/unicode/dtitvinf.h +514 -0
- data/vendor/local/include/unicode/dtptngen.h +498 -0
- data/vendor/local/include/unicode/dtrule.h +250 -0
- data/vendor/local/include/unicode/enumset.h +64 -0
- data/vendor/local/include/unicode/errorcode.h +137 -0
- data/vendor/local/include/unicode/fieldpos.h +291 -0
- data/vendor/local/include/unicode/filteredbrk.h +131 -0
- data/vendor/local/include/unicode/fmtable.h +760 -0
- data/vendor/local/include/unicode/format.h +305 -0
- data/vendor/local/include/unicode/fpositer.h +117 -0
- data/vendor/local/include/unicode/gender.h +111 -0
- data/vendor/local/include/unicode/gregocal.h +777 -0
- data/vendor/local/include/unicode/icudataver.h +41 -0
- data/vendor/local/include/unicode/icuplug.h +371 -0
- data/vendor/local/include/unicode/idna.h +323 -0
- data/vendor/local/include/unicode/listformatter.h +167 -0
- data/vendor/local/include/unicode/localpointer.h +304 -0
- data/vendor/local/include/unicode/locdspnm.h +204 -0
- data/vendor/local/include/unicode/locid.h +815 -0
- data/vendor/local/include/unicode/measfmt.h +389 -0
- data/vendor/local/include/unicode/measunit.h +1443 -0
- data/vendor/local/include/unicode/measure.h +159 -0
- data/vendor/local/include/unicode/messagepattern.h +943 -0
- data/vendor/local/include/unicode/msgfmt.h +1093 -0
- data/vendor/local/include/unicode/normalizer2.h +658 -0
- data/vendor/local/include/unicode/normlzr.h +797 -0
- data/vendor/local/include/unicode/numfmt.h +1187 -0
- data/vendor/local/include/unicode/numsys.h +208 -0
- data/vendor/local/include/unicode/parseerr.h +92 -0
- data/vendor/local/include/unicode/parsepos.h +230 -0
- data/vendor/local/include/unicode/platform.h +751 -0
- data/vendor/local/include/unicode/plurfmt.h +615 -0
- data/vendor/local/include/unicode/plurrule.h +501 -0
- data/vendor/local/include/unicode/ptypes.h +126 -0
- data/vendor/local/include/unicode/putil.h +181 -0
- data/vendor/local/include/unicode/rbbi.h +782 -0
- data/vendor/local/include/unicode/rbnf.h +1032 -0
- data/vendor/local/include/unicode/rbtz.h +362 -0
- data/vendor/local/include/unicode/regex.h +1857 -0
- data/vendor/local/include/unicode/region.h +228 -0
- data/vendor/local/include/unicode/reldatefmt.h +498 -0
- data/vendor/local/include/unicode/rep.h +261 -0
- data/vendor/local/include/unicode/resbund.h +490 -0
- data/vendor/local/include/unicode/schriter.h +187 -0
- data/vendor/local/include/unicode/scientificformathelper.h +139 -0
- data/vendor/local/include/unicode/search.h +575 -0
- data/vendor/local/include/unicode/selfmt.h +367 -0
- data/vendor/local/include/unicode/simpletz.h +928 -0
- data/vendor/local/include/unicode/smpdtfmt.h +1592 -0
- data/vendor/local/include/unicode/sortkey.h +338 -0
- data/vendor/local/include/unicode/std_string.h +37 -0
- data/vendor/local/include/unicode/strenum.h +276 -0
- data/vendor/local/include/unicode/stringpiece.h +224 -0
- data/vendor/local/include/unicode/stringtriebuilder.h +402 -0
- data/vendor/local/include/unicode/stsearch.h +504 -0
- data/vendor/local/include/unicode/symtable.h +112 -0
- data/vendor/local/include/unicode/tblcoll.h +873 -0
- data/vendor/local/include/unicode/timezone.h +948 -0
- data/vendor/local/include/unicode/tmunit.h +129 -0
- data/vendor/local/include/unicode/tmutamt.h +168 -0
- data/vendor/local/include/unicode/tmutfmt.h +243 -0
- data/vendor/local/include/unicode/translit.h +1342 -0
- data/vendor/local/include/unicode/tzfmt.h +1098 -0
- data/vendor/local/include/unicode/tznames.h +404 -0
- data/vendor/local/include/unicode/tzrule.h +828 -0
- data/vendor/local/include/unicode/tztrans.h +195 -0
- data/vendor/local/include/unicode/ubidi.h +2186 -0
- data/vendor/local/include/unicode/ubrk.h +540 -0
- data/vendor/local/include/unicode/ucal.h +1560 -0
- data/vendor/local/include/unicode/ucasemap.h +423 -0
- data/vendor/local/include/unicode/ucat.h +158 -0
- data/vendor/local/include/unicode/uchar.h +3426 -0
- data/vendor/local/include/unicode/ucharstrie.h +576 -0
- data/vendor/local/include/unicode/ucharstriebuilder.h +185 -0
- data/vendor/local/include/unicode/uchriter.h +381 -0
- data/vendor/local/include/unicode/uclean.h +258 -0
- data/vendor/local/include/unicode/ucnv.h +2036 -0
- data/vendor/local/include/unicode/ucnv_cb.h +162 -0
- data/vendor/local/include/unicode/ucnv_err.h +463 -0
- data/vendor/local/include/unicode/ucnvsel.h +187 -0
- data/vendor/local/include/unicode/ucol.h +1474 -0
- data/vendor/local/include/unicode/ucoleitr.h +266 -0
- data/vendor/local/include/unicode/uconfig.h +430 -0
- data/vendor/local/include/unicode/ucsdet.h +413 -0
- data/vendor/local/include/unicode/ucurr.h +424 -0
- data/vendor/local/include/unicode/udat.h +1536 -0
- data/vendor/local/include/unicode/udata.h +430 -0
- data/vendor/local/include/unicode/udateintervalformat.h +181 -0
- data/vendor/local/include/unicode/udatpg.h +588 -0
- data/vendor/local/include/unicode/udisplaycontext.h +150 -0
- data/vendor/local/include/unicode/uenum.h +206 -0
- data/vendor/local/include/unicode/uformattable.h +280 -0
- data/vendor/local/include/unicode/ugender.h +82 -0
- data/vendor/local/include/unicode/uidna.h +762 -0
- data/vendor/local/include/unicode/uiter.h +707 -0
- data/vendor/local/include/unicode/uldnames.h +302 -0
- data/vendor/local/include/unicode/uloc.h +1256 -0
- data/vendor/local/include/unicode/ulocdata.h +277 -0
- data/vendor/local/include/unicode/umachine.h +356 -0
- data/vendor/local/include/unicode/umisc.h +60 -0
- data/vendor/local/include/unicode/umsg.h +623 -0
- data/vendor/local/include/unicode/unifilt.h +120 -0
- data/vendor/local/include/unicode/unifunct.h +125 -0
- data/vendor/local/include/unicode/unimatch.h +163 -0
- data/vendor/local/include/unicode/unirepl.h +97 -0
- data/vendor/local/include/unicode/uniset.h +1691 -0
- data/vendor/local/include/unicode/unistr.h +4470 -0
- data/vendor/local/include/unicode/unorm.h +561 -0
- data/vendor/local/include/unicode/unorm2.h +528 -0
- data/vendor/local/include/unicode/unum.h +1328 -0
- data/vendor/local/include/unicode/unumsys.h +170 -0
- data/vendor/local/include/unicode/uobject.h +320 -0
- data/vendor/local/include/unicode/upluralrules.h +145 -0
- data/vendor/local/include/unicode/uregex.h +1591 -0
- data/vendor/local/include/unicode/uregion.h +248 -0
- data/vendor/local/include/unicode/urename.h +1784 -0
- data/vendor/local/include/unicode/urep.h +155 -0
- data/vendor/local/include/unicode/ures.h +887 -0
- data/vendor/local/include/unicode/uscript.h +642 -0
- data/vendor/local/include/unicode/usearch.h +885 -0
- data/vendor/local/include/unicode/uset.h +1126 -0
- data/vendor/local/include/unicode/usetiter.h +318 -0
- data/vendor/local/include/unicode/ushape.h +474 -0
- data/vendor/local/include/unicode/uspoof.h +1064 -0
- data/vendor/local/include/unicode/usprep.h +269 -0
- data/vendor/local/include/unicode/ustdio.h +1018 -0
- data/vendor/local/include/unicode/ustream.h +68 -0
- data/vendor/local/include/unicode/ustring.h +1700 -0
- data/vendor/local/include/unicode/ustringtrie.h +95 -0
- data/vendor/local/include/unicode/utext.h +1600 -0
- data/vendor/local/include/unicode/utf.h +223 -0
- data/vendor/local/include/unicode/utf16.h +623 -0
- data/vendor/local/include/unicode/utf32.h +23 -0
- data/vendor/local/include/unicode/utf8.h +824 -0
- data/vendor/local/include/unicode/utf_old.h +1169 -0
- data/vendor/local/include/unicode/utmscale.h +481 -0
- data/vendor/local/include/unicode/utrace.h +359 -0
- data/vendor/local/include/unicode/utrans.h +658 -0
- data/vendor/local/include/unicode/utypes.h +723 -0
- data/vendor/local/include/unicode/uvernum.h +170 -0
- data/vendor/local/include/unicode/uversion.h +193 -0
- data/vendor/local/include/unicode/vtzone.h +455 -0
- data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/PangoFT2-1.0.typelib +0 -0
- data/vendor/local/lib/icu/54.1/Makefile.inc +293 -0
- data/vendor/local/lib/icu/54.1/pkgdata.inc +17 -0
- data/vendor/local/lib/icu/Makefile.inc +293 -0
- data/vendor/local/lib/icu/pkgdata.inc +17 -0
- data/vendor/local/lib/icudt.dll +0 -0
- data/vendor/local/lib/icudt54.dll +0 -0
- data/vendor/local/lib/icuin.dll +0 -0
- data/vendor/local/lib/icuin54.dll +0 -0
- data/vendor/local/lib/icuio.dll +0 -0
- data/vendor/local/lib/icuio54.dll +0 -0
- data/vendor/local/lib/icule.dll +0 -0
- data/vendor/local/lib/icule54.dll +0 -0
- data/vendor/local/lib/iculx.dll +0 -0
- data/vendor/local/lib/iculx54.dll +0 -0
- data/vendor/local/lib/icutest.dll +0 -0
- data/vendor/local/lib/icutest54.dll +0 -0
- data/vendor/local/lib/icutu.dll +0 -0
- data/vendor/local/lib/icutu54.dll +0 -0
- data/vendor/local/lib/icuuc.dll +0 -0
- data/vendor/local/lib/icuuc54.dll +0 -0
- data/vendor/local/lib/libharfbuzz-icu.a +0 -0
- data/vendor/local/lib/libharfbuzz-icu.la +41 -0
- data/vendor/local/lib/libharfbuzz.dll.a +0 -0
- data/vendor/local/lib/libharfbuzz.la +41 -0
- data/vendor/local/lib/libicudt.dll.a +0 -0
- data/vendor/local/lib/libicuin.dll.a +0 -0
- data/vendor/local/lib/libicuio.dll.a +0 -0
- data/vendor/local/lib/libicule.dll.a +0 -0
- data/vendor/local/lib/libiculx.dll.a +0 -0
- data/vendor/local/lib/libicutest.dll.a +0 -0
- data/vendor/local/lib/libicutu.dll.a +0 -0
- data/vendor/local/lib/libicuuc.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.la +41 -0
- data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangocairo-1.0.la +41 -0
- data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangoft2-1.0.la +41 -0
- data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangowin32-1.0.la +41 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.la +41 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.la +41 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.la +41 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll.a +0 -0
- data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.la +41 -0
- data/vendor/local/lib/pkgconfig/harfbuzz-icu.pc +13 -0
- data/vendor/local/lib/pkgconfig/harfbuzz.pc +11 -0
- data/vendor/local/lib/pkgconfig/icu-i18n.pc +38 -0
- data/vendor/local/lib/pkgconfig/icu-io.pc +38 -0
- data/vendor/local/lib/pkgconfig/icu-le.pc +38 -0
- data/vendor/local/lib/pkgconfig/icu-lx.pc +38 -0
- data/vendor/local/lib/pkgconfig/icu-uc.pc +38 -0
- data/vendor/local/lib/pkgconfig/pango.pc +14 -0
- data/vendor/local/lib/pkgconfig/pangocairo.pc +11 -0
- data/vendor/local/lib/pkgconfig/pangoft2.pc +12 -0
- data/vendor/local/lib/pkgconfig/pangowin32.pc +11 -0
- data/vendor/local/share/gir-1.0/Pango-1.0.gir +13329 -0
- data/vendor/local/share/gir-1.0/PangoCairo-1.0.gir +833 -0
- data/vendor/local/share/gir-1.0/PangoFT2-1.0.gir +354 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/annotation-glossary.html +75 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +1449 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/ch01.html +98 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +46 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-blob.html +610 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-buffer.html +1780 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-common.html +1337 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-coretext.html +144 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-deprecated.html +99 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-face.html +630 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +2529 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ft.html +188 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-glib.html +120 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +50 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +120 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html +120 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +771 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html +172 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html +50 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-set.html +966 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +405 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape.html +286 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-unicode.html +1523 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-uniscribe.html +100 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +182 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb.html +50 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +378 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +105 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/index.sgml +496 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/object-tree.html +59 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +224 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +255 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +246 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +500 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +1001 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +301 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoRenderer.html +1219 -0
- data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +89 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +135 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +49 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +64 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +228 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +152 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +122 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +87 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +124 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +97 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +46 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +39 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +39 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +53 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +42 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +38 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +201 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +165 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +171 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +284 -0
- data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +2968 -0
- data/vendor/local/share/gtk-doc/html/pango/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/index.html +146 -0
- data/vendor/local/share/gtk-doc/html/pango/index.sgml +957 -0
- data/vendor/local/share/gtk-doc/html/pango/layout.gif +0 -0
- data/vendor/local/share/gtk-doc/html/pango/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +68 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +514 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +1632 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +115 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +508 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +358 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +4154 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +956 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +2627 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +4153 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +965 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +331 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +2202 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +1430 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +582 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +3356 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +2079 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +325 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +523 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +1028 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +1275 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +91 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +131 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +786 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.html +63 -0
- data/vendor/local/share/gtk-doc/html/pango/rendering.html +47 -0
- data/vendor/local/share/gtk-doc/html/pango/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/pango/tools.html +33 -0
- data/vendor/local/share/gtk-doc/html/pango/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/up.png +0 -0
- data/vendor/local/share/icu/54.1/config/mh-mingw64 +158 -0
- data/vendor/local/share/icu/54.1/install-sh +251 -0
- data/vendor/local/share/icu/54.1/license.html +385 -0
- data/vendor/local/share/icu/54.1/mkinstalldirs +43 -0
- data/vendor/local/share/license/harfbuzz/AUTHORS +9 -0
- data/vendor/local/share/license/harfbuzz/COPYING +36 -0
- data/vendor/local/share/license/pango/AUTHORS +2 -0
- data/vendor/local/share/license/pango/COPYING +482 -0
- data/vendor/local/share/man/man1/derb.1 +196 -0
- data/vendor/local/share/man/man1/genbrk.1 +112 -0
- data/vendor/local/share/man/man1/gencfu.1 +91 -0
- data/vendor/local/share/man/man1/gencnval.1 +91 -0
- data/vendor/local/share/man/man1/gendict.1 +131 -0
- data/vendor/local/share/man/man1/genrb.1 +146 -0
- data/vendor/local/share/man/man1/icu-config.1 +288 -0
- data/vendor/local/share/man/man1/makeconv.1 +112 -0
- data/vendor/local/share/man/man1/pango-querymodules.1 +106 -0
- data/vendor/local/share/man/man1/pango-view.1 +1 -0
- data/vendor/local/share/man/man1/pkgdata.1 +258 -0
- data/vendor/local/share/man/man1/uconv.1 +443 -0
- data/vendor/local/share/man/man8/genccode.8 +106 -0
- data/vendor/local/share/man/man8/gencmn.8 +129 -0
- data/vendor/local/share/man/man8/gensprep.8 +102 -0
- data/vendor/local/share/man/man8/icupkg.8 +204 -0
- metadata +599 -0
@@ -0,0 +1,1784 @@
|
|
1
|
+
/*
|
2
|
+
*******************************************************************************
|
3
|
+
* Copyright (C) 2002-2014, International Business Machines
|
4
|
+
* Corporation and others. All Rights Reserved.
|
5
|
+
*******************************************************************************
|
6
|
+
*
|
7
|
+
* file name: urename.h
|
8
|
+
* encoding: US-ASCII
|
9
|
+
* tab size: 8 (not used)
|
10
|
+
* indentation:4
|
11
|
+
*
|
12
|
+
* Created by: Perl script tools/genren.pl written by Vladimir Weinstein
|
13
|
+
*
|
14
|
+
* Contains data for renaming ICU exports.
|
15
|
+
* Gets included by umachine.h
|
16
|
+
*
|
17
|
+
* THIS FILE IS MACHINE-GENERATED, DON'T PLAY WITH IT IF YOU DON'T KNOW WHAT
|
18
|
+
* YOU ARE DOING, OTHERWISE VERY BAD THINGS WILL HAPPEN!
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef URENAME_H
|
22
|
+
#define URENAME_H
|
23
|
+
|
24
|
+
/* U_DISABLE_RENAMING can be defined in the following ways:
|
25
|
+
* - when running configure, e.g.
|
26
|
+
* runConfigureICU Linux --disable-renaming
|
27
|
+
* - by changing the default setting of U_DISABLE_RENAMING in uconfig.h
|
28
|
+
*/
|
29
|
+
|
30
|
+
#include "unicode/uconfig.h"
|
31
|
+
|
32
|
+
#if !U_DISABLE_RENAMING
|
33
|
+
|
34
|
+
/* We need the U_ICU_ENTRY_POINT_RENAME definition. There's a default one in unicode/uvernum.h we can use, but we will give
|
35
|
+
the platform a chance to define it first.
|
36
|
+
Normally (if utypes.h or umachine.h was included first) this will not be necessary as it will already be defined.
|
37
|
+
*/
|
38
|
+
|
39
|
+
#ifndef U_ICU_ENTRY_POINT_RENAME
|
40
|
+
#include "unicode/umachine.h"
|
41
|
+
#endif
|
42
|
+
|
43
|
+
/* If we still don't have U_ICU_ENTRY_POINT_RENAME use the default. */
|
44
|
+
#ifndef U_ICU_ENTRY_POINT_RENAME
|
45
|
+
#include "unicode/uvernum.h"
|
46
|
+
#endif
|
47
|
+
|
48
|
+
/* Error out before the following defines cause very strange and unexpected code breakage */
|
49
|
+
#ifndef U_ICU_ENTRY_POINT_RENAME
|
50
|
+
#error U_ICU_ENTRY_POINT_RENAME is not defined - cannot continue. Consider defining U_DISABLE_RENAMING if renaming should not be used.
|
51
|
+
#endif
|
52
|
+
|
53
|
+
|
54
|
+
/* C exports renaming data */
|
55
|
+
|
56
|
+
#define T_CString_int64ToString U_ICU_ENTRY_POINT_RENAME(T_CString_int64ToString)
|
57
|
+
#define T_CString_integerToString U_ICU_ENTRY_POINT_RENAME(T_CString_integerToString)
|
58
|
+
#define T_CString_stringToInteger U_ICU_ENTRY_POINT_RENAME(T_CString_stringToInteger)
|
59
|
+
#define T_CString_toLowerCase U_ICU_ENTRY_POINT_RENAME(T_CString_toLowerCase)
|
60
|
+
#define T_CString_toUpperCase U_ICU_ENTRY_POINT_RENAME(T_CString_toUpperCase)
|
61
|
+
#define UCNV_FROM_U_CALLBACK_ESCAPE U_ICU_ENTRY_POINT_RENAME(UCNV_FROM_U_CALLBACK_ESCAPE)
|
62
|
+
#define UCNV_FROM_U_CALLBACK_SKIP U_ICU_ENTRY_POINT_RENAME(UCNV_FROM_U_CALLBACK_SKIP)
|
63
|
+
#define UCNV_FROM_U_CALLBACK_STOP U_ICU_ENTRY_POINT_RENAME(UCNV_FROM_U_CALLBACK_STOP)
|
64
|
+
#define UCNV_FROM_U_CALLBACK_SUBSTITUTE U_ICU_ENTRY_POINT_RENAME(UCNV_FROM_U_CALLBACK_SUBSTITUTE)
|
65
|
+
#define UCNV_TO_U_CALLBACK_ESCAPE U_ICU_ENTRY_POINT_RENAME(UCNV_TO_U_CALLBACK_ESCAPE)
|
66
|
+
#define UCNV_TO_U_CALLBACK_SKIP U_ICU_ENTRY_POINT_RENAME(UCNV_TO_U_CALLBACK_SKIP)
|
67
|
+
#define UCNV_TO_U_CALLBACK_STOP U_ICU_ENTRY_POINT_RENAME(UCNV_TO_U_CALLBACK_STOP)
|
68
|
+
#define UCNV_TO_U_CALLBACK_SUBSTITUTE U_ICU_ENTRY_POINT_RENAME(UCNV_TO_U_CALLBACK_SUBSTITUTE)
|
69
|
+
#define UDataMemory_createNewInstance U_ICU_ENTRY_POINT_RENAME(UDataMemory_createNewInstance)
|
70
|
+
#define UDataMemory_init U_ICU_ENTRY_POINT_RENAME(UDataMemory_init)
|
71
|
+
#define UDataMemory_isLoaded U_ICU_ENTRY_POINT_RENAME(UDataMemory_isLoaded)
|
72
|
+
#define UDataMemory_normalizeDataPointer U_ICU_ENTRY_POINT_RENAME(UDataMemory_normalizeDataPointer)
|
73
|
+
#define UDataMemory_setData U_ICU_ENTRY_POINT_RENAME(UDataMemory_setData)
|
74
|
+
#define UDatamemory_assign U_ICU_ENTRY_POINT_RENAME(UDatamemory_assign)
|
75
|
+
#define _ASCIIData U_ICU_ENTRY_POINT_RENAME(_ASCIIData)
|
76
|
+
#define _Bocu1Data U_ICU_ENTRY_POINT_RENAME(_Bocu1Data)
|
77
|
+
#define _CESU8Data U_ICU_ENTRY_POINT_RENAME(_CESU8Data)
|
78
|
+
#define _CompoundTextData U_ICU_ENTRY_POINT_RENAME(_CompoundTextData)
|
79
|
+
#define _HZData U_ICU_ENTRY_POINT_RENAME(_HZData)
|
80
|
+
#define _IMAPData U_ICU_ENTRY_POINT_RENAME(_IMAPData)
|
81
|
+
#define _ISCIIData U_ICU_ENTRY_POINT_RENAME(_ISCIIData)
|
82
|
+
#define _ISO2022Data U_ICU_ENTRY_POINT_RENAME(_ISO2022Data)
|
83
|
+
#define _LMBCSData1 U_ICU_ENTRY_POINT_RENAME(_LMBCSData1)
|
84
|
+
#define _LMBCSData11 U_ICU_ENTRY_POINT_RENAME(_LMBCSData11)
|
85
|
+
#define _LMBCSData16 U_ICU_ENTRY_POINT_RENAME(_LMBCSData16)
|
86
|
+
#define _LMBCSData17 U_ICU_ENTRY_POINT_RENAME(_LMBCSData17)
|
87
|
+
#define _LMBCSData18 U_ICU_ENTRY_POINT_RENAME(_LMBCSData18)
|
88
|
+
#define _LMBCSData19 U_ICU_ENTRY_POINT_RENAME(_LMBCSData19)
|
89
|
+
#define _LMBCSData2 U_ICU_ENTRY_POINT_RENAME(_LMBCSData2)
|
90
|
+
#define _LMBCSData3 U_ICU_ENTRY_POINT_RENAME(_LMBCSData3)
|
91
|
+
#define _LMBCSData4 U_ICU_ENTRY_POINT_RENAME(_LMBCSData4)
|
92
|
+
#define _LMBCSData5 U_ICU_ENTRY_POINT_RENAME(_LMBCSData5)
|
93
|
+
#define _LMBCSData6 U_ICU_ENTRY_POINT_RENAME(_LMBCSData6)
|
94
|
+
#define _LMBCSData8 U_ICU_ENTRY_POINT_RENAME(_LMBCSData8)
|
95
|
+
#define _Latin1Data U_ICU_ENTRY_POINT_RENAME(_Latin1Data)
|
96
|
+
#define _MBCSData U_ICU_ENTRY_POINT_RENAME(_MBCSData)
|
97
|
+
#define _SCSUData U_ICU_ENTRY_POINT_RENAME(_SCSUData)
|
98
|
+
#define _UTF16BEData U_ICU_ENTRY_POINT_RENAME(_UTF16BEData)
|
99
|
+
#define _UTF16Data U_ICU_ENTRY_POINT_RENAME(_UTF16Data)
|
100
|
+
#define _UTF16LEData U_ICU_ENTRY_POINT_RENAME(_UTF16LEData)
|
101
|
+
#define _UTF32BEData U_ICU_ENTRY_POINT_RENAME(_UTF32BEData)
|
102
|
+
#define _UTF32Data U_ICU_ENTRY_POINT_RENAME(_UTF32Data)
|
103
|
+
#define _UTF32LEData U_ICU_ENTRY_POINT_RENAME(_UTF32LEData)
|
104
|
+
#define _UTF7Data U_ICU_ENTRY_POINT_RENAME(_UTF7Data)
|
105
|
+
#define _UTF8Data U_ICU_ENTRY_POINT_RENAME(_UTF8Data)
|
106
|
+
#define cmemory_cleanup U_ICU_ENTRY_POINT_RENAME(cmemory_cleanup)
|
107
|
+
#define cmemory_inUse U_ICU_ENTRY_POINT_RENAME(cmemory_inUse)
|
108
|
+
#define gTimeZoneFilesInitOnce U_ICU_ENTRY_POINT_RENAME(gTimeZoneFilesInitOnce)
|
109
|
+
#define izrule_clone U_ICU_ENTRY_POINT_RENAME(izrule_clone)
|
110
|
+
#define izrule_close U_ICU_ENTRY_POINT_RENAME(izrule_close)
|
111
|
+
#define izrule_equals U_ICU_ENTRY_POINT_RENAME(izrule_equals)
|
112
|
+
#define izrule_getDSTSavings U_ICU_ENTRY_POINT_RENAME(izrule_getDSTSavings)
|
113
|
+
#define izrule_getDynamicClassID U_ICU_ENTRY_POINT_RENAME(izrule_getDynamicClassID)
|
114
|
+
#define izrule_getFinalStart U_ICU_ENTRY_POINT_RENAME(izrule_getFinalStart)
|
115
|
+
#define izrule_getFirstStart U_ICU_ENTRY_POINT_RENAME(izrule_getFirstStart)
|
116
|
+
#define izrule_getName U_ICU_ENTRY_POINT_RENAME(izrule_getName)
|
117
|
+
#define izrule_getNextStart U_ICU_ENTRY_POINT_RENAME(izrule_getNextStart)
|
118
|
+
#define izrule_getPreviousStart U_ICU_ENTRY_POINT_RENAME(izrule_getPreviousStart)
|
119
|
+
#define izrule_getRawOffset U_ICU_ENTRY_POINT_RENAME(izrule_getRawOffset)
|
120
|
+
#define izrule_getStaticClassID U_ICU_ENTRY_POINT_RENAME(izrule_getStaticClassID)
|
121
|
+
#define izrule_isEquivalentTo U_ICU_ENTRY_POINT_RENAME(izrule_isEquivalentTo)
|
122
|
+
#define izrule_open U_ICU_ENTRY_POINT_RENAME(izrule_open)
|
123
|
+
#define le_close U_ICU_ENTRY_POINT_RENAME(le_close)
|
124
|
+
#define le_create U_ICU_ENTRY_POINT_RENAME(le_create)
|
125
|
+
#define le_getCharIndices U_ICU_ENTRY_POINT_RENAME(le_getCharIndices)
|
126
|
+
#define le_getCharIndicesWithBase U_ICU_ENTRY_POINT_RENAME(le_getCharIndicesWithBase)
|
127
|
+
#define le_getGlyphCount U_ICU_ENTRY_POINT_RENAME(le_getGlyphCount)
|
128
|
+
#define le_getGlyphPosition U_ICU_ENTRY_POINT_RENAME(le_getGlyphPosition)
|
129
|
+
#define le_getGlyphPositions U_ICU_ENTRY_POINT_RENAME(le_getGlyphPositions)
|
130
|
+
#define le_getGlyphs U_ICU_ENTRY_POINT_RENAME(le_getGlyphs)
|
131
|
+
#define le_layoutChars U_ICU_ENTRY_POINT_RENAME(le_layoutChars)
|
132
|
+
#define le_reset U_ICU_ENTRY_POINT_RENAME(le_reset)
|
133
|
+
#define locale_getKeywords U_ICU_ENTRY_POINT_RENAME(locale_getKeywords)
|
134
|
+
#define locale_getKeywordsStart U_ICU_ENTRY_POINT_RENAME(locale_getKeywordsStart)
|
135
|
+
#define locale_get_default U_ICU_ENTRY_POINT_RENAME(locale_get_default)
|
136
|
+
#define locale_set_default U_ICU_ENTRY_POINT_RENAME(locale_set_default)
|
137
|
+
#define pl_addFontRun U_ICU_ENTRY_POINT_RENAME(pl_addFontRun)
|
138
|
+
#define pl_addLocaleRun U_ICU_ENTRY_POINT_RENAME(pl_addLocaleRun)
|
139
|
+
#define pl_addValueRun U_ICU_ENTRY_POINT_RENAME(pl_addValueRun)
|
140
|
+
#define pl_close U_ICU_ENTRY_POINT_RENAME(pl_close)
|
141
|
+
#define pl_closeFontRuns U_ICU_ENTRY_POINT_RENAME(pl_closeFontRuns)
|
142
|
+
#define pl_closeLine U_ICU_ENTRY_POINT_RENAME(pl_closeLine)
|
143
|
+
#define pl_closeLocaleRuns U_ICU_ENTRY_POINT_RENAME(pl_closeLocaleRuns)
|
144
|
+
#define pl_closeValueRuns U_ICU_ENTRY_POINT_RENAME(pl_closeValueRuns)
|
145
|
+
#define pl_countLineRuns U_ICU_ENTRY_POINT_RENAME(pl_countLineRuns)
|
146
|
+
#define pl_create U_ICU_ENTRY_POINT_RENAME(pl_create)
|
147
|
+
#define pl_getAscent U_ICU_ENTRY_POINT_RENAME(pl_getAscent)
|
148
|
+
#define pl_getDescent U_ICU_ENTRY_POINT_RENAME(pl_getDescent)
|
149
|
+
#define pl_getFontRunCount U_ICU_ENTRY_POINT_RENAME(pl_getFontRunCount)
|
150
|
+
#define pl_getFontRunFont U_ICU_ENTRY_POINT_RENAME(pl_getFontRunFont)
|
151
|
+
#define pl_getFontRunLastLimit U_ICU_ENTRY_POINT_RENAME(pl_getFontRunLastLimit)
|
152
|
+
#define pl_getFontRunLimit U_ICU_ENTRY_POINT_RENAME(pl_getFontRunLimit)
|
153
|
+
#define pl_getLeading U_ICU_ENTRY_POINT_RENAME(pl_getLeading)
|
154
|
+
#define pl_getLineAscent U_ICU_ENTRY_POINT_RENAME(pl_getLineAscent)
|
155
|
+
#define pl_getLineDescent U_ICU_ENTRY_POINT_RENAME(pl_getLineDescent)
|
156
|
+
#define pl_getLineLeading U_ICU_ENTRY_POINT_RENAME(pl_getLineLeading)
|
157
|
+
#define pl_getLineVisualRun U_ICU_ENTRY_POINT_RENAME(pl_getLineVisualRun)
|
158
|
+
#define pl_getLineWidth U_ICU_ENTRY_POINT_RENAME(pl_getLineWidth)
|
159
|
+
#define pl_getLocaleRunCount U_ICU_ENTRY_POINT_RENAME(pl_getLocaleRunCount)
|
160
|
+
#define pl_getLocaleRunLastLimit U_ICU_ENTRY_POINT_RENAME(pl_getLocaleRunLastLimit)
|
161
|
+
#define pl_getLocaleRunLimit U_ICU_ENTRY_POINT_RENAME(pl_getLocaleRunLimit)
|
162
|
+
#define pl_getLocaleRunLocale U_ICU_ENTRY_POINT_RENAME(pl_getLocaleRunLocale)
|
163
|
+
#define pl_getParagraphLevel U_ICU_ENTRY_POINT_RENAME(pl_getParagraphLevel)
|
164
|
+
#define pl_getTextDirection U_ICU_ENTRY_POINT_RENAME(pl_getTextDirection)
|
165
|
+
#define pl_getValueRunCount U_ICU_ENTRY_POINT_RENAME(pl_getValueRunCount)
|
166
|
+
#define pl_getValueRunLastLimit U_ICU_ENTRY_POINT_RENAME(pl_getValueRunLastLimit)
|
167
|
+
#define pl_getValueRunLimit U_ICU_ENTRY_POINT_RENAME(pl_getValueRunLimit)
|
168
|
+
#define pl_getValueRunValue U_ICU_ENTRY_POINT_RENAME(pl_getValueRunValue)
|
169
|
+
#define pl_getVisualRunAscent U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunAscent)
|
170
|
+
#define pl_getVisualRunDescent U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunDescent)
|
171
|
+
#define pl_getVisualRunDirection U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunDirection)
|
172
|
+
#define pl_getVisualRunFont U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunFont)
|
173
|
+
#define pl_getVisualRunGlyphCount U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunGlyphCount)
|
174
|
+
#define pl_getVisualRunGlyphToCharMap U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunGlyphToCharMap)
|
175
|
+
#define pl_getVisualRunGlyphs U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunGlyphs)
|
176
|
+
#define pl_getVisualRunLeading U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunLeading)
|
177
|
+
#define pl_getVisualRunPositions U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunPositions)
|
178
|
+
#define pl_isComplex U_ICU_ENTRY_POINT_RENAME(pl_isComplex)
|
179
|
+
#define pl_nextLine U_ICU_ENTRY_POINT_RENAME(pl_nextLine)
|
180
|
+
#define pl_openEmptyFontRuns U_ICU_ENTRY_POINT_RENAME(pl_openEmptyFontRuns)
|
181
|
+
#define pl_openEmptyLocaleRuns U_ICU_ENTRY_POINT_RENAME(pl_openEmptyLocaleRuns)
|
182
|
+
#define pl_openEmptyValueRuns U_ICU_ENTRY_POINT_RENAME(pl_openEmptyValueRuns)
|
183
|
+
#define pl_openFontRuns U_ICU_ENTRY_POINT_RENAME(pl_openFontRuns)
|
184
|
+
#define pl_openLocaleRuns U_ICU_ENTRY_POINT_RENAME(pl_openLocaleRuns)
|
185
|
+
#define pl_openValueRuns U_ICU_ENTRY_POINT_RENAME(pl_openValueRuns)
|
186
|
+
#define pl_reflow U_ICU_ENTRY_POINT_RENAME(pl_reflow)
|
187
|
+
#define pl_resetFontRuns U_ICU_ENTRY_POINT_RENAME(pl_resetFontRuns)
|
188
|
+
#define pl_resetLocaleRuns U_ICU_ENTRY_POINT_RENAME(pl_resetLocaleRuns)
|
189
|
+
#define pl_resetValueRuns U_ICU_ENTRY_POINT_RENAME(pl_resetValueRuns)
|
190
|
+
#define res_countArrayItems U_ICU_ENTRY_POINT_RENAME(res_countArrayItems)
|
191
|
+
#define res_findResource U_ICU_ENTRY_POINT_RENAME(res_findResource)
|
192
|
+
#define res_getAlias U_ICU_ENTRY_POINT_RENAME(res_getAlias)
|
193
|
+
#define res_getArrayItem U_ICU_ENTRY_POINT_RENAME(res_getArrayItem)
|
194
|
+
#define res_getBinary U_ICU_ENTRY_POINT_RENAME(res_getBinary)
|
195
|
+
#define res_getIntVector U_ICU_ENTRY_POINT_RENAME(res_getIntVector)
|
196
|
+
#define res_getPublicType U_ICU_ENTRY_POINT_RENAME(res_getPublicType)
|
197
|
+
#define res_getResource U_ICU_ENTRY_POINT_RENAME(res_getResource)
|
198
|
+
#define res_getString U_ICU_ENTRY_POINT_RENAME(res_getString)
|
199
|
+
#define res_getTableItemByIndex U_ICU_ENTRY_POINT_RENAME(res_getTableItemByIndex)
|
200
|
+
#define res_getTableItemByKey U_ICU_ENTRY_POINT_RENAME(res_getTableItemByKey)
|
201
|
+
#define res_load U_ICU_ENTRY_POINT_RENAME(res_load)
|
202
|
+
#define res_read U_ICU_ENTRY_POINT_RENAME(res_read)
|
203
|
+
#define res_unload U_ICU_ENTRY_POINT_RENAME(res_unload)
|
204
|
+
#define u_UCharsToChars U_ICU_ENTRY_POINT_RENAME(u_UCharsToChars)
|
205
|
+
#define u_austrcpy U_ICU_ENTRY_POINT_RENAME(u_austrcpy)
|
206
|
+
#define u_austrncpy U_ICU_ENTRY_POINT_RENAME(u_austrncpy)
|
207
|
+
#define u_catclose U_ICU_ENTRY_POINT_RENAME(u_catclose)
|
208
|
+
#define u_catgets U_ICU_ENTRY_POINT_RENAME(u_catgets)
|
209
|
+
#define u_catopen U_ICU_ENTRY_POINT_RENAME(u_catopen)
|
210
|
+
#define u_charAge U_ICU_ENTRY_POINT_RENAME(u_charAge)
|
211
|
+
#define u_charDigitValue U_ICU_ENTRY_POINT_RENAME(u_charDigitValue)
|
212
|
+
#define u_charDirection U_ICU_ENTRY_POINT_RENAME(u_charDirection)
|
213
|
+
#define u_charFromName U_ICU_ENTRY_POINT_RENAME(u_charFromName)
|
214
|
+
#define u_charMirror U_ICU_ENTRY_POINT_RENAME(u_charMirror)
|
215
|
+
#define u_charName U_ICU_ENTRY_POINT_RENAME(u_charName)
|
216
|
+
#define u_charType U_ICU_ENTRY_POINT_RENAME(u_charType)
|
217
|
+
#define u_charsToUChars U_ICU_ENTRY_POINT_RENAME(u_charsToUChars)
|
218
|
+
#define u_cleanup U_ICU_ENTRY_POINT_RENAME(u_cleanup)
|
219
|
+
#define u_countChar32 U_ICU_ENTRY_POINT_RENAME(u_countChar32)
|
220
|
+
#define u_digit U_ICU_ENTRY_POINT_RENAME(u_digit)
|
221
|
+
#define u_enumCharNames U_ICU_ENTRY_POINT_RENAME(u_enumCharNames)
|
222
|
+
#define u_enumCharTypes U_ICU_ENTRY_POINT_RENAME(u_enumCharTypes)
|
223
|
+
#define u_errorName U_ICU_ENTRY_POINT_RENAME(u_errorName)
|
224
|
+
#define u_fadopt U_ICU_ENTRY_POINT_RENAME(u_fadopt)
|
225
|
+
#define u_fclose U_ICU_ENTRY_POINT_RENAME(u_fclose)
|
226
|
+
#define u_feof U_ICU_ENTRY_POINT_RENAME(u_feof)
|
227
|
+
#define u_fflush U_ICU_ENTRY_POINT_RENAME(u_fflush)
|
228
|
+
#define u_fgetConverter U_ICU_ENTRY_POINT_RENAME(u_fgetConverter)
|
229
|
+
#define u_fgetNumberFormat U_ICU_ENTRY_POINT_RENAME(u_fgetNumberFormat)
|
230
|
+
#define u_fgetc U_ICU_ENTRY_POINT_RENAME(u_fgetc)
|
231
|
+
#define u_fgetcodepage U_ICU_ENTRY_POINT_RENAME(u_fgetcodepage)
|
232
|
+
#define u_fgetcx U_ICU_ENTRY_POINT_RENAME(u_fgetcx)
|
233
|
+
#define u_fgetfile U_ICU_ENTRY_POINT_RENAME(u_fgetfile)
|
234
|
+
#define u_fgetlocale U_ICU_ENTRY_POINT_RENAME(u_fgetlocale)
|
235
|
+
#define u_fgets U_ICU_ENTRY_POINT_RENAME(u_fgets)
|
236
|
+
#define u_file_read U_ICU_ENTRY_POINT_RENAME(u_file_read)
|
237
|
+
#define u_file_write U_ICU_ENTRY_POINT_RENAME(u_file_write)
|
238
|
+
#define u_file_write_flush U_ICU_ENTRY_POINT_RENAME(u_file_write_flush)
|
239
|
+
#define u_finit U_ICU_ENTRY_POINT_RENAME(u_finit)
|
240
|
+
#define u_flushDefaultConverter U_ICU_ENTRY_POINT_RENAME(u_flushDefaultConverter)
|
241
|
+
#define u_foldCase U_ICU_ENTRY_POINT_RENAME(u_foldCase)
|
242
|
+
#define u_fopen U_ICU_ENTRY_POINT_RENAME(u_fopen)
|
243
|
+
#define u_fopen_u U_ICU_ENTRY_POINT_RENAME(u_fopen_u)
|
244
|
+
#define u_forDigit U_ICU_ENTRY_POINT_RENAME(u_forDigit)
|
245
|
+
#define u_formatMessage U_ICU_ENTRY_POINT_RENAME(u_formatMessage)
|
246
|
+
#define u_formatMessageWithError U_ICU_ENTRY_POINT_RENAME(u_formatMessageWithError)
|
247
|
+
#define u_fprintf U_ICU_ENTRY_POINT_RENAME(u_fprintf)
|
248
|
+
#define u_fprintf_u U_ICU_ENTRY_POINT_RENAME(u_fprintf_u)
|
249
|
+
#define u_fputc U_ICU_ENTRY_POINT_RENAME(u_fputc)
|
250
|
+
#define u_fputs U_ICU_ENTRY_POINT_RENAME(u_fputs)
|
251
|
+
#define u_frewind U_ICU_ENTRY_POINT_RENAME(u_frewind)
|
252
|
+
#define u_fscanf U_ICU_ENTRY_POINT_RENAME(u_fscanf)
|
253
|
+
#define u_fscanf_u U_ICU_ENTRY_POINT_RENAME(u_fscanf_u)
|
254
|
+
#define u_fsetcodepage U_ICU_ENTRY_POINT_RENAME(u_fsetcodepage)
|
255
|
+
#define u_fsetlocale U_ICU_ENTRY_POINT_RENAME(u_fsetlocale)
|
256
|
+
#define u_fsettransliterator U_ICU_ENTRY_POINT_RENAME(u_fsettransliterator)
|
257
|
+
#define u_fstropen U_ICU_ENTRY_POINT_RENAME(u_fstropen)
|
258
|
+
#define u_fungetc U_ICU_ENTRY_POINT_RENAME(u_fungetc)
|
259
|
+
#define u_getBidiPairedBracket U_ICU_ENTRY_POINT_RENAME(u_getBidiPairedBracket)
|
260
|
+
#define u_getCombiningClass U_ICU_ENTRY_POINT_RENAME(u_getCombiningClass)
|
261
|
+
#define u_getDataDirectory U_ICU_ENTRY_POINT_RENAME(u_getDataDirectory)
|
262
|
+
#define u_getDataVersion U_ICU_ENTRY_POINT_RENAME(u_getDataVersion)
|
263
|
+
#define u_getDefaultConverter U_ICU_ENTRY_POINT_RENAME(u_getDefaultConverter)
|
264
|
+
#define u_getFC_NFKC_Closure U_ICU_ENTRY_POINT_RENAME(u_getFC_NFKC_Closure)
|
265
|
+
#define u_getISOComment U_ICU_ENTRY_POINT_RENAME(u_getISOComment)
|
266
|
+
#define u_getIntPropertyMaxValue U_ICU_ENTRY_POINT_RENAME(u_getIntPropertyMaxValue)
|
267
|
+
#define u_getIntPropertyMinValue U_ICU_ENTRY_POINT_RENAME(u_getIntPropertyMinValue)
|
268
|
+
#define u_getIntPropertyValue U_ICU_ENTRY_POINT_RENAME(u_getIntPropertyValue)
|
269
|
+
#define u_getMainProperties U_ICU_ENTRY_POINT_RENAME(u_getMainProperties)
|
270
|
+
#define u_getNumericValue U_ICU_ENTRY_POINT_RENAME(u_getNumericValue)
|
271
|
+
#define u_getPropertyEnum U_ICU_ENTRY_POINT_RENAME(u_getPropertyEnum)
|
272
|
+
#define u_getPropertyName U_ICU_ENTRY_POINT_RENAME(u_getPropertyName)
|
273
|
+
#define u_getPropertyValueEnum U_ICU_ENTRY_POINT_RENAME(u_getPropertyValueEnum)
|
274
|
+
#define u_getPropertyValueName U_ICU_ENTRY_POINT_RENAME(u_getPropertyValueName)
|
275
|
+
#define u_getTimeZoneFilesDirectory U_ICU_ENTRY_POINT_RENAME(u_getTimeZoneFilesDirectory)
|
276
|
+
#define u_getUnicodeProperties U_ICU_ENTRY_POINT_RENAME(u_getUnicodeProperties)
|
277
|
+
#define u_getUnicodeVersion U_ICU_ENTRY_POINT_RENAME(u_getUnicodeVersion)
|
278
|
+
#define u_getVersion U_ICU_ENTRY_POINT_RENAME(u_getVersion)
|
279
|
+
#define u_get_stdout U_ICU_ENTRY_POINT_RENAME(u_get_stdout)
|
280
|
+
#define u_hasBinaryProperty U_ICU_ENTRY_POINT_RENAME(u_hasBinaryProperty)
|
281
|
+
#define u_init U_ICU_ENTRY_POINT_RENAME(u_init)
|
282
|
+
#define u_isIDIgnorable U_ICU_ENTRY_POINT_RENAME(u_isIDIgnorable)
|
283
|
+
#define u_isIDPart U_ICU_ENTRY_POINT_RENAME(u_isIDPart)
|
284
|
+
#define u_isIDStart U_ICU_ENTRY_POINT_RENAME(u_isIDStart)
|
285
|
+
#define u_isISOControl U_ICU_ENTRY_POINT_RENAME(u_isISOControl)
|
286
|
+
#define u_isJavaIDPart U_ICU_ENTRY_POINT_RENAME(u_isJavaIDPart)
|
287
|
+
#define u_isJavaIDStart U_ICU_ENTRY_POINT_RENAME(u_isJavaIDStart)
|
288
|
+
#define u_isJavaSpaceChar U_ICU_ENTRY_POINT_RENAME(u_isJavaSpaceChar)
|
289
|
+
#define u_isMirrored U_ICU_ENTRY_POINT_RENAME(u_isMirrored)
|
290
|
+
#define u_isUAlphabetic U_ICU_ENTRY_POINT_RENAME(u_isUAlphabetic)
|
291
|
+
#define u_isULowercase U_ICU_ENTRY_POINT_RENAME(u_isULowercase)
|
292
|
+
#define u_isUUppercase U_ICU_ENTRY_POINT_RENAME(u_isUUppercase)
|
293
|
+
#define u_isUWhiteSpace U_ICU_ENTRY_POINT_RENAME(u_isUWhiteSpace)
|
294
|
+
#define u_isWhitespace U_ICU_ENTRY_POINT_RENAME(u_isWhitespace)
|
295
|
+
#define u_isalnum U_ICU_ENTRY_POINT_RENAME(u_isalnum)
|
296
|
+
#define u_isalnumPOSIX U_ICU_ENTRY_POINT_RENAME(u_isalnumPOSIX)
|
297
|
+
#define u_isalpha U_ICU_ENTRY_POINT_RENAME(u_isalpha)
|
298
|
+
#define u_isbase U_ICU_ENTRY_POINT_RENAME(u_isbase)
|
299
|
+
#define u_isblank U_ICU_ENTRY_POINT_RENAME(u_isblank)
|
300
|
+
#define u_iscntrl U_ICU_ENTRY_POINT_RENAME(u_iscntrl)
|
301
|
+
#define u_isdefined U_ICU_ENTRY_POINT_RENAME(u_isdefined)
|
302
|
+
#define u_isdigit U_ICU_ENTRY_POINT_RENAME(u_isdigit)
|
303
|
+
#define u_isgraph U_ICU_ENTRY_POINT_RENAME(u_isgraph)
|
304
|
+
#define u_isgraphPOSIX U_ICU_ENTRY_POINT_RENAME(u_isgraphPOSIX)
|
305
|
+
#define u_islower U_ICU_ENTRY_POINT_RENAME(u_islower)
|
306
|
+
#define u_isprint U_ICU_ENTRY_POINT_RENAME(u_isprint)
|
307
|
+
#define u_isprintPOSIX U_ICU_ENTRY_POINT_RENAME(u_isprintPOSIX)
|
308
|
+
#define u_ispunct U_ICU_ENTRY_POINT_RENAME(u_ispunct)
|
309
|
+
#define u_isspace U_ICU_ENTRY_POINT_RENAME(u_isspace)
|
310
|
+
#define u_istitle U_ICU_ENTRY_POINT_RENAME(u_istitle)
|
311
|
+
#define u_isupper U_ICU_ENTRY_POINT_RENAME(u_isupper)
|
312
|
+
#define u_isxdigit U_ICU_ENTRY_POINT_RENAME(u_isxdigit)
|
313
|
+
#define u_locbund_close U_ICU_ENTRY_POINT_RENAME(u_locbund_close)
|
314
|
+
#define u_locbund_getNumberFormat U_ICU_ENTRY_POINT_RENAME(u_locbund_getNumberFormat)
|
315
|
+
#define u_locbund_init U_ICU_ENTRY_POINT_RENAME(u_locbund_init)
|
316
|
+
#define u_memcasecmp U_ICU_ENTRY_POINT_RENAME(u_memcasecmp)
|
317
|
+
#define u_memchr U_ICU_ENTRY_POINT_RENAME(u_memchr)
|
318
|
+
#define u_memchr32 U_ICU_ENTRY_POINT_RENAME(u_memchr32)
|
319
|
+
#define u_memcmp U_ICU_ENTRY_POINT_RENAME(u_memcmp)
|
320
|
+
#define u_memcmpCodePointOrder U_ICU_ENTRY_POINT_RENAME(u_memcmpCodePointOrder)
|
321
|
+
#define u_memcpy U_ICU_ENTRY_POINT_RENAME(u_memcpy)
|
322
|
+
#define u_memmove U_ICU_ENTRY_POINT_RENAME(u_memmove)
|
323
|
+
#define u_memrchr U_ICU_ENTRY_POINT_RENAME(u_memrchr)
|
324
|
+
#define u_memrchr32 U_ICU_ENTRY_POINT_RENAME(u_memrchr32)
|
325
|
+
#define u_memset U_ICU_ENTRY_POINT_RENAME(u_memset)
|
326
|
+
#define u_parseMessage U_ICU_ENTRY_POINT_RENAME(u_parseMessage)
|
327
|
+
#define u_parseMessageWithError U_ICU_ENTRY_POINT_RENAME(u_parseMessageWithError)
|
328
|
+
#define u_printf U_ICU_ENTRY_POINT_RENAME(u_printf)
|
329
|
+
#define u_printf_parse U_ICU_ENTRY_POINT_RENAME(u_printf_parse)
|
330
|
+
#define u_printf_u U_ICU_ENTRY_POINT_RENAME(u_printf_u)
|
331
|
+
#define u_releaseDefaultConverter U_ICU_ENTRY_POINT_RENAME(u_releaseDefaultConverter)
|
332
|
+
#define u_scanf_parse U_ICU_ENTRY_POINT_RENAME(u_scanf_parse)
|
333
|
+
#define u_setAtomicIncDecFunctions U_ICU_ENTRY_POINT_RENAME(u_setAtomicIncDecFunctions)
|
334
|
+
#define u_setDataDirectory U_ICU_ENTRY_POINT_RENAME(u_setDataDirectory)
|
335
|
+
#define u_setMemoryFunctions U_ICU_ENTRY_POINT_RENAME(u_setMemoryFunctions)
|
336
|
+
#define u_setMutexFunctions U_ICU_ENTRY_POINT_RENAME(u_setMutexFunctions)
|
337
|
+
#define u_setTimeZoneFilesDirectory U_ICU_ENTRY_POINT_RENAME(u_setTimeZoneFilesDirectory)
|
338
|
+
#define u_shapeArabic U_ICU_ENTRY_POINT_RENAME(u_shapeArabic)
|
339
|
+
#define u_snprintf U_ICU_ENTRY_POINT_RENAME(u_snprintf)
|
340
|
+
#define u_snprintf_u U_ICU_ENTRY_POINT_RENAME(u_snprintf_u)
|
341
|
+
#define u_sprintf U_ICU_ENTRY_POINT_RENAME(u_sprintf)
|
342
|
+
#define u_sprintf_u U_ICU_ENTRY_POINT_RENAME(u_sprintf_u)
|
343
|
+
#define u_sscanf U_ICU_ENTRY_POINT_RENAME(u_sscanf)
|
344
|
+
#define u_sscanf_u U_ICU_ENTRY_POINT_RENAME(u_sscanf_u)
|
345
|
+
#define u_strCaseCompare U_ICU_ENTRY_POINT_RENAME(u_strCaseCompare)
|
346
|
+
#define u_strCompare U_ICU_ENTRY_POINT_RENAME(u_strCompare)
|
347
|
+
#define u_strCompareIter U_ICU_ENTRY_POINT_RENAME(u_strCompareIter)
|
348
|
+
#define u_strFindFirst U_ICU_ENTRY_POINT_RENAME(u_strFindFirst)
|
349
|
+
#define u_strFindLast U_ICU_ENTRY_POINT_RENAME(u_strFindLast)
|
350
|
+
#define u_strFoldCase U_ICU_ENTRY_POINT_RENAME(u_strFoldCase)
|
351
|
+
#define u_strFromJavaModifiedUTF8WithSub U_ICU_ENTRY_POINT_RENAME(u_strFromJavaModifiedUTF8WithSub)
|
352
|
+
#define u_strFromPunycode U_ICU_ENTRY_POINT_RENAME(u_strFromPunycode)
|
353
|
+
#define u_strFromUTF32 U_ICU_ENTRY_POINT_RENAME(u_strFromUTF32)
|
354
|
+
#define u_strFromUTF32WithSub U_ICU_ENTRY_POINT_RENAME(u_strFromUTF32WithSub)
|
355
|
+
#define u_strFromUTF8 U_ICU_ENTRY_POINT_RENAME(u_strFromUTF8)
|
356
|
+
#define u_strFromUTF8Lenient U_ICU_ENTRY_POINT_RENAME(u_strFromUTF8Lenient)
|
357
|
+
#define u_strFromUTF8WithSub U_ICU_ENTRY_POINT_RENAME(u_strFromUTF8WithSub)
|
358
|
+
#define u_strFromWCS U_ICU_ENTRY_POINT_RENAME(u_strFromWCS)
|
359
|
+
#define u_strHasMoreChar32Than U_ICU_ENTRY_POINT_RENAME(u_strHasMoreChar32Than)
|
360
|
+
#define u_strToJavaModifiedUTF8 U_ICU_ENTRY_POINT_RENAME(u_strToJavaModifiedUTF8)
|
361
|
+
#define u_strToLower U_ICU_ENTRY_POINT_RENAME(u_strToLower)
|
362
|
+
#define u_strToPunycode U_ICU_ENTRY_POINT_RENAME(u_strToPunycode)
|
363
|
+
#define u_strToTitle U_ICU_ENTRY_POINT_RENAME(u_strToTitle)
|
364
|
+
#define u_strToUTF32 U_ICU_ENTRY_POINT_RENAME(u_strToUTF32)
|
365
|
+
#define u_strToUTF32WithSub U_ICU_ENTRY_POINT_RENAME(u_strToUTF32WithSub)
|
366
|
+
#define u_strToUTF8 U_ICU_ENTRY_POINT_RENAME(u_strToUTF8)
|
367
|
+
#define u_strToUTF8WithSub U_ICU_ENTRY_POINT_RENAME(u_strToUTF8WithSub)
|
368
|
+
#define u_strToUpper U_ICU_ENTRY_POINT_RENAME(u_strToUpper)
|
369
|
+
#define u_strToWCS U_ICU_ENTRY_POINT_RENAME(u_strToWCS)
|
370
|
+
#define u_strcasecmp U_ICU_ENTRY_POINT_RENAME(u_strcasecmp)
|
371
|
+
#define u_strcat U_ICU_ENTRY_POINT_RENAME(u_strcat)
|
372
|
+
#define u_strchr U_ICU_ENTRY_POINT_RENAME(u_strchr)
|
373
|
+
#define u_strchr32 U_ICU_ENTRY_POINT_RENAME(u_strchr32)
|
374
|
+
#define u_strcmp U_ICU_ENTRY_POINT_RENAME(u_strcmp)
|
375
|
+
#define u_strcmpCodePointOrder U_ICU_ENTRY_POINT_RENAME(u_strcmpCodePointOrder)
|
376
|
+
#define u_strcmpFold U_ICU_ENTRY_POINT_RENAME(u_strcmpFold)
|
377
|
+
#define u_strcpy U_ICU_ENTRY_POINT_RENAME(u_strcpy)
|
378
|
+
#define u_strcspn U_ICU_ENTRY_POINT_RENAME(u_strcspn)
|
379
|
+
#define u_strlen U_ICU_ENTRY_POINT_RENAME(u_strlen)
|
380
|
+
#define u_strncasecmp U_ICU_ENTRY_POINT_RENAME(u_strncasecmp)
|
381
|
+
#define u_strncat U_ICU_ENTRY_POINT_RENAME(u_strncat)
|
382
|
+
#define u_strncmp U_ICU_ENTRY_POINT_RENAME(u_strncmp)
|
383
|
+
#define u_strncmpCodePointOrder U_ICU_ENTRY_POINT_RENAME(u_strncmpCodePointOrder)
|
384
|
+
#define u_strncpy U_ICU_ENTRY_POINT_RENAME(u_strncpy)
|
385
|
+
#define u_strpbrk U_ICU_ENTRY_POINT_RENAME(u_strpbrk)
|
386
|
+
#define u_strrchr U_ICU_ENTRY_POINT_RENAME(u_strrchr)
|
387
|
+
#define u_strrchr32 U_ICU_ENTRY_POINT_RENAME(u_strrchr32)
|
388
|
+
#define u_strrstr U_ICU_ENTRY_POINT_RENAME(u_strrstr)
|
389
|
+
#define u_strspn U_ICU_ENTRY_POINT_RENAME(u_strspn)
|
390
|
+
#define u_strstr U_ICU_ENTRY_POINT_RENAME(u_strstr)
|
391
|
+
#define u_strtok_r U_ICU_ENTRY_POINT_RENAME(u_strtok_r)
|
392
|
+
#define u_terminateChars U_ICU_ENTRY_POINT_RENAME(u_terminateChars)
|
393
|
+
#define u_terminateUChar32s U_ICU_ENTRY_POINT_RENAME(u_terminateUChar32s)
|
394
|
+
#define u_terminateUChars U_ICU_ENTRY_POINT_RENAME(u_terminateUChars)
|
395
|
+
#define u_terminateWChars U_ICU_ENTRY_POINT_RENAME(u_terminateWChars)
|
396
|
+
#define u_tolower U_ICU_ENTRY_POINT_RENAME(u_tolower)
|
397
|
+
#define u_totitle U_ICU_ENTRY_POINT_RENAME(u_totitle)
|
398
|
+
#define u_toupper U_ICU_ENTRY_POINT_RENAME(u_toupper)
|
399
|
+
#define u_uastrcpy U_ICU_ENTRY_POINT_RENAME(u_uastrcpy)
|
400
|
+
#define u_uastrncpy U_ICU_ENTRY_POINT_RENAME(u_uastrncpy)
|
401
|
+
#define u_unescape U_ICU_ENTRY_POINT_RENAME(u_unescape)
|
402
|
+
#define u_unescapeAt U_ICU_ENTRY_POINT_RENAME(u_unescapeAt)
|
403
|
+
#define u_versionFromString U_ICU_ENTRY_POINT_RENAME(u_versionFromString)
|
404
|
+
#define u_versionFromUString U_ICU_ENTRY_POINT_RENAME(u_versionFromUString)
|
405
|
+
#define u_versionToString U_ICU_ENTRY_POINT_RENAME(u_versionToString)
|
406
|
+
#define u_vformatMessage U_ICU_ENTRY_POINT_RENAME(u_vformatMessage)
|
407
|
+
#define u_vformatMessageWithError U_ICU_ENTRY_POINT_RENAME(u_vformatMessageWithError)
|
408
|
+
#define u_vfprintf U_ICU_ENTRY_POINT_RENAME(u_vfprintf)
|
409
|
+
#define u_vfprintf_u U_ICU_ENTRY_POINT_RENAME(u_vfprintf_u)
|
410
|
+
#define u_vfscanf U_ICU_ENTRY_POINT_RENAME(u_vfscanf)
|
411
|
+
#define u_vfscanf_u U_ICU_ENTRY_POINT_RENAME(u_vfscanf_u)
|
412
|
+
#define u_vparseMessage U_ICU_ENTRY_POINT_RENAME(u_vparseMessage)
|
413
|
+
#define u_vparseMessageWithError U_ICU_ENTRY_POINT_RENAME(u_vparseMessageWithError)
|
414
|
+
#define u_vsnprintf U_ICU_ENTRY_POINT_RENAME(u_vsnprintf)
|
415
|
+
#define u_vsnprintf_u U_ICU_ENTRY_POINT_RENAME(u_vsnprintf_u)
|
416
|
+
#define u_vsprintf U_ICU_ENTRY_POINT_RENAME(u_vsprintf)
|
417
|
+
#define u_vsprintf_u U_ICU_ENTRY_POINT_RENAME(u_vsprintf_u)
|
418
|
+
#define u_vsscanf U_ICU_ENTRY_POINT_RENAME(u_vsscanf)
|
419
|
+
#define u_vsscanf_u U_ICU_ENTRY_POINT_RENAME(u_vsscanf_u)
|
420
|
+
#define u_writeIdenticalLevelRun U_ICU_ENTRY_POINT_RENAME(u_writeIdenticalLevelRun)
|
421
|
+
#define ubidi_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(ubidi_addPropertyStarts)
|
422
|
+
#define ubidi_close U_ICU_ENTRY_POINT_RENAME(ubidi_close)
|
423
|
+
#define ubidi_countParagraphs U_ICU_ENTRY_POINT_RENAME(ubidi_countParagraphs)
|
424
|
+
#define ubidi_countRuns U_ICU_ENTRY_POINT_RENAME(ubidi_countRuns)
|
425
|
+
#define ubidi_getBaseDirection U_ICU_ENTRY_POINT_RENAME(ubidi_getBaseDirection)
|
426
|
+
#define ubidi_getClass U_ICU_ENTRY_POINT_RENAME(ubidi_getClass)
|
427
|
+
#define ubidi_getClassCallback U_ICU_ENTRY_POINT_RENAME(ubidi_getClassCallback)
|
428
|
+
#define ubidi_getCustomizedClass U_ICU_ENTRY_POINT_RENAME(ubidi_getCustomizedClass)
|
429
|
+
#define ubidi_getDirection U_ICU_ENTRY_POINT_RENAME(ubidi_getDirection)
|
430
|
+
#define ubidi_getJoiningGroup U_ICU_ENTRY_POINT_RENAME(ubidi_getJoiningGroup)
|
431
|
+
#define ubidi_getJoiningType U_ICU_ENTRY_POINT_RENAME(ubidi_getJoiningType)
|
432
|
+
#define ubidi_getLength U_ICU_ENTRY_POINT_RENAME(ubidi_getLength)
|
433
|
+
#define ubidi_getLevelAt U_ICU_ENTRY_POINT_RENAME(ubidi_getLevelAt)
|
434
|
+
#define ubidi_getLevels U_ICU_ENTRY_POINT_RENAME(ubidi_getLevels)
|
435
|
+
#define ubidi_getLogicalIndex U_ICU_ENTRY_POINT_RENAME(ubidi_getLogicalIndex)
|
436
|
+
#define ubidi_getLogicalMap U_ICU_ENTRY_POINT_RENAME(ubidi_getLogicalMap)
|
437
|
+
#define ubidi_getLogicalRun U_ICU_ENTRY_POINT_RENAME(ubidi_getLogicalRun)
|
438
|
+
#define ubidi_getMaxValue U_ICU_ENTRY_POINT_RENAME(ubidi_getMaxValue)
|
439
|
+
#define ubidi_getMemory U_ICU_ENTRY_POINT_RENAME(ubidi_getMemory)
|
440
|
+
#define ubidi_getMirror U_ICU_ENTRY_POINT_RENAME(ubidi_getMirror)
|
441
|
+
#define ubidi_getPairedBracket U_ICU_ENTRY_POINT_RENAME(ubidi_getPairedBracket)
|
442
|
+
#define ubidi_getPairedBracketType U_ICU_ENTRY_POINT_RENAME(ubidi_getPairedBracketType)
|
443
|
+
#define ubidi_getParaLevel U_ICU_ENTRY_POINT_RENAME(ubidi_getParaLevel)
|
444
|
+
#define ubidi_getParaLevelAtIndex U_ICU_ENTRY_POINT_RENAME(ubidi_getParaLevelAtIndex)
|
445
|
+
#define ubidi_getParagraph U_ICU_ENTRY_POINT_RENAME(ubidi_getParagraph)
|
446
|
+
#define ubidi_getParagraphByIndex U_ICU_ENTRY_POINT_RENAME(ubidi_getParagraphByIndex)
|
447
|
+
#define ubidi_getProcessedLength U_ICU_ENTRY_POINT_RENAME(ubidi_getProcessedLength)
|
448
|
+
#define ubidi_getReorderingMode U_ICU_ENTRY_POINT_RENAME(ubidi_getReorderingMode)
|
449
|
+
#define ubidi_getReorderingOptions U_ICU_ENTRY_POINT_RENAME(ubidi_getReorderingOptions)
|
450
|
+
#define ubidi_getResultLength U_ICU_ENTRY_POINT_RENAME(ubidi_getResultLength)
|
451
|
+
#define ubidi_getRuns U_ICU_ENTRY_POINT_RENAME(ubidi_getRuns)
|
452
|
+
#define ubidi_getSingleton U_ICU_ENTRY_POINT_RENAME(ubidi_getSingleton)
|
453
|
+
#define ubidi_getText U_ICU_ENTRY_POINT_RENAME(ubidi_getText)
|
454
|
+
#define ubidi_getVisualIndex U_ICU_ENTRY_POINT_RENAME(ubidi_getVisualIndex)
|
455
|
+
#define ubidi_getVisualMap U_ICU_ENTRY_POINT_RENAME(ubidi_getVisualMap)
|
456
|
+
#define ubidi_getVisualRun U_ICU_ENTRY_POINT_RENAME(ubidi_getVisualRun)
|
457
|
+
#define ubidi_invertMap U_ICU_ENTRY_POINT_RENAME(ubidi_invertMap)
|
458
|
+
#define ubidi_isBidiControl U_ICU_ENTRY_POINT_RENAME(ubidi_isBidiControl)
|
459
|
+
#define ubidi_isInverse U_ICU_ENTRY_POINT_RENAME(ubidi_isInverse)
|
460
|
+
#define ubidi_isJoinControl U_ICU_ENTRY_POINT_RENAME(ubidi_isJoinControl)
|
461
|
+
#define ubidi_isMirrored U_ICU_ENTRY_POINT_RENAME(ubidi_isMirrored)
|
462
|
+
#define ubidi_isOrderParagraphsLTR U_ICU_ENTRY_POINT_RENAME(ubidi_isOrderParagraphsLTR)
|
463
|
+
#define ubidi_open U_ICU_ENTRY_POINT_RENAME(ubidi_open)
|
464
|
+
#define ubidi_openSized U_ICU_ENTRY_POINT_RENAME(ubidi_openSized)
|
465
|
+
#define ubidi_orderParagraphsLTR U_ICU_ENTRY_POINT_RENAME(ubidi_orderParagraphsLTR)
|
466
|
+
#define ubidi_reorderLogical U_ICU_ENTRY_POINT_RENAME(ubidi_reorderLogical)
|
467
|
+
#define ubidi_reorderVisual U_ICU_ENTRY_POINT_RENAME(ubidi_reorderVisual)
|
468
|
+
#define ubidi_setClassCallback U_ICU_ENTRY_POINT_RENAME(ubidi_setClassCallback)
|
469
|
+
#define ubidi_setContext U_ICU_ENTRY_POINT_RENAME(ubidi_setContext)
|
470
|
+
#define ubidi_setInverse U_ICU_ENTRY_POINT_RENAME(ubidi_setInverse)
|
471
|
+
#define ubidi_setLine U_ICU_ENTRY_POINT_RENAME(ubidi_setLine)
|
472
|
+
#define ubidi_setPara U_ICU_ENTRY_POINT_RENAME(ubidi_setPara)
|
473
|
+
#define ubidi_setReorderingMode U_ICU_ENTRY_POINT_RENAME(ubidi_setReorderingMode)
|
474
|
+
#define ubidi_setReorderingOptions U_ICU_ENTRY_POINT_RENAME(ubidi_setReorderingOptions)
|
475
|
+
#define ubidi_writeReordered U_ICU_ENTRY_POINT_RENAME(ubidi_writeReordered)
|
476
|
+
#define ubidi_writeReverse U_ICU_ENTRY_POINT_RENAME(ubidi_writeReverse)
|
477
|
+
#define ublock_getCode U_ICU_ENTRY_POINT_RENAME(ublock_getCode)
|
478
|
+
#define ubrk_close U_ICU_ENTRY_POINT_RENAME(ubrk_close)
|
479
|
+
#define ubrk_countAvailable U_ICU_ENTRY_POINT_RENAME(ubrk_countAvailable)
|
480
|
+
#define ubrk_current U_ICU_ENTRY_POINT_RENAME(ubrk_current)
|
481
|
+
#define ubrk_first U_ICU_ENTRY_POINT_RENAME(ubrk_first)
|
482
|
+
#define ubrk_following U_ICU_ENTRY_POINT_RENAME(ubrk_following)
|
483
|
+
#define ubrk_getAvailable U_ICU_ENTRY_POINT_RENAME(ubrk_getAvailable)
|
484
|
+
#define ubrk_getLocaleByType U_ICU_ENTRY_POINT_RENAME(ubrk_getLocaleByType)
|
485
|
+
#define ubrk_getRuleStatus U_ICU_ENTRY_POINT_RENAME(ubrk_getRuleStatus)
|
486
|
+
#define ubrk_getRuleStatusVec U_ICU_ENTRY_POINT_RENAME(ubrk_getRuleStatusVec)
|
487
|
+
#define ubrk_isBoundary U_ICU_ENTRY_POINT_RENAME(ubrk_isBoundary)
|
488
|
+
#define ubrk_last U_ICU_ENTRY_POINT_RENAME(ubrk_last)
|
489
|
+
#define ubrk_next U_ICU_ENTRY_POINT_RENAME(ubrk_next)
|
490
|
+
#define ubrk_open U_ICU_ENTRY_POINT_RENAME(ubrk_open)
|
491
|
+
#define ubrk_openRules U_ICU_ENTRY_POINT_RENAME(ubrk_openRules)
|
492
|
+
#define ubrk_preceding U_ICU_ENTRY_POINT_RENAME(ubrk_preceding)
|
493
|
+
#define ubrk_previous U_ICU_ENTRY_POINT_RENAME(ubrk_previous)
|
494
|
+
#define ubrk_refreshUText U_ICU_ENTRY_POINT_RENAME(ubrk_refreshUText)
|
495
|
+
#define ubrk_safeClone U_ICU_ENTRY_POINT_RENAME(ubrk_safeClone)
|
496
|
+
#define ubrk_setText U_ICU_ENTRY_POINT_RENAME(ubrk_setText)
|
497
|
+
#define ubrk_setUText U_ICU_ENTRY_POINT_RENAME(ubrk_setUText)
|
498
|
+
#define ubrk_swap U_ICU_ENTRY_POINT_RENAME(ubrk_swap)
|
499
|
+
#define ucache_compareKeys U_ICU_ENTRY_POINT_RENAME(ucache_compareKeys)
|
500
|
+
#define ucache_deleteKey U_ICU_ENTRY_POINT_RENAME(ucache_deleteKey)
|
501
|
+
#define ucache_hashKeys U_ICU_ENTRY_POINT_RENAME(ucache_hashKeys)
|
502
|
+
#define ucal_add U_ICU_ENTRY_POINT_RENAME(ucal_add)
|
503
|
+
#define ucal_clear U_ICU_ENTRY_POINT_RENAME(ucal_clear)
|
504
|
+
#define ucal_clearField U_ICU_ENTRY_POINT_RENAME(ucal_clearField)
|
505
|
+
#define ucal_clone U_ICU_ENTRY_POINT_RENAME(ucal_clone)
|
506
|
+
#define ucal_close U_ICU_ENTRY_POINT_RENAME(ucal_close)
|
507
|
+
#define ucal_countAvailable U_ICU_ENTRY_POINT_RENAME(ucal_countAvailable)
|
508
|
+
#define ucal_equivalentTo U_ICU_ENTRY_POINT_RENAME(ucal_equivalentTo)
|
509
|
+
#define ucal_get U_ICU_ENTRY_POINT_RENAME(ucal_get)
|
510
|
+
#define ucal_getAttribute U_ICU_ENTRY_POINT_RENAME(ucal_getAttribute)
|
511
|
+
#define ucal_getAvailable U_ICU_ENTRY_POINT_RENAME(ucal_getAvailable)
|
512
|
+
#define ucal_getCanonicalTimeZoneID U_ICU_ENTRY_POINT_RENAME(ucal_getCanonicalTimeZoneID)
|
513
|
+
#define ucal_getDSTSavings U_ICU_ENTRY_POINT_RENAME(ucal_getDSTSavings)
|
514
|
+
#define ucal_getDayOfWeekType U_ICU_ENTRY_POINT_RENAME(ucal_getDayOfWeekType)
|
515
|
+
#define ucal_getDefaultTimeZone U_ICU_ENTRY_POINT_RENAME(ucal_getDefaultTimeZone)
|
516
|
+
#define ucal_getFieldDifference U_ICU_ENTRY_POINT_RENAME(ucal_getFieldDifference)
|
517
|
+
#define ucal_getGregorianChange U_ICU_ENTRY_POINT_RENAME(ucal_getGregorianChange)
|
518
|
+
#define ucal_getKeywordValuesForLocale U_ICU_ENTRY_POINT_RENAME(ucal_getKeywordValuesForLocale)
|
519
|
+
#define ucal_getLimit U_ICU_ENTRY_POINT_RENAME(ucal_getLimit)
|
520
|
+
#define ucal_getLocaleByType U_ICU_ENTRY_POINT_RENAME(ucal_getLocaleByType)
|
521
|
+
#define ucal_getMillis U_ICU_ENTRY_POINT_RENAME(ucal_getMillis)
|
522
|
+
#define ucal_getNow U_ICU_ENTRY_POINT_RENAME(ucal_getNow)
|
523
|
+
#define ucal_getTZDataVersion U_ICU_ENTRY_POINT_RENAME(ucal_getTZDataVersion)
|
524
|
+
#define ucal_getTimeZoneDisplayName U_ICU_ENTRY_POINT_RENAME(ucal_getTimeZoneDisplayName)
|
525
|
+
#define ucal_getTimeZoneID U_ICU_ENTRY_POINT_RENAME(ucal_getTimeZoneID)
|
526
|
+
#define ucal_getTimeZoneIDForWindowsID U_ICU_ENTRY_POINT_RENAME(ucal_getTimeZoneIDForWindowsID)
|
527
|
+
#define ucal_getTimeZoneTransitionDate U_ICU_ENTRY_POINT_RENAME(ucal_getTimeZoneTransitionDate)
|
528
|
+
#define ucal_getType U_ICU_ENTRY_POINT_RENAME(ucal_getType)
|
529
|
+
#define ucal_getWeekendTransition U_ICU_ENTRY_POINT_RENAME(ucal_getWeekendTransition)
|
530
|
+
#define ucal_getWindowsTimeZoneID U_ICU_ENTRY_POINT_RENAME(ucal_getWindowsTimeZoneID)
|
531
|
+
#define ucal_inDaylightTime U_ICU_ENTRY_POINT_RENAME(ucal_inDaylightTime)
|
532
|
+
#define ucal_isSet U_ICU_ENTRY_POINT_RENAME(ucal_isSet)
|
533
|
+
#define ucal_isWeekend U_ICU_ENTRY_POINT_RENAME(ucal_isWeekend)
|
534
|
+
#define ucal_open U_ICU_ENTRY_POINT_RENAME(ucal_open)
|
535
|
+
#define ucal_openCountryTimeZones U_ICU_ENTRY_POINT_RENAME(ucal_openCountryTimeZones)
|
536
|
+
#define ucal_openTimeZoneIDEnumeration U_ICU_ENTRY_POINT_RENAME(ucal_openTimeZoneIDEnumeration)
|
537
|
+
#define ucal_openTimeZones U_ICU_ENTRY_POINT_RENAME(ucal_openTimeZones)
|
538
|
+
#define ucal_roll U_ICU_ENTRY_POINT_RENAME(ucal_roll)
|
539
|
+
#define ucal_set U_ICU_ENTRY_POINT_RENAME(ucal_set)
|
540
|
+
#define ucal_setAttribute U_ICU_ENTRY_POINT_RENAME(ucal_setAttribute)
|
541
|
+
#define ucal_setDate U_ICU_ENTRY_POINT_RENAME(ucal_setDate)
|
542
|
+
#define ucal_setDateTime U_ICU_ENTRY_POINT_RENAME(ucal_setDateTime)
|
543
|
+
#define ucal_setDefaultTimeZone U_ICU_ENTRY_POINT_RENAME(ucal_setDefaultTimeZone)
|
544
|
+
#define ucal_setGregorianChange U_ICU_ENTRY_POINT_RENAME(ucal_setGregorianChange)
|
545
|
+
#define ucal_setMillis U_ICU_ENTRY_POINT_RENAME(ucal_setMillis)
|
546
|
+
#define ucal_setTimeZone U_ICU_ENTRY_POINT_RENAME(ucal_setTimeZone)
|
547
|
+
#define ucase_addCaseClosure U_ICU_ENTRY_POINT_RENAME(ucase_addCaseClosure)
|
548
|
+
#define ucase_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(ucase_addPropertyStarts)
|
549
|
+
#define ucase_addStringCaseClosure U_ICU_ENTRY_POINT_RENAME(ucase_addStringCaseClosure)
|
550
|
+
#define ucase_fold U_ICU_ENTRY_POINT_RENAME(ucase_fold)
|
551
|
+
#define ucase_getCaseLocale U_ICU_ENTRY_POINT_RENAME(ucase_getCaseLocale)
|
552
|
+
#define ucase_getSingleton U_ICU_ENTRY_POINT_RENAME(ucase_getSingleton)
|
553
|
+
#define ucase_getType U_ICU_ENTRY_POINT_RENAME(ucase_getType)
|
554
|
+
#define ucase_getTypeOrIgnorable U_ICU_ENTRY_POINT_RENAME(ucase_getTypeOrIgnorable)
|
555
|
+
#define ucase_hasBinaryProperty U_ICU_ENTRY_POINT_RENAME(ucase_hasBinaryProperty)
|
556
|
+
#define ucase_isCaseSensitive U_ICU_ENTRY_POINT_RENAME(ucase_isCaseSensitive)
|
557
|
+
#define ucase_isSoftDotted U_ICU_ENTRY_POINT_RENAME(ucase_isSoftDotted)
|
558
|
+
#define ucase_toFullFolding U_ICU_ENTRY_POINT_RENAME(ucase_toFullFolding)
|
559
|
+
#define ucase_toFullLower U_ICU_ENTRY_POINT_RENAME(ucase_toFullLower)
|
560
|
+
#define ucase_toFullTitle U_ICU_ENTRY_POINT_RENAME(ucase_toFullTitle)
|
561
|
+
#define ucase_toFullUpper U_ICU_ENTRY_POINT_RENAME(ucase_toFullUpper)
|
562
|
+
#define ucase_tolower U_ICU_ENTRY_POINT_RENAME(ucase_tolower)
|
563
|
+
#define ucase_totitle U_ICU_ENTRY_POINT_RENAME(ucase_totitle)
|
564
|
+
#define ucase_toupper U_ICU_ENTRY_POINT_RENAME(ucase_toupper)
|
565
|
+
#define ucasemap_close U_ICU_ENTRY_POINT_RENAME(ucasemap_close)
|
566
|
+
#define ucasemap_getBreakIterator U_ICU_ENTRY_POINT_RENAME(ucasemap_getBreakIterator)
|
567
|
+
#define ucasemap_getLocale U_ICU_ENTRY_POINT_RENAME(ucasemap_getLocale)
|
568
|
+
#define ucasemap_getOptions U_ICU_ENTRY_POINT_RENAME(ucasemap_getOptions)
|
569
|
+
#define ucasemap_internalUTF8ToTitle U_ICU_ENTRY_POINT_RENAME(ucasemap_internalUTF8ToTitle)
|
570
|
+
#define ucasemap_mapUTF8 U_ICU_ENTRY_POINT_RENAME(ucasemap_mapUTF8)
|
571
|
+
#define ucasemap_open U_ICU_ENTRY_POINT_RENAME(ucasemap_open)
|
572
|
+
#define ucasemap_setBreakIterator U_ICU_ENTRY_POINT_RENAME(ucasemap_setBreakIterator)
|
573
|
+
#define ucasemap_setLocale U_ICU_ENTRY_POINT_RENAME(ucasemap_setLocale)
|
574
|
+
#define ucasemap_setOptions U_ICU_ENTRY_POINT_RENAME(ucasemap_setOptions)
|
575
|
+
#define ucasemap_toTitle U_ICU_ENTRY_POINT_RENAME(ucasemap_toTitle)
|
576
|
+
#define ucasemap_utf8FoldCase U_ICU_ENTRY_POINT_RENAME(ucasemap_utf8FoldCase)
|
577
|
+
#define ucasemap_utf8ToLower U_ICU_ENTRY_POINT_RENAME(ucasemap_utf8ToLower)
|
578
|
+
#define ucasemap_utf8ToTitle U_ICU_ENTRY_POINT_RENAME(ucasemap_utf8ToTitle)
|
579
|
+
#define ucasemap_utf8ToUpper U_ICU_ENTRY_POINT_RENAME(ucasemap_utf8ToUpper)
|
580
|
+
#define uchar_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(uchar_addPropertyStarts)
|
581
|
+
#define uchar_swapNames U_ICU_ENTRY_POINT_RENAME(uchar_swapNames)
|
582
|
+
#define ucln_cleanupOne U_ICU_ENTRY_POINT_RENAME(ucln_cleanupOne)
|
583
|
+
#define ucln_common_registerCleanup U_ICU_ENTRY_POINT_RENAME(ucln_common_registerCleanup)
|
584
|
+
#define ucln_i18n_registerCleanup U_ICU_ENTRY_POINT_RENAME(ucln_i18n_registerCleanup)
|
585
|
+
#define ucln_io_registerCleanup U_ICU_ENTRY_POINT_RENAME(ucln_io_registerCleanup)
|
586
|
+
#define ucln_lib_cleanup U_ICU_ENTRY_POINT_RENAME(ucln_lib_cleanup)
|
587
|
+
#define ucln_registerCleanup U_ICU_ENTRY_POINT_RENAME(ucln_registerCleanup)
|
588
|
+
#define ucnv_MBCSFromUChar32 U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSFromUChar32)
|
589
|
+
#define ucnv_MBCSFromUnicodeWithOffsets U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSFromUnicodeWithOffsets)
|
590
|
+
#define ucnv_MBCSGetFilteredUnicodeSetForUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSGetFilteredUnicodeSetForUnicode)
|
591
|
+
#define ucnv_MBCSGetType U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSGetType)
|
592
|
+
#define ucnv_MBCSGetUnicodeSetForUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSGetUnicodeSetForUnicode)
|
593
|
+
#define ucnv_MBCSIsLeadByte U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSIsLeadByte)
|
594
|
+
#define ucnv_MBCSSimpleGetNextUChar U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSSimpleGetNextUChar)
|
595
|
+
#define ucnv_MBCSToUnicodeWithOffsets U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSToUnicodeWithOffsets)
|
596
|
+
#define ucnv_bld_countAvailableConverters U_ICU_ENTRY_POINT_RENAME(ucnv_bld_countAvailableConverters)
|
597
|
+
#define ucnv_bld_getAvailableConverter U_ICU_ENTRY_POINT_RENAME(ucnv_bld_getAvailableConverter)
|
598
|
+
#define ucnv_canCreateConverter U_ICU_ENTRY_POINT_RENAME(ucnv_canCreateConverter)
|
599
|
+
#define ucnv_cbFromUWriteBytes U_ICU_ENTRY_POINT_RENAME(ucnv_cbFromUWriteBytes)
|
600
|
+
#define ucnv_cbFromUWriteSub U_ICU_ENTRY_POINT_RENAME(ucnv_cbFromUWriteSub)
|
601
|
+
#define ucnv_cbFromUWriteUChars U_ICU_ENTRY_POINT_RENAME(ucnv_cbFromUWriteUChars)
|
602
|
+
#define ucnv_cbToUWriteSub U_ICU_ENTRY_POINT_RENAME(ucnv_cbToUWriteSub)
|
603
|
+
#define ucnv_cbToUWriteUChars U_ICU_ENTRY_POINT_RENAME(ucnv_cbToUWriteUChars)
|
604
|
+
#define ucnv_close U_ICU_ENTRY_POINT_RENAME(ucnv_close)
|
605
|
+
#define ucnv_compareNames U_ICU_ENTRY_POINT_RENAME(ucnv_compareNames)
|
606
|
+
#define ucnv_convert U_ICU_ENTRY_POINT_RENAME(ucnv_convert)
|
607
|
+
#define ucnv_convertEx U_ICU_ENTRY_POINT_RENAME(ucnv_convertEx)
|
608
|
+
#define ucnv_countAliases U_ICU_ENTRY_POINT_RENAME(ucnv_countAliases)
|
609
|
+
#define ucnv_countAvailable U_ICU_ENTRY_POINT_RENAME(ucnv_countAvailable)
|
610
|
+
#define ucnv_countStandards U_ICU_ENTRY_POINT_RENAME(ucnv_countStandards)
|
611
|
+
#define ucnv_createAlgorithmicConverter U_ICU_ENTRY_POINT_RENAME(ucnv_createAlgorithmicConverter)
|
612
|
+
#define ucnv_createConverter U_ICU_ENTRY_POINT_RENAME(ucnv_createConverter)
|
613
|
+
#define ucnv_createConverterFromPackage U_ICU_ENTRY_POINT_RENAME(ucnv_createConverterFromPackage)
|
614
|
+
#define ucnv_createConverterFromSharedData U_ICU_ENTRY_POINT_RENAME(ucnv_createConverterFromSharedData)
|
615
|
+
#define ucnv_detectUnicodeSignature U_ICU_ENTRY_POINT_RENAME(ucnv_detectUnicodeSignature)
|
616
|
+
#define ucnv_extContinueMatchFromU U_ICU_ENTRY_POINT_RENAME(ucnv_extContinueMatchFromU)
|
617
|
+
#define ucnv_extContinueMatchToU U_ICU_ENTRY_POINT_RENAME(ucnv_extContinueMatchToU)
|
618
|
+
#define ucnv_extGetUnicodeSet U_ICU_ENTRY_POINT_RENAME(ucnv_extGetUnicodeSet)
|
619
|
+
#define ucnv_extInitialMatchFromU U_ICU_ENTRY_POINT_RENAME(ucnv_extInitialMatchFromU)
|
620
|
+
#define ucnv_extInitialMatchToU U_ICU_ENTRY_POINT_RENAME(ucnv_extInitialMatchToU)
|
621
|
+
#define ucnv_extSimpleMatchFromU U_ICU_ENTRY_POINT_RENAME(ucnv_extSimpleMatchFromU)
|
622
|
+
#define ucnv_extSimpleMatchToU U_ICU_ENTRY_POINT_RENAME(ucnv_extSimpleMatchToU)
|
623
|
+
#define ucnv_fixFileSeparator U_ICU_ENTRY_POINT_RENAME(ucnv_fixFileSeparator)
|
624
|
+
#define ucnv_flushCache U_ICU_ENTRY_POINT_RENAME(ucnv_flushCache)
|
625
|
+
#define ucnv_fromAlgorithmic U_ICU_ENTRY_POINT_RENAME(ucnv_fromAlgorithmic)
|
626
|
+
#define ucnv_fromUChars U_ICU_ENTRY_POINT_RENAME(ucnv_fromUChars)
|
627
|
+
#define ucnv_fromUCountPending U_ICU_ENTRY_POINT_RENAME(ucnv_fromUCountPending)
|
628
|
+
#define ucnv_fromUWriteBytes U_ICU_ENTRY_POINT_RENAME(ucnv_fromUWriteBytes)
|
629
|
+
#define ucnv_fromUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_fromUnicode)
|
630
|
+
#define ucnv_fromUnicode_UTF8 U_ICU_ENTRY_POINT_RENAME(ucnv_fromUnicode_UTF8)
|
631
|
+
#define ucnv_fromUnicode_UTF8_OFFSETS_LOGIC U_ICU_ENTRY_POINT_RENAME(ucnv_fromUnicode_UTF8_OFFSETS_LOGIC)
|
632
|
+
#define ucnv_getAlias U_ICU_ENTRY_POINT_RENAME(ucnv_getAlias)
|
633
|
+
#define ucnv_getAliases U_ICU_ENTRY_POINT_RENAME(ucnv_getAliases)
|
634
|
+
#define ucnv_getAvailableName U_ICU_ENTRY_POINT_RENAME(ucnv_getAvailableName)
|
635
|
+
#define ucnv_getCCSID U_ICU_ENTRY_POINT_RENAME(ucnv_getCCSID)
|
636
|
+
#define ucnv_getCanonicalName U_ICU_ENTRY_POINT_RENAME(ucnv_getCanonicalName)
|
637
|
+
#define ucnv_getCompleteUnicodeSet U_ICU_ENTRY_POINT_RENAME(ucnv_getCompleteUnicodeSet)
|
638
|
+
#define ucnv_getDefaultName U_ICU_ENTRY_POINT_RENAME(ucnv_getDefaultName)
|
639
|
+
#define ucnv_getDisplayName U_ICU_ENTRY_POINT_RENAME(ucnv_getDisplayName)
|
640
|
+
#define ucnv_getFromUCallBack U_ICU_ENTRY_POINT_RENAME(ucnv_getFromUCallBack)
|
641
|
+
#define ucnv_getInvalidChars U_ICU_ENTRY_POINT_RENAME(ucnv_getInvalidChars)
|
642
|
+
#define ucnv_getInvalidUChars U_ICU_ENTRY_POINT_RENAME(ucnv_getInvalidUChars)
|
643
|
+
#define ucnv_getMaxCharSize U_ICU_ENTRY_POINT_RENAME(ucnv_getMaxCharSize)
|
644
|
+
#define ucnv_getMinCharSize U_ICU_ENTRY_POINT_RENAME(ucnv_getMinCharSize)
|
645
|
+
#define ucnv_getName U_ICU_ENTRY_POINT_RENAME(ucnv_getName)
|
646
|
+
#define ucnv_getNextUChar U_ICU_ENTRY_POINT_RENAME(ucnv_getNextUChar)
|
647
|
+
#define ucnv_getNonSurrogateUnicodeSet U_ICU_ENTRY_POINT_RENAME(ucnv_getNonSurrogateUnicodeSet)
|
648
|
+
#define ucnv_getPlatform U_ICU_ENTRY_POINT_RENAME(ucnv_getPlatform)
|
649
|
+
#define ucnv_getStandard U_ICU_ENTRY_POINT_RENAME(ucnv_getStandard)
|
650
|
+
#define ucnv_getStandardName U_ICU_ENTRY_POINT_RENAME(ucnv_getStandardName)
|
651
|
+
#define ucnv_getStarters U_ICU_ENTRY_POINT_RENAME(ucnv_getStarters)
|
652
|
+
#define ucnv_getSubstChars U_ICU_ENTRY_POINT_RENAME(ucnv_getSubstChars)
|
653
|
+
#define ucnv_getToUCallBack U_ICU_ENTRY_POINT_RENAME(ucnv_getToUCallBack)
|
654
|
+
#define ucnv_getType U_ICU_ENTRY_POINT_RENAME(ucnv_getType)
|
655
|
+
#define ucnv_getUnicodeSet U_ICU_ENTRY_POINT_RENAME(ucnv_getUnicodeSet)
|
656
|
+
#define ucnv_incrementRefCount U_ICU_ENTRY_POINT_RENAME(ucnv_incrementRefCount)
|
657
|
+
#define ucnv_io_countKnownConverters U_ICU_ENTRY_POINT_RENAME(ucnv_io_countKnownConverters)
|
658
|
+
#define ucnv_io_getConverterName U_ICU_ENTRY_POINT_RENAME(ucnv_io_getConverterName)
|
659
|
+
#define ucnv_io_stripASCIIForCompare U_ICU_ENTRY_POINT_RENAME(ucnv_io_stripASCIIForCompare)
|
660
|
+
#define ucnv_io_stripEBCDICForCompare U_ICU_ENTRY_POINT_RENAME(ucnv_io_stripEBCDICForCompare)
|
661
|
+
#define ucnv_isAmbiguous U_ICU_ENTRY_POINT_RENAME(ucnv_isAmbiguous)
|
662
|
+
#define ucnv_isFixedWidth U_ICU_ENTRY_POINT_RENAME(ucnv_isFixedWidth)
|
663
|
+
#define ucnv_load U_ICU_ENTRY_POINT_RENAME(ucnv_load)
|
664
|
+
#define ucnv_loadSharedData U_ICU_ENTRY_POINT_RENAME(ucnv_loadSharedData)
|
665
|
+
#define ucnv_open U_ICU_ENTRY_POINT_RENAME(ucnv_open)
|
666
|
+
#define ucnv_openAllNames U_ICU_ENTRY_POINT_RENAME(ucnv_openAllNames)
|
667
|
+
#define ucnv_openCCSID U_ICU_ENTRY_POINT_RENAME(ucnv_openCCSID)
|
668
|
+
#define ucnv_openPackage U_ICU_ENTRY_POINT_RENAME(ucnv_openPackage)
|
669
|
+
#define ucnv_openStandardNames U_ICU_ENTRY_POINT_RENAME(ucnv_openStandardNames)
|
670
|
+
#define ucnv_openU U_ICU_ENTRY_POINT_RENAME(ucnv_openU)
|
671
|
+
#define ucnv_reset U_ICU_ENTRY_POINT_RENAME(ucnv_reset)
|
672
|
+
#define ucnv_resetFromUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_resetFromUnicode)
|
673
|
+
#define ucnv_resetToUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_resetToUnicode)
|
674
|
+
#define ucnv_safeClone U_ICU_ENTRY_POINT_RENAME(ucnv_safeClone)
|
675
|
+
#define ucnv_setDefaultName U_ICU_ENTRY_POINT_RENAME(ucnv_setDefaultName)
|
676
|
+
#define ucnv_setFallback U_ICU_ENTRY_POINT_RENAME(ucnv_setFallback)
|
677
|
+
#define ucnv_setFromUCallBack U_ICU_ENTRY_POINT_RENAME(ucnv_setFromUCallBack)
|
678
|
+
#define ucnv_setSubstChars U_ICU_ENTRY_POINT_RENAME(ucnv_setSubstChars)
|
679
|
+
#define ucnv_setSubstString U_ICU_ENTRY_POINT_RENAME(ucnv_setSubstString)
|
680
|
+
#define ucnv_setToUCallBack U_ICU_ENTRY_POINT_RENAME(ucnv_setToUCallBack)
|
681
|
+
#define ucnv_swap U_ICU_ENTRY_POINT_RENAME(ucnv_swap)
|
682
|
+
#define ucnv_swapAliases U_ICU_ENTRY_POINT_RENAME(ucnv_swapAliases)
|
683
|
+
#define ucnv_toAlgorithmic U_ICU_ENTRY_POINT_RENAME(ucnv_toAlgorithmic)
|
684
|
+
#define ucnv_toUChars U_ICU_ENTRY_POINT_RENAME(ucnv_toUChars)
|
685
|
+
#define ucnv_toUCountPending U_ICU_ENTRY_POINT_RENAME(ucnv_toUCountPending)
|
686
|
+
#define ucnv_toUWriteCodePoint U_ICU_ENTRY_POINT_RENAME(ucnv_toUWriteCodePoint)
|
687
|
+
#define ucnv_toUWriteUChars U_ICU_ENTRY_POINT_RENAME(ucnv_toUWriteUChars)
|
688
|
+
#define ucnv_toUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_toUnicode)
|
689
|
+
#define ucnv_unload U_ICU_ENTRY_POINT_RENAME(ucnv_unload)
|
690
|
+
#define ucnv_unloadSharedDataIfReady U_ICU_ENTRY_POINT_RENAME(ucnv_unloadSharedDataIfReady)
|
691
|
+
#define ucnv_usesFallback U_ICU_ENTRY_POINT_RENAME(ucnv_usesFallback)
|
692
|
+
#define ucnvsel_close U_ICU_ENTRY_POINT_RENAME(ucnvsel_close)
|
693
|
+
#define ucnvsel_open U_ICU_ENTRY_POINT_RENAME(ucnvsel_open)
|
694
|
+
#define ucnvsel_openFromSerialized U_ICU_ENTRY_POINT_RENAME(ucnvsel_openFromSerialized)
|
695
|
+
#define ucnvsel_selectForString U_ICU_ENTRY_POINT_RENAME(ucnvsel_selectForString)
|
696
|
+
#define ucnvsel_selectForUTF8 U_ICU_ENTRY_POINT_RENAME(ucnvsel_selectForUTF8)
|
697
|
+
#define ucnvsel_serialize U_ICU_ENTRY_POINT_RENAME(ucnvsel_serialize)
|
698
|
+
#define ucol_cloneBinary U_ICU_ENTRY_POINT_RENAME(ucol_cloneBinary)
|
699
|
+
#define ucol_close U_ICU_ENTRY_POINT_RENAME(ucol_close)
|
700
|
+
#define ucol_closeElements U_ICU_ENTRY_POINT_RENAME(ucol_closeElements)
|
701
|
+
#define ucol_countAvailable U_ICU_ENTRY_POINT_RENAME(ucol_countAvailable)
|
702
|
+
#define ucol_equal U_ICU_ENTRY_POINT_RENAME(ucol_equal)
|
703
|
+
#define ucol_equals U_ICU_ENTRY_POINT_RENAME(ucol_equals)
|
704
|
+
#define ucol_getAttribute U_ICU_ENTRY_POINT_RENAME(ucol_getAttribute)
|
705
|
+
#define ucol_getAvailable U_ICU_ENTRY_POINT_RENAME(ucol_getAvailable)
|
706
|
+
#define ucol_getBound U_ICU_ENTRY_POINT_RENAME(ucol_getBound)
|
707
|
+
#define ucol_getContractions U_ICU_ENTRY_POINT_RENAME(ucol_getContractions)
|
708
|
+
#define ucol_getContractionsAndExpansions U_ICU_ENTRY_POINT_RENAME(ucol_getContractionsAndExpansions)
|
709
|
+
#define ucol_getDisplayName U_ICU_ENTRY_POINT_RENAME(ucol_getDisplayName)
|
710
|
+
#define ucol_getEquivalentReorderCodes U_ICU_ENTRY_POINT_RENAME(ucol_getEquivalentReorderCodes)
|
711
|
+
#define ucol_getFunctionalEquivalent U_ICU_ENTRY_POINT_RENAME(ucol_getFunctionalEquivalent)
|
712
|
+
#define ucol_getKeywordValues U_ICU_ENTRY_POINT_RENAME(ucol_getKeywordValues)
|
713
|
+
#define ucol_getKeywordValuesForLocale U_ICU_ENTRY_POINT_RENAME(ucol_getKeywordValuesForLocale)
|
714
|
+
#define ucol_getKeywords U_ICU_ENTRY_POINT_RENAME(ucol_getKeywords)
|
715
|
+
#define ucol_getLocale U_ICU_ENTRY_POINT_RENAME(ucol_getLocale)
|
716
|
+
#define ucol_getLocaleByType U_ICU_ENTRY_POINT_RENAME(ucol_getLocaleByType)
|
717
|
+
#define ucol_getMaxExpansion U_ICU_ENTRY_POINT_RENAME(ucol_getMaxExpansion)
|
718
|
+
#define ucol_getMaxVariable U_ICU_ENTRY_POINT_RENAME(ucol_getMaxVariable)
|
719
|
+
#define ucol_getOffset U_ICU_ENTRY_POINT_RENAME(ucol_getOffset)
|
720
|
+
#define ucol_getReorderCodes U_ICU_ENTRY_POINT_RENAME(ucol_getReorderCodes)
|
721
|
+
#define ucol_getRules U_ICU_ENTRY_POINT_RENAME(ucol_getRules)
|
722
|
+
#define ucol_getRulesEx U_ICU_ENTRY_POINT_RENAME(ucol_getRulesEx)
|
723
|
+
#define ucol_getShortDefinitionString U_ICU_ENTRY_POINT_RENAME(ucol_getShortDefinitionString)
|
724
|
+
#define ucol_getSortKey U_ICU_ENTRY_POINT_RENAME(ucol_getSortKey)
|
725
|
+
#define ucol_getStrength U_ICU_ENTRY_POINT_RENAME(ucol_getStrength)
|
726
|
+
#define ucol_getTailoredSet U_ICU_ENTRY_POINT_RENAME(ucol_getTailoredSet)
|
727
|
+
#define ucol_getUCAVersion U_ICU_ENTRY_POINT_RENAME(ucol_getUCAVersion)
|
728
|
+
#define ucol_getUnsafeSet U_ICU_ENTRY_POINT_RENAME(ucol_getUnsafeSet)
|
729
|
+
#define ucol_getVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_getVariableTop)
|
730
|
+
#define ucol_getVersion U_ICU_ENTRY_POINT_RENAME(ucol_getVersion)
|
731
|
+
#define ucol_greater U_ICU_ENTRY_POINT_RENAME(ucol_greater)
|
732
|
+
#define ucol_greaterOrEqual U_ICU_ENTRY_POINT_RENAME(ucol_greaterOrEqual)
|
733
|
+
#define ucol_keyHashCode U_ICU_ENTRY_POINT_RENAME(ucol_keyHashCode)
|
734
|
+
#define ucol_looksLikeCollationBinary U_ICU_ENTRY_POINT_RENAME(ucol_looksLikeCollationBinary)
|
735
|
+
#define ucol_mergeSortkeys U_ICU_ENTRY_POINT_RENAME(ucol_mergeSortkeys)
|
736
|
+
#define ucol_next U_ICU_ENTRY_POINT_RENAME(ucol_next)
|
737
|
+
#define ucol_nextSortKeyPart U_ICU_ENTRY_POINT_RENAME(ucol_nextSortKeyPart)
|
738
|
+
#define ucol_normalizeShortDefinitionString U_ICU_ENTRY_POINT_RENAME(ucol_normalizeShortDefinitionString)
|
739
|
+
#define ucol_open U_ICU_ENTRY_POINT_RENAME(ucol_open)
|
740
|
+
#define ucol_openAvailableLocales U_ICU_ENTRY_POINT_RENAME(ucol_openAvailableLocales)
|
741
|
+
#define ucol_openBinary U_ICU_ENTRY_POINT_RENAME(ucol_openBinary)
|
742
|
+
#define ucol_openElements U_ICU_ENTRY_POINT_RENAME(ucol_openElements)
|
743
|
+
#define ucol_openFromShortString U_ICU_ENTRY_POINT_RENAME(ucol_openFromShortString)
|
744
|
+
#define ucol_openRules U_ICU_ENTRY_POINT_RENAME(ucol_openRules)
|
745
|
+
#define ucol_prepareShortStringOpen U_ICU_ENTRY_POINT_RENAME(ucol_prepareShortStringOpen)
|
746
|
+
#define ucol_previous U_ICU_ENTRY_POINT_RENAME(ucol_previous)
|
747
|
+
#define ucol_primaryOrder U_ICU_ENTRY_POINT_RENAME(ucol_primaryOrder)
|
748
|
+
#define ucol_reset U_ICU_ENTRY_POINT_RENAME(ucol_reset)
|
749
|
+
#define ucol_restoreVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_restoreVariableTop)
|
750
|
+
#define ucol_safeClone U_ICU_ENTRY_POINT_RENAME(ucol_safeClone)
|
751
|
+
#define ucol_secondaryOrder U_ICU_ENTRY_POINT_RENAME(ucol_secondaryOrder)
|
752
|
+
#define ucol_setAttribute U_ICU_ENTRY_POINT_RENAME(ucol_setAttribute)
|
753
|
+
#define ucol_setMaxVariable U_ICU_ENTRY_POINT_RENAME(ucol_setMaxVariable)
|
754
|
+
#define ucol_setOffset U_ICU_ENTRY_POINT_RENAME(ucol_setOffset)
|
755
|
+
#define ucol_setReorderCodes U_ICU_ENTRY_POINT_RENAME(ucol_setReorderCodes)
|
756
|
+
#define ucol_setStrength U_ICU_ENTRY_POINT_RENAME(ucol_setStrength)
|
757
|
+
#define ucol_setText U_ICU_ENTRY_POINT_RENAME(ucol_setText)
|
758
|
+
#define ucol_setVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_setVariableTop)
|
759
|
+
#define ucol_strcoll U_ICU_ENTRY_POINT_RENAME(ucol_strcoll)
|
760
|
+
#define ucol_strcollIter U_ICU_ENTRY_POINT_RENAME(ucol_strcollIter)
|
761
|
+
#define ucol_strcollUTF8 U_ICU_ENTRY_POINT_RENAME(ucol_strcollUTF8)
|
762
|
+
#define ucol_swap U_ICU_ENTRY_POINT_RENAME(ucol_swap)
|
763
|
+
#define ucol_swapInverseUCA U_ICU_ENTRY_POINT_RENAME(ucol_swapInverseUCA)
|
764
|
+
#define ucol_tertiaryOrder U_ICU_ENTRY_POINT_RENAME(ucol_tertiaryOrder)
|
765
|
+
#define ucsdet_close U_ICU_ENTRY_POINT_RENAME(ucsdet_close)
|
766
|
+
#define ucsdet_detect U_ICU_ENTRY_POINT_RENAME(ucsdet_detect)
|
767
|
+
#define ucsdet_detectAll U_ICU_ENTRY_POINT_RENAME(ucsdet_detectAll)
|
768
|
+
#define ucsdet_enableInputFilter U_ICU_ENTRY_POINT_RENAME(ucsdet_enableInputFilter)
|
769
|
+
#define ucsdet_getAllDetectableCharsets U_ICU_ENTRY_POINT_RENAME(ucsdet_getAllDetectableCharsets)
|
770
|
+
#define ucsdet_getConfidence U_ICU_ENTRY_POINT_RENAME(ucsdet_getConfidence)
|
771
|
+
#define ucsdet_getDetectableCharsets U_ICU_ENTRY_POINT_RENAME(ucsdet_getDetectableCharsets)
|
772
|
+
#define ucsdet_getLanguage U_ICU_ENTRY_POINT_RENAME(ucsdet_getLanguage)
|
773
|
+
#define ucsdet_getName U_ICU_ENTRY_POINT_RENAME(ucsdet_getName)
|
774
|
+
#define ucsdet_getUChars U_ICU_ENTRY_POINT_RENAME(ucsdet_getUChars)
|
775
|
+
#define ucsdet_isInputFilterEnabled U_ICU_ENTRY_POINT_RENAME(ucsdet_isInputFilterEnabled)
|
776
|
+
#define ucsdet_open U_ICU_ENTRY_POINT_RENAME(ucsdet_open)
|
777
|
+
#define ucsdet_setDeclaredEncoding U_ICU_ENTRY_POINT_RENAME(ucsdet_setDeclaredEncoding)
|
778
|
+
#define ucsdet_setDetectableCharset U_ICU_ENTRY_POINT_RENAME(ucsdet_setDetectableCharset)
|
779
|
+
#define ucsdet_setText U_ICU_ENTRY_POINT_RENAME(ucsdet_setText)
|
780
|
+
#define ucurr_countCurrencies U_ICU_ENTRY_POINT_RENAME(ucurr_countCurrencies)
|
781
|
+
#define ucurr_forLocale U_ICU_ENTRY_POINT_RENAME(ucurr_forLocale)
|
782
|
+
#define ucurr_forLocaleAndDate U_ICU_ENTRY_POINT_RENAME(ucurr_forLocaleAndDate)
|
783
|
+
#define ucurr_getDefaultFractionDigits U_ICU_ENTRY_POINT_RENAME(ucurr_getDefaultFractionDigits)
|
784
|
+
#define ucurr_getDefaultFractionDigitsForUsage U_ICU_ENTRY_POINT_RENAME(ucurr_getDefaultFractionDigitsForUsage)
|
785
|
+
#define ucurr_getKeywordValuesForLocale U_ICU_ENTRY_POINT_RENAME(ucurr_getKeywordValuesForLocale)
|
786
|
+
#define ucurr_getName U_ICU_ENTRY_POINT_RENAME(ucurr_getName)
|
787
|
+
#define ucurr_getNumericCode U_ICU_ENTRY_POINT_RENAME(ucurr_getNumericCode)
|
788
|
+
#define ucurr_getPluralName U_ICU_ENTRY_POINT_RENAME(ucurr_getPluralName)
|
789
|
+
#define ucurr_getRoundingIncrement U_ICU_ENTRY_POINT_RENAME(ucurr_getRoundingIncrement)
|
790
|
+
#define ucurr_getRoundingIncrementForUsage U_ICU_ENTRY_POINT_RENAME(ucurr_getRoundingIncrementForUsage)
|
791
|
+
#define ucurr_isAvailable U_ICU_ENTRY_POINT_RENAME(ucurr_isAvailable)
|
792
|
+
#define ucurr_openISOCurrencies U_ICU_ENTRY_POINT_RENAME(ucurr_openISOCurrencies)
|
793
|
+
#define ucurr_register U_ICU_ENTRY_POINT_RENAME(ucurr_register)
|
794
|
+
#define ucurr_unregister U_ICU_ENTRY_POINT_RENAME(ucurr_unregister)
|
795
|
+
#define udat_adoptNumberFormat U_ICU_ENTRY_POINT_RENAME(udat_adoptNumberFormat)
|
796
|
+
#define udat_adoptNumberFormatForFields U_ICU_ENTRY_POINT_RENAME(udat_adoptNumberFormatForFields)
|
797
|
+
#define udat_applyPattern U_ICU_ENTRY_POINT_RENAME(udat_applyPattern)
|
798
|
+
#define udat_applyPatternRelative U_ICU_ENTRY_POINT_RENAME(udat_applyPatternRelative)
|
799
|
+
#define udat_clone U_ICU_ENTRY_POINT_RENAME(udat_clone)
|
800
|
+
#define udat_close U_ICU_ENTRY_POINT_RENAME(udat_close)
|
801
|
+
#define udat_countAvailable U_ICU_ENTRY_POINT_RENAME(udat_countAvailable)
|
802
|
+
#define udat_countSymbols U_ICU_ENTRY_POINT_RENAME(udat_countSymbols)
|
803
|
+
#define udat_format U_ICU_ENTRY_POINT_RENAME(udat_format)
|
804
|
+
#define udat_get2DigitYearStart U_ICU_ENTRY_POINT_RENAME(udat_get2DigitYearStart)
|
805
|
+
#define udat_getAvailable U_ICU_ENTRY_POINT_RENAME(udat_getAvailable)
|
806
|
+
#define udat_getBooleanAttribute U_ICU_ENTRY_POINT_RENAME(udat_getBooleanAttribute)
|
807
|
+
#define udat_getCalendar U_ICU_ENTRY_POINT_RENAME(udat_getCalendar)
|
808
|
+
#define udat_getContext U_ICU_ENTRY_POINT_RENAME(udat_getContext)
|
809
|
+
#define udat_getLocaleByType U_ICU_ENTRY_POINT_RENAME(udat_getLocaleByType)
|
810
|
+
#define udat_getNumberFormat U_ICU_ENTRY_POINT_RENAME(udat_getNumberFormat)
|
811
|
+
#define udat_getNumberFormatForField U_ICU_ENTRY_POINT_RENAME(udat_getNumberFormatForField)
|
812
|
+
#define udat_getSymbols U_ICU_ENTRY_POINT_RENAME(udat_getSymbols)
|
813
|
+
#define udat_isLenient U_ICU_ENTRY_POINT_RENAME(udat_isLenient)
|
814
|
+
#define udat_open U_ICU_ENTRY_POINT_RENAME(udat_open)
|
815
|
+
#define udat_parse U_ICU_ENTRY_POINT_RENAME(udat_parse)
|
816
|
+
#define udat_parseCalendar U_ICU_ENTRY_POINT_RENAME(udat_parseCalendar)
|
817
|
+
#define udat_registerOpener U_ICU_ENTRY_POINT_RENAME(udat_registerOpener)
|
818
|
+
#define udat_set2DigitYearStart U_ICU_ENTRY_POINT_RENAME(udat_set2DigitYearStart)
|
819
|
+
#define udat_setBooleanAttribute U_ICU_ENTRY_POINT_RENAME(udat_setBooleanAttribute)
|
820
|
+
#define udat_setCalendar U_ICU_ENTRY_POINT_RENAME(udat_setCalendar)
|
821
|
+
#define udat_setContext U_ICU_ENTRY_POINT_RENAME(udat_setContext)
|
822
|
+
#define udat_setLenient U_ICU_ENTRY_POINT_RENAME(udat_setLenient)
|
823
|
+
#define udat_setNumberFormat U_ICU_ENTRY_POINT_RENAME(udat_setNumberFormat)
|
824
|
+
#define udat_setSymbols U_ICU_ENTRY_POINT_RENAME(udat_setSymbols)
|
825
|
+
#define udat_toCalendarDateField U_ICU_ENTRY_POINT_RENAME(udat_toCalendarDateField)
|
826
|
+
#define udat_toPattern U_ICU_ENTRY_POINT_RENAME(udat_toPattern)
|
827
|
+
#define udat_toPatternRelativeDate U_ICU_ENTRY_POINT_RENAME(udat_toPatternRelativeDate)
|
828
|
+
#define udat_toPatternRelativeTime U_ICU_ENTRY_POINT_RENAME(udat_toPatternRelativeTime)
|
829
|
+
#define udat_unregisterOpener U_ICU_ENTRY_POINT_RENAME(udat_unregisterOpener)
|
830
|
+
#define udata_checkCommonData U_ICU_ENTRY_POINT_RENAME(udata_checkCommonData)
|
831
|
+
#define udata_close U_ICU_ENTRY_POINT_RENAME(udata_close)
|
832
|
+
#define udata_closeSwapper U_ICU_ENTRY_POINT_RENAME(udata_closeSwapper)
|
833
|
+
#define udata_getHeaderSize U_ICU_ENTRY_POINT_RENAME(udata_getHeaderSize)
|
834
|
+
#define udata_getInfo U_ICU_ENTRY_POINT_RENAME(udata_getInfo)
|
835
|
+
#define udata_getInfoSize U_ICU_ENTRY_POINT_RENAME(udata_getInfoSize)
|
836
|
+
#define udata_getLength U_ICU_ENTRY_POINT_RENAME(udata_getLength)
|
837
|
+
#define udata_getMemory U_ICU_ENTRY_POINT_RENAME(udata_getMemory)
|
838
|
+
#define udata_getRawMemory U_ICU_ENTRY_POINT_RENAME(udata_getRawMemory)
|
839
|
+
#define udata_open U_ICU_ENTRY_POINT_RENAME(udata_open)
|
840
|
+
#define udata_openChoice U_ICU_ENTRY_POINT_RENAME(udata_openChoice)
|
841
|
+
#define udata_openSwapper U_ICU_ENTRY_POINT_RENAME(udata_openSwapper)
|
842
|
+
#define udata_openSwapperForInputData U_ICU_ENTRY_POINT_RENAME(udata_openSwapperForInputData)
|
843
|
+
#define udata_printError U_ICU_ENTRY_POINT_RENAME(udata_printError)
|
844
|
+
#define udata_readInt16 U_ICU_ENTRY_POINT_RENAME(udata_readInt16)
|
845
|
+
#define udata_readInt32 U_ICU_ENTRY_POINT_RENAME(udata_readInt32)
|
846
|
+
#define udata_setAppData U_ICU_ENTRY_POINT_RENAME(udata_setAppData)
|
847
|
+
#define udata_setCommonData U_ICU_ENTRY_POINT_RENAME(udata_setCommonData)
|
848
|
+
#define udata_setFileAccess U_ICU_ENTRY_POINT_RENAME(udata_setFileAccess)
|
849
|
+
#define udata_swapDataHeader U_ICU_ENTRY_POINT_RENAME(udata_swapDataHeader)
|
850
|
+
#define udata_swapInvStringBlock U_ICU_ENTRY_POINT_RENAME(udata_swapInvStringBlock)
|
851
|
+
#define udatpg_addPattern U_ICU_ENTRY_POINT_RENAME(udatpg_addPattern)
|
852
|
+
#define udatpg_clone U_ICU_ENTRY_POINT_RENAME(udatpg_clone)
|
853
|
+
#define udatpg_close U_ICU_ENTRY_POINT_RENAME(udatpg_close)
|
854
|
+
#define udatpg_getAppendItemFormat U_ICU_ENTRY_POINT_RENAME(udatpg_getAppendItemFormat)
|
855
|
+
#define udatpg_getAppendItemName U_ICU_ENTRY_POINT_RENAME(udatpg_getAppendItemName)
|
856
|
+
#define udatpg_getBaseSkeleton U_ICU_ENTRY_POINT_RENAME(udatpg_getBaseSkeleton)
|
857
|
+
#define udatpg_getBestPattern U_ICU_ENTRY_POINT_RENAME(udatpg_getBestPattern)
|
858
|
+
#define udatpg_getBestPatternWithOptions U_ICU_ENTRY_POINT_RENAME(udatpg_getBestPatternWithOptions)
|
859
|
+
#define udatpg_getDateTimeFormat U_ICU_ENTRY_POINT_RENAME(udatpg_getDateTimeFormat)
|
860
|
+
#define udatpg_getDecimal U_ICU_ENTRY_POINT_RENAME(udatpg_getDecimal)
|
861
|
+
#define udatpg_getPatternForSkeleton U_ICU_ENTRY_POINT_RENAME(udatpg_getPatternForSkeleton)
|
862
|
+
#define udatpg_getSkeleton U_ICU_ENTRY_POINT_RENAME(udatpg_getSkeleton)
|
863
|
+
#define udatpg_open U_ICU_ENTRY_POINT_RENAME(udatpg_open)
|
864
|
+
#define udatpg_openBaseSkeletons U_ICU_ENTRY_POINT_RENAME(udatpg_openBaseSkeletons)
|
865
|
+
#define udatpg_openEmpty U_ICU_ENTRY_POINT_RENAME(udatpg_openEmpty)
|
866
|
+
#define udatpg_openSkeletons U_ICU_ENTRY_POINT_RENAME(udatpg_openSkeletons)
|
867
|
+
#define udatpg_replaceFieldTypes U_ICU_ENTRY_POINT_RENAME(udatpg_replaceFieldTypes)
|
868
|
+
#define udatpg_replaceFieldTypesWithOptions U_ICU_ENTRY_POINT_RENAME(udatpg_replaceFieldTypesWithOptions)
|
869
|
+
#define udatpg_setAppendItemFormat U_ICU_ENTRY_POINT_RENAME(udatpg_setAppendItemFormat)
|
870
|
+
#define udatpg_setAppendItemName U_ICU_ENTRY_POINT_RENAME(udatpg_setAppendItemName)
|
871
|
+
#define udatpg_setDateTimeFormat U_ICU_ENTRY_POINT_RENAME(udatpg_setDateTimeFormat)
|
872
|
+
#define udatpg_setDecimal U_ICU_ENTRY_POINT_RENAME(udatpg_setDecimal)
|
873
|
+
#define udict_swap U_ICU_ENTRY_POINT_RENAME(udict_swap)
|
874
|
+
#define udtitvfmt_close U_ICU_ENTRY_POINT_RENAME(udtitvfmt_close)
|
875
|
+
#define udtitvfmt_format U_ICU_ENTRY_POINT_RENAME(udtitvfmt_format)
|
876
|
+
#define udtitvfmt_open U_ICU_ENTRY_POINT_RENAME(udtitvfmt_open)
|
877
|
+
#define uenum_close U_ICU_ENTRY_POINT_RENAME(uenum_close)
|
878
|
+
#define uenum_count U_ICU_ENTRY_POINT_RENAME(uenum_count)
|
879
|
+
#define uenum_next U_ICU_ENTRY_POINT_RENAME(uenum_next)
|
880
|
+
#define uenum_nextDefault U_ICU_ENTRY_POINT_RENAME(uenum_nextDefault)
|
881
|
+
#define uenum_openCharStringsEnumeration U_ICU_ENTRY_POINT_RENAME(uenum_openCharStringsEnumeration)
|
882
|
+
#define uenum_openFromStringEnumeration U_ICU_ENTRY_POINT_RENAME(uenum_openFromStringEnumeration)
|
883
|
+
#define uenum_openUCharStringsEnumeration U_ICU_ENTRY_POINT_RENAME(uenum_openUCharStringsEnumeration)
|
884
|
+
#define uenum_reset U_ICU_ENTRY_POINT_RENAME(uenum_reset)
|
885
|
+
#define uenum_unext U_ICU_ENTRY_POINT_RENAME(uenum_unext)
|
886
|
+
#define uenum_unextDefault U_ICU_ENTRY_POINT_RENAME(uenum_unextDefault)
|
887
|
+
#define ufile_close_translit U_ICU_ENTRY_POINT_RENAME(ufile_close_translit)
|
888
|
+
#define ufile_fill_uchar_buffer U_ICU_ENTRY_POINT_RENAME(ufile_fill_uchar_buffer)
|
889
|
+
#define ufile_flush_io U_ICU_ENTRY_POINT_RENAME(ufile_flush_io)
|
890
|
+
#define ufile_flush_translit U_ICU_ENTRY_POINT_RENAME(ufile_flush_translit)
|
891
|
+
#define ufile_getch U_ICU_ENTRY_POINT_RENAME(ufile_getch)
|
892
|
+
#define ufile_getch32 U_ICU_ENTRY_POINT_RENAME(ufile_getch32)
|
893
|
+
#define ufmt_64tou U_ICU_ENTRY_POINT_RENAME(ufmt_64tou)
|
894
|
+
#define ufmt_close U_ICU_ENTRY_POINT_RENAME(ufmt_close)
|
895
|
+
#define ufmt_defaultCPToUnicode U_ICU_ENTRY_POINT_RENAME(ufmt_defaultCPToUnicode)
|
896
|
+
#define ufmt_digitvalue U_ICU_ENTRY_POINT_RENAME(ufmt_digitvalue)
|
897
|
+
#define ufmt_getArrayItemByIndex U_ICU_ENTRY_POINT_RENAME(ufmt_getArrayItemByIndex)
|
898
|
+
#define ufmt_getArrayLength U_ICU_ENTRY_POINT_RENAME(ufmt_getArrayLength)
|
899
|
+
#define ufmt_getDate U_ICU_ENTRY_POINT_RENAME(ufmt_getDate)
|
900
|
+
#define ufmt_getDecNumChars U_ICU_ENTRY_POINT_RENAME(ufmt_getDecNumChars)
|
901
|
+
#define ufmt_getDouble U_ICU_ENTRY_POINT_RENAME(ufmt_getDouble)
|
902
|
+
#define ufmt_getInt64 U_ICU_ENTRY_POINT_RENAME(ufmt_getInt64)
|
903
|
+
#define ufmt_getLong U_ICU_ENTRY_POINT_RENAME(ufmt_getLong)
|
904
|
+
#define ufmt_getObject U_ICU_ENTRY_POINT_RENAME(ufmt_getObject)
|
905
|
+
#define ufmt_getType U_ICU_ENTRY_POINT_RENAME(ufmt_getType)
|
906
|
+
#define ufmt_getUChars U_ICU_ENTRY_POINT_RENAME(ufmt_getUChars)
|
907
|
+
#define ufmt_isNumeric U_ICU_ENTRY_POINT_RENAME(ufmt_isNumeric)
|
908
|
+
#define ufmt_isdigit U_ICU_ENTRY_POINT_RENAME(ufmt_isdigit)
|
909
|
+
#define ufmt_open U_ICU_ENTRY_POINT_RENAME(ufmt_open)
|
910
|
+
#define ufmt_ptou U_ICU_ENTRY_POINT_RENAME(ufmt_ptou)
|
911
|
+
#define ufmt_uto64 U_ICU_ENTRY_POINT_RENAME(ufmt_uto64)
|
912
|
+
#define ufmt_utop U_ICU_ENTRY_POINT_RENAME(ufmt_utop)
|
913
|
+
#define ugender_getInstance U_ICU_ENTRY_POINT_RENAME(ugender_getInstance)
|
914
|
+
#define ugender_getListGender U_ICU_ENTRY_POINT_RENAME(ugender_getListGender)
|
915
|
+
#define uhash_close U_ICU_ENTRY_POINT_RENAME(uhash_close)
|
916
|
+
#define uhash_compareCaselessUnicodeString U_ICU_ENTRY_POINT_RENAME(uhash_compareCaselessUnicodeString)
|
917
|
+
#define uhash_compareChars U_ICU_ENTRY_POINT_RENAME(uhash_compareChars)
|
918
|
+
#define uhash_compareIChars U_ICU_ENTRY_POINT_RENAME(uhash_compareIChars)
|
919
|
+
#define uhash_compareLong U_ICU_ENTRY_POINT_RENAME(uhash_compareLong)
|
920
|
+
#define uhash_compareScriptSet U_ICU_ENTRY_POINT_RENAME(uhash_compareScriptSet)
|
921
|
+
#define uhash_compareUChars U_ICU_ENTRY_POINT_RENAME(uhash_compareUChars)
|
922
|
+
#define uhash_compareUnicodeString U_ICU_ENTRY_POINT_RENAME(uhash_compareUnicodeString)
|
923
|
+
#define uhash_count U_ICU_ENTRY_POINT_RENAME(uhash_count)
|
924
|
+
#define uhash_deleteHashtable U_ICU_ENTRY_POINT_RENAME(uhash_deleteHashtable)
|
925
|
+
#define uhash_deleteScriptSet U_ICU_ENTRY_POINT_RENAME(uhash_deleteScriptSet)
|
926
|
+
#define uhash_equals U_ICU_ENTRY_POINT_RENAME(uhash_equals)
|
927
|
+
#define uhash_equalsScriptSet U_ICU_ENTRY_POINT_RENAME(uhash_equalsScriptSet)
|
928
|
+
#define uhash_find U_ICU_ENTRY_POINT_RENAME(uhash_find)
|
929
|
+
#define uhash_get U_ICU_ENTRY_POINT_RENAME(uhash_get)
|
930
|
+
#define uhash_geti U_ICU_ENTRY_POINT_RENAME(uhash_geti)
|
931
|
+
#define uhash_hashCaselessUnicodeString U_ICU_ENTRY_POINT_RENAME(uhash_hashCaselessUnicodeString)
|
932
|
+
#define uhash_hashChars U_ICU_ENTRY_POINT_RENAME(uhash_hashChars)
|
933
|
+
#define uhash_hashIChars U_ICU_ENTRY_POINT_RENAME(uhash_hashIChars)
|
934
|
+
#define uhash_hashLong U_ICU_ENTRY_POINT_RENAME(uhash_hashLong)
|
935
|
+
#define uhash_hashScriptSet U_ICU_ENTRY_POINT_RENAME(uhash_hashScriptSet)
|
936
|
+
#define uhash_hashUChars U_ICU_ENTRY_POINT_RENAME(uhash_hashUChars)
|
937
|
+
#define uhash_hashUnicodeString U_ICU_ENTRY_POINT_RENAME(uhash_hashUnicodeString)
|
938
|
+
#define uhash_iget U_ICU_ENTRY_POINT_RENAME(uhash_iget)
|
939
|
+
#define uhash_igeti U_ICU_ENTRY_POINT_RENAME(uhash_igeti)
|
940
|
+
#define uhash_init U_ICU_ENTRY_POINT_RENAME(uhash_init)
|
941
|
+
#define uhash_iput U_ICU_ENTRY_POINT_RENAME(uhash_iput)
|
942
|
+
#define uhash_iputi U_ICU_ENTRY_POINT_RENAME(uhash_iputi)
|
943
|
+
#define uhash_iremove U_ICU_ENTRY_POINT_RENAME(uhash_iremove)
|
944
|
+
#define uhash_iremovei U_ICU_ENTRY_POINT_RENAME(uhash_iremovei)
|
945
|
+
#define uhash_nextElement U_ICU_ENTRY_POINT_RENAME(uhash_nextElement)
|
946
|
+
#define uhash_open U_ICU_ENTRY_POINT_RENAME(uhash_open)
|
947
|
+
#define uhash_openSize U_ICU_ENTRY_POINT_RENAME(uhash_openSize)
|
948
|
+
#define uhash_put U_ICU_ENTRY_POINT_RENAME(uhash_put)
|
949
|
+
#define uhash_puti U_ICU_ENTRY_POINT_RENAME(uhash_puti)
|
950
|
+
#define uhash_remove U_ICU_ENTRY_POINT_RENAME(uhash_remove)
|
951
|
+
#define uhash_removeAll U_ICU_ENTRY_POINT_RENAME(uhash_removeAll)
|
952
|
+
#define uhash_removeElement U_ICU_ENTRY_POINT_RENAME(uhash_removeElement)
|
953
|
+
#define uhash_removei U_ICU_ENTRY_POINT_RENAME(uhash_removei)
|
954
|
+
#define uhash_setKeyComparator U_ICU_ENTRY_POINT_RENAME(uhash_setKeyComparator)
|
955
|
+
#define uhash_setKeyDeleter U_ICU_ENTRY_POINT_RENAME(uhash_setKeyDeleter)
|
956
|
+
#define uhash_setKeyHasher U_ICU_ENTRY_POINT_RENAME(uhash_setKeyHasher)
|
957
|
+
#define uhash_setResizePolicy U_ICU_ENTRY_POINT_RENAME(uhash_setResizePolicy)
|
958
|
+
#define uhash_setValueComparator U_ICU_ENTRY_POINT_RENAME(uhash_setValueComparator)
|
959
|
+
#define uhash_setValueDeleter U_ICU_ENTRY_POINT_RENAME(uhash_setValueDeleter)
|
960
|
+
#define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
|
961
|
+
#define uidna_IDNToUnicode U_ICU_ENTRY_POINT_RENAME(uidna_IDNToUnicode)
|
962
|
+
#define uidna_close U_ICU_ENTRY_POINT_RENAME(uidna_close)
|
963
|
+
#define uidna_compare U_ICU_ENTRY_POINT_RENAME(uidna_compare)
|
964
|
+
#define uidna_labelToASCII U_ICU_ENTRY_POINT_RENAME(uidna_labelToASCII)
|
965
|
+
#define uidna_labelToASCII_UTF8 U_ICU_ENTRY_POINT_RENAME(uidna_labelToASCII_UTF8)
|
966
|
+
#define uidna_labelToUnicode U_ICU_ENTRY_POINT_RENAME(uidna_labelToUnicode)
|
967
|
+
#define uidna_labelToUnicodeUTF8 U_ICU_ENTRY_POINT_RENAME(uidna_labelToUnicodeUTF8)
|
968
|
+
#define uidna_nameToASCII U_ICU_ENTRY_POINT_RENAME(uidna_nameToASCII)
|
969
|
+
#define uidna_nameToASCII_UTF8 U_ICU_ENTRY_POINT_RENAME(uidna_nameToASCII_UTF8)
|
970
|
+
#define uidna_nameToUnicode U_ICU_ENTRY_POINT_RENAME(uidna_nameToUnicode)
|
971
|
+
#define uidna_nameToUnicodeUTF8 U_ICU_ENTRY_POINT_RENAME(uidna_nameToUnicodeUTF8)
|
972
|
+
#define uidna_openUTS46 U_ICU_ENTRY_POINT_RENAME(uidna_openUTS46)
|
973
|
+
#define uidna_toASCII U_ICU_ENTRY_POINT_RENAME(uidna_toASCII)
|
974
|
+
#define uidna_toUnicode U_ICU_ENTRY_POINT_RENAME(uidna_toUnicode)
|
975
|
+
#define uiter_current32 U_ICU_ENTRY_POINT_RENAME(uiter_current32)
|
976
|
+
#define uiter_getState U_ICU_ENTRY_POINT_RENAME(uiter_getState)
|
977
|
+
#define uiter_next32 U_ICU_ENTRY_POINT_RENAME(uiter_next32)
|
978
|
+
#define uiter_previous32 U_ICU_ENTRY_POINT_RENAME(uiter_previous32)
|
979
|
+
#define uiter_setCharacterIterator U_ICU_ENTRY_POINT_RENAME(uiter_setCharacterIterator)
|
980
|
+
#define uiter_setReplaceable U_ICU_ENTRY_POINT_RENAME(uiter_setReplaceable)
|
981
|
+
#define uiter_setState U_ICU_ENTRY_POINT_RENAME(uiter_setState)
|
982
|
+
#define uiter_setString U_ICU_ENTRY_POINT_RENAME(uiter_setString)
|
983
|
+
#define uiter_setUTF16BE U_ICU_ENTRY_POINT_RENAME(uiter_setUTF16BE)
|
984
|
+
#define uiter_setUTF8 U_ICU_ENTRY_POINT_RENAME(uiter_setUTF8)
|
985
|
+
#define uldn_close U_ICU_ENTRY_POINT_RENAME(uldn_close)
|
986
|
+
#define uldn_getContext U_ICU_ENTRY_POINT_RENAME(uldn_getContext)
|
987
|
+
#define uldn_getDialectHandling U_ICU_ENTRY_POINT_RENAME(uldn_getDialectHandling)
|
988
|
+
#define uldn_getLocale U_ICU_ENTRY_POINT_RENAME(uldn_getLocale)
|
989
|
+
#define uldn_keyDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_keyDisplayName)
|
990
|
+
#define uldn_keyValueDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_keyValueDisplayName)
|
991
|
+
#define uldn_languageDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_languageDisplayName)
|
992
|
+
#define uldn_localeDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_localeDisplayName)
|
993
|
+
#define uldn_open U_ICU_ENTRY_POINT_RENAME(uldn_open)
|
994
|
+
#define uldn_openForContext U_ICU_ENTRY_POINT_RENAME(uldn_openForContext)
|
995
|
+
#define uldn_regionDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_regionDisplayName)
|
996
|
+
#define uldn_scriptCodeDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_scriptCodeDisplayName)
|
997
|
+
#define uldn_scriptDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_scriptDisplayName)
|
998
|
+
#define uldn_variantDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_variantDisplayName)
|
999
|
+
#define ulist_addItemBeginList U_ICU_ENTRY_POINT_RENAME(ulist_addItemBeginList)
|
1000
|
+
#define ulist_addItemEndList U_ICU_ENTRY_POINT_RENAME(ulist_addItemEndList)
|
1001
|
+
#define ulist_close_keyword_values_iterator U_ICU_ENTRY_POINT_RENAME(ulist_close_keyword_values_iterator)
|
1002
|
+
#define ulist_containsString U_ICU_ENTRY_POINT_RENAME(ulist_containsString)
|
1003
|
+
#define ulist_count_keyword_values U_ICU_ENTRY_POINT_RENAME(ulist_count_keyword_values)
|
1004
|
+
#define ulist_createEmptyList U_ICU_ENTRY_POINT_RENAME(ulist_createEmptyList)
|
1005
|
+
#define ulist_deleteList U_ICU_ENTRY_POINT_RENAME(ulist_deleteList)
|
1006
|
+
#define ulist_getListFromEnum U_ICU_ENTRY_POINT_RENAME(ulist_getListFromEnum)
|
1007
|
+
#define ulist_getListSize U_ICU_ENTRY_POINT_RENAME(ulist_getListSize)
|
1008
|
+
#define ulist_getNext U_ICU_ENTRY_POINT_RENAME(ulist_getNext)
|
1009
|
+
#define ulist_next_keyword_value U_ICU_ENTRY_POINT_RENAME(ulist_next_keyword_value)
|
1010
|
+
#define ulist_resetList U_ICU_ENTRY_POINT_RENAME(ulist_resetList)
|
1011
|
+
#define ulist_reset_keyword_values_iterator U_ICU_ENTRY_POINT_RENAME(ulist_reset_keyword_values_iterator)
|
1012
|
+
#define uloc_acceptLanguage U_ICU_ENTRY_POINT_RENAME(uloc_acceptLanguage)
|
1013
|
+
#define uloc_acceptLanguageFromHTTP U_ICU_ENTRY_POINT_RENAME(uloc_acceptLanguageFromHTTP)
|
1014
|
+
#define uloc_addLikelySubtags U_ICU_ENTRY_POINT_RENAME(uloc_addLikelySubtags)
|
1015
|
+
#define uloc_canonicalize U_ICU_ENTRY_POINT_RENAME(uloc_canonicalize)
|
1016
|
+
#define uloc_countAvailable U_ICU_ENTRY_POINT_RENAME(uloc_countAvailable)
|
1017
|
+
#define uloc_forLanguageTag U_ICU_ENTRY_POINT_RENAME(uloc_forLanguageTag)
|
1018
|
+
#define uloc_getAvailable U_ICU_ENTRY_POINT_RENAME(uloc_getAvailable)
|
1019
|
+
#define uloc_getBaseName U_ICU_ENTRY_POINT_RENAME(uloc_getBaseName)
|
1020
|
+
#define uloc_getCharacterOrientation U_ICU_ENTRY_POINT_RENAME(uloc_getCharacterOrientation)
|
1021
|
+
#define uloc_getCountry U_ICU_ENTRY_POINT_RENAME(uloc_getCountry)
|
1022
|
+
#define uloc_getCurrentCountryID U_ICU_ENTRY_POINT_RENAME(uloc_getCurrentCountryID)
|
1023
|
+
#define uloc_getCurrentLanguageID U_ICU_ENTRY_POINT_RENAME(uloc_getCurrentLanguageID)
|
1024
|
+
#define uloc_getDefault U_ICU_ENTRY_POINT_RENAME(uloc_getDefault)
|
1025
|
+
#define uloc_getDisplayCountry U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayCountry)
|
1026
|
+
#define uloc_getDisplayKeyword U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayKeyword)
|
1027
|
+
#define uloc_getDisplayKeywordValue U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayKeywordValue)
|
1028
|
+
#define uloc_getDisplayLanguage U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayLanguage)
|
1029
|
+
#define uloc_getDisplayName U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayName)
|
1030
|
+
#define uloc_getDisplayScript U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayScript)
|
1031
|
+
#define uloc_getDisplayScriptInContext U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayScriptInContext)
|
1032
|
+
#define uloc_getDisplayVariant U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayVariant)
|
1033
|
+
#define uloc_getISO3Country U_ICU_ENTRY_POINT_RENAME(uloc_getISO3Country)
|
1034
|
+
#define uloc_getISO3Language U_ICU_ENTRY_POINT_RENAME(uloc_getISO3Language)
|
1035
|
+
#define uloc_getISOCountries U_ICU_ENTRY_POINT_RENAME(uloc_getISOCountries)
|
1036
|
+
#define uloc_getISOLanguages U_ICU_ENTRY_POINT_RENAME(uloc_getISOLanguages)
|
1037
|
+
#define uloc_getKeywordValue U_ICU_ENTRY_POINT_RENAME(uloc_getKeywordValue)
|
1038
|
+
#define uloc_getLCID U_ICU_ENTRY_POINT_RENAME(uloc_getLCID)
|
1039
|
+
#define uloc_getLanguage U_ICU_ENTRY_POINT_RENAME(uloc_getLanguage)
|
1040
|
+
#define uloc_getLineOrientation U_ICU_ENTRY_POINT_RENAME(uloc_getLineOrientation)
|
1041
|
+
#define uloc_getLocaleForLCID U_ICU_ENTRY_POINT_RENAME(uloc_getLocaleForLCID)
|
1042
|
+
#define uloc_getName U_ICU_ENTRY_POINT_RENAME(uloc_getName)
|
1043
|
+
#define uloc_getParent U_ICU_ENTRY_POINT_RENAME(uloc_getParent)
|
1044
|
+
#define uloc_getScript U_ICU_ENTRY_POINT_RENAME(uloc_getScript)
|
1045
|
+
#define uloc_getTableStringWithFallback U_ICU_ENTRY_POINT_RENAME(uloc_getTableStringWithFallback)
|
1046
|
+
#define uloc_getVariant U_ICU_ENTRY_POINT_RENAME(uloc_getVariant)
|
1047
|
+
#define uloc_isRightToLeft U_ICU_ENTRY_POINT_RENAME(uloc_isRightToLeft)
|
1048
|
+
#define uloc_minimizeSubtags U_ICU_ENTRY_POINT_RENAME(uloc_minimizeSubtags)
|
1049
|
+
#define uloc_openKeywordList U_ICU_ENTRY_POINT_RENAME(uloc_openKeywordList)
|
1050
|
+
#define uloc_openKeywords U_ICU_ENTRY_POINT_RENAME(uloc_openKeywords)
|
1051
|
+
#define uloc_setDefault U_ICU_ENTRY_POINT_RENAME(uloc_setDefault)
|
1052
|
+
#define uloc_setKeywordValue U_ICU_ENTRY_POINT_RENAME(uloc_setKeywordValue)
|
1053
|
+
#define uloc_toLanguageTag U_ICU_ENTRY_POINT_RENAME(uloc_toLanguageTag)
|
1054
|
+
#define uloc_toLegacyKey U_ICU_ENTRY_POINT_RENAME(uloc_toLegacyKey)
|
1055
|
+
#define uloc_toLegacyType U_ICU_ENTRY_POINT_RENAME(uloc_toLegacyType)
|
1056
|
+
#define uloc_toUnicodeLocaleKey U_ICU_ENTRY_POINT_RENAME(uloc_toUnicodeLocaleKey)
|
1057
|
+
#define uloc_toUnicodeLocaleType U_ICU_ENTRY_POINT_RENAME(uloc_toUnicodeLocaleType)
|
1058
|
+
#define ulocdata_close U_ICU_ENTRY_POINT_RENAME(ulocdata_close)
|
1059
|
+
#define ulocdata_getCLDRVersion U_ICU_ENTRY_POINT_RENAME(ulocdata_getCLDRVersion)
|
1060
|
+
#define ulocdata_getDelimiter U_ICU_ENTRY_POINT_RENAME(ulocdata_getDelimiter)
|
1061
|
+
#define ulocdata_getExemplarSet U_ICU_ENTRY_POINT_RENAME(ulocdata_getExemplarSet)
|
1062
|
+
#define ulocdata_getLocaleDisplayPattern U_ICU_ENTRY_POINT_RENAME(ulocdata_getLocaleDisplayPattern)
|
1063
|
+
#define ulocdata_getLocaleSeparator U_ICU_ENTRY_POINT_RENAME(ulocdata_getLocaleSeparator)
|
1064
|
+
#define ulocdata_getMeasurementSystem U_ICU_ENTRY_POINT_RENAME(ulocdata_getMeasurementSystem)
|
1065
|
+
#define ulocdata_getNoSubstitute U_ICU_ENTRY_POINT_RENAME(ulocdata_getNoSubstitute)
|
1066
|
+
#define ulocdata_getPaperSize U_ICU_ENTRY_POINT_RENAME(ulocdata_getPaperSize)
|
1067
|
+
#define ulocdata_open U_ICU_ENTRY_POINT_RENAME(ulocdata_open)
|
1068
|
+
#define ulocdata_setNoSubstitute U_ICU_ENTRY_POINT_RENAME(ulocdata_setNoSubstitute)
|
1069
|
+
#define ulocimp_getCountry U_ICU_ENTRY_POINT_RENAME(ulocimp_getCountry)
|
1070
|
+
#define ulocimp_getLanguage U_ICU_ENTRY_POINT_RENAME(ulocimp_getLanguage)
|
1071
|
+
#define ulocimp_getScript U_ICU_ENTRY_POINT_RENAME(ulocimp_getScript)
|
1072
|
+
#define ulocimp_toBcpKey U_ICU_ENTRY_POINT_RENAME(ulocimp_toBcpKey)
|
1073
|
+
#define ulocimp_toBcpType U_ICU_ENTRY_POINT_RENAME(ulocimp_toBcpType)
|
1074
|
+
#define ulocimp_toLegacyKey U_ICU_ENTRY_POINT_RENAME(ulocimp_toLegacyKey)
|
1075
|
+
#define ulocimp_toLegacyType U_ICU_ENTRY_POINT_RENAME(ulocimp_toLegacyType)
|
1076
|
+
#define ultag_isUnicodeLocaleKey U_ICU_ENTRY_POINT_RENAME(ultag_isUnicodeLocaleKey)
|
1077
|
+
#define ultag_isUnicodeLocaleType U_ICU_ENTRY_POINT_RENAME(ultag_isUnicodeLocaleType)
|
1078
|
+
#define umsg_applyPattern U_ICU_ENTRY_POINT_RENAME(umsg_applyPattern)
|
1079
|
+
#define umsg_autoQuoteApostrophe U_ICU_ENTRY_POINT_RENAME(umsg_autoQuoteApostrophe)
|
1080
|
+
#define umsg_clone U_ICU_ENTRY_POINT_RENAME(umsg_clone)
|
1081
|
+
#define umsg_close U_ICU_ENTRY_POINT_RENAME(umsg_close)
|
1082
|
+
#define umsg_format U_ICU_ENTRY_POINT_RENAME(umsg_format)
|
1083
|
+
#define umsg_getLocale U_ICU_ENTRY_POINT_RENAME(umsg_getLocale)
|
1084
|
+
#define umsg_open U_ICU_ENTRY_POINT_RENAME(umsg_open)
|
1085
|
+
#define umsg_parse U_ICU_ENTRY_POINT_RENAME(umsg_parse)
|
1086
|
+
#define umsg_setLocale U_ICU_ENTRY_POINT_RENAME(umsg_setLocale)
|
1087
|
+
#define umsg_toPattern U_ICU_ENTRY_POINT_RENAME(umsg_toPattern)
|
1088
|
+
#define umsg_vformat U_ICU_ENTRY_POINT_RENAME(umsg_vformat)
|
1089
|
+
#define umsg_vparse U_ICU_ENTRY_POINT_RENAME(umsg_vparse)
|
1090
|
+
#define umtx_condBroadcast U_ICU_ENTRY_POINT_RENAME(umtx_condBroadcast)
|
1091
|
+
#define umtx_condSignal U_ICU_ENTRY_POINT_RENAME(umtx_condSignal)
|
1092
|
+
#define umtx_condWait U_ICU_ENTRY_POINT_RENAME(umtx_condWait)
|
1093
|
+
#define umtx_lock U_ICU_ENTRY_POINT_RENAME(umtx_lock)
|
1094
|
+
#define umtx_unlock U_ICU_ENTRY_POINT_RENAME(umtx_unlock)
|
1095
|
+
#define uniset_getUnicode32Instance U_ICU_ENTRY_POINT_RENAME(uniset_getUnicode32Instance)
|
1096
|
+
#define unorm2_append U_ICU_ENTRY_POINT_RENAME(unorm2_append)
|
1097
|
+
#define unorm2_close U_ICU_ENTRY_POINT_RENAME(unorm2_close)
|
1098
|
+
#define unorm2_composePair U_ICU_ENTRY_POINT_RENAME(unorm2_composePair)
|
1099
|
+
#define unorm2_getCombiningClass U_ICU_ENTRY_POINT_RENAME(unorm2_getCombiningClass)
|
1100
|
+
#define unorm2_getDecomposition U_ICU_ENTRY_POINT_RENAME(unorm2_getDecomposition)
|
1101
|
+
#define unorm2_getInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getInstance)
|
1102
|
+
#define unorm2_getNFCInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFCInstance)
|
1103
|
+
#define unorm2_getNFDInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFDInstance)
|
1104
|
+
#define unorm2_getNFKCCasefoldInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFKCCasefoldInstance)
|
1105
|
+
#define unorm2_getNFKCInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFKCInstance)
|
1106
|
+
#define unorm2_getNFKDInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFKDInstance)
|
1107
|
+
#define unorm2_getRawDecomposition U_ICU_ENTRY_POINT_RENAME(unorm2_getRawDecomposition)
|
1108
|
+
#define unorm2_hasBoundaryAfter U_ICU_ENTRY_POINT_RENAME(unorm2_hasBoundaryAfter)
|
1109
|
+
#define unorm2_hasBoundaryBefore U_ICU_ENTRY_POINT_RENAME(unorm2_hasBoundaryBefore)
|
1110
|
+
#define unorm2_isInert U_ICU_ENTRY_POINT_RENAME(unorm2_isInert)
|
1111
|
+
#define unorm2_isNormalized U_ICU_ENTRY_POINT_RENAME(unorm2_isNormalized)
|
1112
|
+
#define unorm2_normalize U_ICU_ENTRY_POINT_RENAME(unorm2_normalize)
|
1113
|
+
#define unorm2_normalizeSecondAndAppend U_ICU_ENTRY_POINT_RENAME(unorm2_normalizeSecondAndAppend)
|
1114
|
+
#define unorm2_openFiltered U_ICU_ENTRY_POINT_RENAME(unorm2_openFiltered)
|
1115
|
+
#define unorm2_quickCheck U_ICU_ENTRY_POINT_RENAME(unorm2_quickCheck)
|
1116
|
+
#define unorm2_spanQuickCheckYes U_ICU_ENTRY_POINT_RENAME(unorm2_spanQuickCheckYes)
|
1117
|
+
#define unorm2_swap U_ICU_ENTRY_POINT_RENAME(unorm2_swap)
|
1118
|
+
#define unorm_compare U_ICU_ENTRY_POINT_RENAME(unorm_compare)
|
1119
|
+
#define unorm_concatenate U_ICU_ENTRY_POINT_RENAME(unorm_concatenate)
|
1120
|
+
#define unorm_getFCD16 U_ICU_ENTRY_POINT_RENAME(unorm_getFCD16)
|
1121
|
+
#define unorm_getQuickCheck U_ICU_ENTRY_POINT_RENAME(unorm_getQuickCheck)
|
1122
|
+
#define unorm_isNormalized U_ICU_ENTRY_POINT_RENAME(unorm_isNormalized)
|
1123
|
+
#define unorm_isNormalizedWithOptions U_ICU_ENTRY_POINT_RENAME(unorm_isNormalizedWithOptions)
|
1124
|
+
#define unorm_next U_ICU_ENTRY_POINT_RENAME(unorm_next)
|
1125
|
+
#define unorm_normalize U_ICU_ENTRY_POINT_RENAME(unorm_normalize)
|
1126
|
+
#define unorm_previous U_ICU_ENTRY_POINT_RENAME(unorm_previous)
|
1127
|
+
#define unorm_quickCheck U_ICU_ENTRY_POINT_RENAME(unorm_quickCheck)
|
1128
|
+
#define unorm_quickCheckWithOptions U_ICU_ENTRY_POINT_RENAME(unorm_quickCheckWithOptions)
|
1129
|
+
#define unum_applyPattern U_ICU_ENTRY_POINT_RENAME(unum_applyPattern)
|
1130
|
+
#define unum_clone U_ICU_ENTRY_POINT_RENAME(unum_clone)
|
1131
|
+
#define unum_close U_ICU_ENTRY_POINT_RENAME(unum_close)
|
1132
|
+
#define unum_countAvailable U_ICU_ENTRY_POINT_RENAME(unum_countAvailable)
|
1133
|
+
#define unum_format U_ICU_ENTRY_POINT_RENAME(unum_format)
|
1134
|
+
#define unum_formatDecimal U_ICU_ENTRY_POINT_RENAME(unum_formatDecimal)
|
1135
|
+
#define unum_formatDouble U_ICU_ENTRY_POINT_RENAME(unum_formatDouble)
|
1136
|
+
#define unum_formatDoubleCurrency U_ICU_ENTRY_POINT_RENAME(unum_formatDoubleCurrency)
|
1137
|
+
#define unum_formatInt64 U_ICU_ENTRY_POINT_RENAME(unum_formatInt64)
|
1138
|
+
#define unum_formatUFormattable U_ICU_ENTRY_POINT_RENAME(unum_formatUFormattable)
|
1139
|
+
#define unum_getAttribute U_ICU_ENTRY_POINT_RENAME(unum_getAttribute)
|
1140
|
+
#define unum_getAvailable U_ICU_ENTRY_POINT_RENAME(unum_getAvailable)
|
1141
|
+
#define unum_getContext U_ICU_ENTRY_POINT_RENAME(unum_getContext)
|
1142
|
+
#define unum_getDoubleAttribute U_ICU_ENTRY_POINT_RENAME(unum_getDoubleAttribute)
|
1143
|
+
#define unum_getLocaleByType U_ICU_ENTRY_POINT_RENAME(unum_getLocaleByType)
|
1144
|
+
#define unum_getSymbol U_ICU_ENTRY_POINT_RENAME(unum_getSymbol)
|
1145
|
+
#define unum_getTextAttribute U_ICU_ENTRY_POINT_RENAME(unum_getTextAttribute)
|
1146
|
+
#define unum_open U_ICU_ENTRY_POINT_RENAME(unum_open)
|
1147
|
+
#define unum_parse U_ICU_ENTRY_POINT_RENAME(unum_parse)
|
1148
|
+
#define unum_parseDecimal U_ICU_ENTRY_POINT_RENAME(unum_parseDecimal)
|
1149
|
+
#define unum_parseDouble U_ICU_ENTRY_POINT_RENAME(unum_parseDouble)
|
1150
|
+
#define unum_parseDoubleCurrency U_ICU_ENTRY_POINT_RENAME(unum_parseDoubleCurrency)
|
1151
|
+
#define unum_parseInt64 U_ICU_ENTRY_POINT_RENAME(unum_parseInt64)
|
1152
|
+
#define unum_parseToUFormattable U_ICU_ENTRY_POINT_RENAME(unum_parseToUFormattable)
|
1153
|
+
#define unum_setAttribute U_ICU_ENTRY_POINT_RENAME(unum_setAttribute)
|
1154
|
+
#define unum_setContext U_ICU_ENTRY_POINT_RENAME(unum_setContext)
|
1155
|
+
#define unum_setDoubleAttribute U_ICU_ENTRY_POINT_RENAME(unum_setDoubleAttribute)
|
1156
|
+
#define unum_setSymbol U_ICU_ENTRY_POINT_RENAME(unum_setSymbol)
|
1157
|
+
#define unum_setTextAttribute U_ICU_ENTRY_POINT_RENAME(unum_setTextAttribute)
|
1158
|
+
#define unum_toPattern U_ICU_ENTRY_POINT_RENAME(unum_toPattern)
|
1159
|
+
#define unumsys_close U_ICU_ENTRY_POINT_RENAME(unumsys_close)
|
1160
|
+
#define unumsys_getDescription U_ICU_ENTRY_POINT_RENAME(unumsys_getDescription)
|
1161
|
+
#define unumsys_getName U_ICU_ENTRY_POINT_RENAME(unumsys_getName)
|
1162
|
+
#define unumsys_getRadix U_ICU_ENTRY_POINT_RENAME(unumsys_getRadix)
|
1163
|
+
#define unumsys_isAlgorithmic U_ICU_ENTRY_POINT_RENAME(unumsys_isAlgorithmic)
|
1164
|
+
#define unumsys_open U_ICU_ENTRY_POINT_RENAME(unumsys_open)
|
1165
|
+
#define unumsys_openAvailableNames U_ICU_ENTRY_POINT_RENAME(unumsys_openAvailableNames)
|
1166
|
+
#define unumsys_openByName U_ICU_ENTRY_POINT_RENAME(unumsys_openByName)
|
1167
|
+
#define uplrules_close U_ICU_ENTRY_POINT_RENAME(uplrules_close)
|
1168
|
+
#define uplrules_open U_ICU_ENTRY_POINT_RENAME(uplrules_open)
|
1169
|
+
#define uplrules_openForType U_ICU_ENTRY_POINT_RENAME(uplrules_openForType)
|
1170
|
+
#define uplrules_select U_ICU_ENTRY_POINT_RENAME(uplrules_select)
|
1171
|
+
#define uplug_closeLibrary U_ICU_ENTRY_POINT_RENAME(uplug_closeLibrary)
|
1172
|
+
#define uplug_findLibrary U_ICU_ENTRY_POINT_RENAME(uplug_findLibrary)
|
1173
|
+
#define uplug_getConfiguration U_ICU_ENTRY_POINT_RENAME(uplug_getConfiguration)
|
1174
|
+
#define uplug_getContext U_ICU_ENTRY_POINT_RENAME(uplug_getContext)
|
1175
|
+
#define uplug_getCurrentLevel U_ICU_ENTRY_POINT_RENAME(uplug_getCurrentLevel)
|
1176
|
+
#define uplug_getLibrary U_ICU_ENTRY_POINT_RENAME(uplug_getLibrary)
|
1177
|
+
#define uplug_getLibraryName U_ICU_ENTRY_POINT_RENAME(uplug_getLibraryName)
|
1178
|
+
#define uplug_getPlugInternal U_ICU_ENTRY_POINT_RENAME(uplug_getPlugInternal)
|
1179
|
+
#define uplug_getPlugLevel U_ICU_ENTRY_POINT_RENAME(uplug_getPlugLevel)
|
1180
|
+
#define uplug_getPlugLoadStatus U_ICU_ENTRY_POINT_RENAME(uplug_getPlugLoadStatus)
|
1181
|
+
#define uplug_getPlugName U_ICU_ENTRY_POINT_RENAME(uplug_getPlugName)
|
1182
|
+
#define uplug_getPluginFile U_ICU_ENTRY_POINT_RENAME(uplug_getPluginFile)
|
1183
|
+
#define uplug_getSymbolName U_ICU_ENTRY_POINT_RENAME(uplug_getSymbolName)
|
1184
|
+
#define uplug_init U_ICU_ENTRY_POINT_RENAME(uplug_init)
|
1185
|
+
#define uplug_loadPlugFromEntrypoint U_ICU_ENTRY_POINT_RENAME(uplug_loadPlugFromEntrypoint)
|
1186
|
+
#define uplug_loadPlugFromLibrary U_ICU_ENTRY_POINT_RENAME(uplug_loadPlugFromLibrary)
|
1187
|
+
#define uplug_nextPlug U_ICU_ENTRY_POINT_RENAME(uplug_nextPlug)
|
1188
|
+
#define uplug_openLibrary U_ICU_ENTRY_POINT_RENAME(uplug_openLibrary)
|
1189
|
+
#define uplug_removePlug U_ICU_ENTRY_POINT_RENAME(uplug_removePlug)
|
1190
|
+
#define uplug_setContext U_ICU_ENTRY_POINT_RENAME(uplug_setContext)
|
1191
|
+
#define uplug_setPlugLevel U_ICU_ENTRY_POINT_RENAME(uplug_setPlugLevel)
|
1192
|
+
#define uplug_setPlugName U_ICU_ENTRY_POINT_RENAME(uplug_setPlugName)
|
1193
|
+
#define uplug_setPlugNoUnload U_ICU_ENTRY_POINT_RENAME(uplug_setPlugNoUnload)
|
1194
|
+
#define uprops_getSource U_ICU_ENTRY_POINT_RENAME(uprops_getSource)
|
1195
|
+
#define upropsvec_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(upropsvec_addPropertyStarts)
|
1196
|
+
#define uprv_aestrncpy U_ICU_ENTRY_POINT_RENAME(uprv_aestrncpy)
|
1197
|
+
#define uprv_asciiFromEbcdic U_ICU_ENTRY_POINT_RENAME(uprv_asciiFromEbcdic)
|
1198
|
+
#define uprv_asciitolower U_ICU_ENTRY_POINT_RENAME(uprv_asciitolower)
|
1199
|
+
#define uprv_calloc U_ICU_ENTRY_POINT_RENAME(uprv_calloc)
|
1200
|
+
#define uprv_ceil U_ICU_ENTRY_POINT_RENAME(uprv_ceil)
|
1201
|
+
#define uprv_compareASCIIPropertyNames U_ICU_ENTRY_POINT_RENAME(uprv_compareASCIIPropertyNames)
|
1202
|
+
#define uprv_compareEBCDICPropertyNames U_ICU_ENTRY_POINT_RENAME(uprv_compareEBCDICPropertyNames)
|
1203
|
+
#define uprv_compareInvAscii U_ICU_ENTRY_POINT_RENAME(uprv_compareInvAscii)
|
1204
|
+
#define uprv_compareInvEbcdic U_ICU_ENTRY_POINT_RENAME(uprv_compareInvEbcdic)
|
1205
|
+
#define uprv_compareInvEbcdicAsAscii U_ICU_ENTRY_POINT_RENAME(uprv_compareInvEbcdicAsAscii)
|
1206
|
+
#define uprv_convertToLCID U_ICU_ENTRY_POINT_RENAME(uprv_convertToLCID)
|
1207
|
+
#define uprv_convertToPosix U_ICU_ENTRY_POINT_RENAME(uprv_convertToPosix)
|
1208
|
+
#define uprv_copyAscii U_ICU_ENTRY_POINT_RENAME(uprv_copyAscii)
|
1209
|
+
#define uprv_copyEbcdic U_ICU_ENTRY_POINT_RENAME(uprv_copyEbcdic)
|
1210
|
+
#define uprv_decContextClearStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextClearStatus)
|
1211
|
+
#define uprv_decContextDefault U_ICU_ENTRY_POINT_RENAME(uprv_decContextDefault)
|
1212
|
+
#define uprv_decContextGetRounding U_ICU_ENTRY_POINT_RENAME(uprv_decContextGetRounding)
|
1213
|
+
#define uprv_decContextGetStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextGetStatus)
|
1214
|
+
#define uprv_decContextRestoreStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextRestoreStatus)
|
1215
|
+
#define uprv_decContextSaveStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextSaveStatus)
|
1216
|
+
#define uprv_decContextSetRounding U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetRounding)
|
1217
|
+
#define uprv_decContextSetStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetStatus)
|
1218
|
+
#define uprv_decContextSetStatusFromString U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetStatusFromString)
|
1219
|
+
#define uprv_decContextSetStatusFromStringQuiet U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetStatusFromStringQuiet)
|
1220
|
+
#define uprv_decContextSetStatusQuiet U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetStatusQuiet)
|
1221
|
+
#define uprv_decContextStatusToString U_ICU_ENTRY_POINT_RENAME(uprv_decContextStatusToString)
|
1222
|
+
#define uprv_decContextTestSavedStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextTestSavedStatus)
|
1223
|
+
#define uprv_decContextTestStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextTestStatus)
|
1224
|
+
#define uprv_decContextZeroStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextZeroStatus)
|
1225
|
+
#define uprv_decNumberAbs U_ICU_ENTRY_POINT_RENAME(uprv_decNumberAbs)
|
1226
|
+
#define uprv_decNumberAdd U_ICU_ENTRY_POINT_RENAME(uprv_decNumberAdd)
|
1227
|
+
#define uprv_decNumberAnd U_ICU_ENTRY_POINT_RENAME(uprv_decNumberAnd)
|
1228
|
+
#define uprv_decNumberClass U_ICU_ENTRY_POINT_RENAME(uprv_decNumberClass)
|
1229
|
+
#define uprv_decNumberClassToString U_ICU_ENTRY_POINT_RENAME(uprv_decNumberClassToString)
|
1230
|
+
#define uprv_decNumberCompare U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCompare)
|
1231
|
+
#define uprv_decNumberCompareSignal U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCompareSignal)
|
1232
|
+
#define uprv_decNumberCompareTotal U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCompareTotal)
|
1233
|
+
#define uprv_decNumberCompareTotalMag U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCompareTotalMag)
|
1234
|
+
#define uprv_decNumberCopy U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCopy)
|
1235
|
+
#define uprv_decNumberCopyAbs U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCopyAbs)
|
1236
|
+
#define uprv_decNumberCopyNegate U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCopyNegate)
|
1237
|
+
#define uprv_decNumberCopySign U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCopySign)
|
1238
|
+
#define uprv_decNumberDivide U_ICU_ENTRY_POINT_RENAME(uprv_decNumberDivide)
|
1239
|
+
#define uprv_decNumberDivideInteger U_ICU_ENTRY_POINT_RENAME(uprv_decNumberDivideInteger)
|
1240
|
+
#define uprv_decNumberExp U_ICU_ENTRY_POINT_RENAME(uprv_decNumberExp)
|
1241
|
+
#define uprv_decNumberFMA U_ICU_ENTRY_POINT_RENAME(uprv_decNumberFMA)
|
1242
|
+
#define uprv_decNumberFromInt32 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberFromInt32)
|
1243
|
+
#define uprv_decNumberFromString U_ICU_ENTRY_POINT_RENAME(uprv_decNumberFromString)
|
1244
|
+
#define uprv_decNumberFromUInt32 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberFromUInt32)
|
1245
|
+
#define uprv_decNumberGetBCD U_ICU_ENTRY_POINT_RENAME(uprv_decNumberGetBCD)
|
1246
|
+
#define uprv_decNumberInvert U_ICU_ENTRY_POINT_RENAME(uprv_decNumberInvert)
|
1247
|
+
#define uprv_decNumberIsNormal U_ICU_ENTRY_POINT_RENAME(uprv_decNumberIsNormal)
|
1248
|
+
#define uprv_decNumberIsSubnormal U_ICU_ENTRY_POINT_RENAME(uprv_decNumberIsSubnormal)
|
1249
|
+
#define uprv_decNumberLn U_ICU_ENTRY_POINT_RENAME(uprv_decNumberLn)
|
1250
|
+
#define uprv_decNumberLog10 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberLog10)
|
1251
|
+
#define uprv_decNumberLogB U_ICU_ENTRY_POINT_RENAME(uprv_decNumberLogB)
|
1252
|
+
#define uprv_decNumberMax U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMax)
|
1253
|
+
#define uprv_decNumberMaxMag U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMaxMag)
|
1254
|
+
#define uprv_decNumberMin U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMin)
|
1255
|
+
#define uprv_decNumberMinMag U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMinMag)
|
1256
|
+
#define uprv_decNumberMinus U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMinus)
|
1257
|
+
#define uprv_decNumberMultiply U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMultiply)
|
1258
|
+
#define uprv_decNumberNextMinus U_ICU_ENTRY_POINT_RENAME(uprv_decNumberNextMinus)
|
1259
|
+
#define uprv_decNumberNextPlus U_ICU_ENTRY_POINT_RENAME(uprv_decNumberNextPlus)
|
1260
|
+
#define uprv_decNumberNextToward U_ICU_ENTRY_POINT_RENAME(uprv_decNumberNextToward)
|
1261
|
+
#define uprv_decNumberNormalize U_ICU_ENTRY_POINT_RENAME(uprv_decNumberNormalize)
|
1262
|
+
#define uprv_decNumberOr U_ICU_ENTRY_POINT_RENAME(uprv_decNumberOr)
|
1263
|
+
#define uprv_decNumberPlus U_ICU_ENTRY_POINT_RENAME(uprv_decNumberPlus)
|
1264
|
+
#define uprv_decNumberPower U_ICU_ENTRY_POINT_RENAME(uprv_decNumberPower)
|
1265
|
+
#define uprv_decNumberQuantize U_ICU_ENTRY_POINT_RENAME(uprv_decNumberQuantize)
|
1266
|
+
#define uprv_decNumberReduce U_ICU_ENTRY_POINT_RENAME(uprv_decNumberReduce)
|
1267
|
+
#define uprv_decNumberRemainder U_ICU_ENTRY_POINT_RENAME(uprv_decNumberRemainder)
|
1268
|
+
#define uprv_decNumberRemainderNear U_ICU_ENTRY_POINT_RENAME(uprv_decNumberRemainderNear)
|
1269
|
+
#define uprv_decNumberRescale U_ICU_ENTRY_POINT_RENAME(uprv_decNumberRescale)
|
1270
|
+
#define uprv_decNumberRotate U_ICU_ENTRY_POINT_RENAME(uprv_decNumberRotate)
|
1271
|
+
#define uprv_decNumberSameQuantum U_ICU_ENTRY_POINT_RENAME(uprv_decNumberSameQuantum)
|
1272
|
+
#define uprv_decNumberScaleB U_ICU_ENTRY_POINT_RENAME(uprv_decNumberScaleB)
|
1273
|
+
#define uprv_decNumberSetBCD U_ICU_ENTRY_POINT_RENAME(uprv_decNumberSetBCD)
|
1274
|
+
#define uprv_decNumberShift U_ICU_ENTRY_POINT_RENAME(uprv_decNumberShift)
|
1275
|
+
#define uprv_decNumberSquareRoot U_ICU_ENTRY_POINT_RENAME(uprv_decNumberSquareRoot)
|
1276
|
+
#define uprv_decNumberSubtract U_ICU_ENTRY_POINT_RENAME(uprv_decNumberSubtract)
|
1277
|
+
#define uprv_decNumberToEngString U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToEngString)
|
1278
|
+
#define uprv_decNumberToInt32 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToInt32)
|
1279
|
+
#define uprv_decNumberToIntegralExact U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToIntegralExact)
|
1280
|
+
#define uprv_decNumberToIntegralValue U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToIntegralValue)
|
1281
|
+
#define uprv_decNumberToString U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToString)
|
1282
|
+
#define uprv_decNumberToUInt32 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToUInt32)
|
1283
|
+
#define uprv_decNumberTrim U_ICU_ENTRY_POINT_RENAME(uprv_decNumberTrim)
|
1284
|
+
#define uprv_decNumberVersion U_ICU_ENTRY_POINT_RENAME(uprv_decNumberVersion)
|
1285
|
+
#define uprv_decNumberXor U_ICU_ENTRY_POINT_RENAME(uprv_decNumberXor)
|
1286
|
+
#define uprv_decNumberZero U_ICU_ENTRY_POINT_RENAME(uprv_decNumberZero)
|
1287
|
+
#define uprv_deleteConditionalCE32 U_ICU_ENTRY_POINT_RENAME(uprv_deleteConditionalCE32)
|
1288
|
+
#define uprv_deleteUObject U_ICU_ENTRY_POINT_RENAME(uprv_deleteUObject)
|
1289
|
+
#define uprv_dl_close U_ICU_ENTRY_POINT_RENAME(uprv_dl_close)
|
1290
|
+
#define uprv_dl_open U_ICU_ENTRY_POINT_RENAME(uprv_dl_open)
|
1291
|
+
#define uprv_dlsym_func U_ICU_ENTRY_POINT_RENAME(uprv_dlsym_func)
|
1292
|
+
#define uprv_eastrncpy U_ICU_ENTRY_POINT_RENAME(uprv_eastrncpy)
|
1293
|
+
#define uprv_ebcdicFromAscii U_ICU_ENTRY_POINT_RENAME(uprv_ebcdicFromAscii)
|
1294
|
+
#define uprv_ebcdicToLowercaseAscii U_ICU_ENTRY_POINT_RENAME(uprv_ebcdicToLowercaseAscii)
|
1295
|
+
#define uprv_ebcdictolower U_ICU_ENTRY_POINT_RENAME(uprv_ebcdictolower)
|
1296
|
+
#define uprv_fabs U_ICU_ENTRY_POINT_RENAME(uprv_fabs)
|
1297
|
+
#define uprv_floor U_ICU_ENTRY_POINT_RENAME(uprv_floor)
|
1298
|
+
#define uprv_fmax U_ICU_ENTRY_POINT_RENAME(uprv_fmax)
|
1299
|
+
#define uprv_fmin U_ICU_ENTRY_POINT_RENAME(uprv_fmin)
|
1300
|
+
#define uprv_fmod U_ICU_ENTRY_POINT_RENAME(uprv_fmod)
|
1301
|
+
#define uprv_free U_ICU_ENTRY_POINT_RENAME(uprv_free)
|
1302
|
+
#define uprv_getCharNameCharacters U_ICU_ENTRY_POINT_RENAME(uprv_getCharNameCharacters)
|
1303
|
+
#define uprv_getDefaultCodepage U_ICU_ENTRY_POINT_RENAME(uprv_getDefaultCodepage)
|
1304
|
+
#define uprv_getDefaultLocaleID U_ICU_ENTRY_POINT_RENAME(uprv_getDefaultLocaleID)
|
1305
|
+
#define uprv_getInfinity U_ICU_ENTRY_POINT_RENAME(uprv_getInfinity)
|
1306
|
+
#define uprv_getMaxCharNameLength U_ICU_ENTRY_POINT_RENAME(uprv_getMaxCharNameLength)
|
1307
|
+
#define uprv_getMaxValues U_ICU_ENTRY_POINT_RENAME(uprv_getMaxValues)
|
1308
|
+
#define uprv_getNaN U_ICU_ENTRY_POINT_RENAME(uprv_getNaN)
|
1309
|
+
#define uprv_getRawUTCtime U_ICU_ENTRY_POINT_RENAME(uprv_getRawUTCtime)
|
1310
|
+
#define uprv_getStaticCurrencyName U_ICU_ENTRY_POINT_RENAME(uprv_getStaticCurrencyName)
|
1311
|
+
#define uprv_getUTCtime U_ICU_ENTRY_POINT_RENAME(uprv_getUTCtime)
|
1312
|
+
#define uprv_haveProperties U_ICU_ENTRY_POINT_RENAME(uprv_haveProperties)
|
1313
|
+
#define uprv_int32Comparator U_ICU_ENTRY_POINT_RENAME(uprv_int32Comparator)
|
1314
|
+
#define uprv_isASCIILetter U_ICU_ENTRY_POINT_RENAME(uprv_isASCIILetter)
|
1315
|
+
#define uprv_isInfinite U_ICU_ENTRY_POINT_RENAME(uprv_isInfinite)
|
1316
|
+
#define uprv_isInvariantString U_ICU_ENTRY_POINT_RENAME(uprv_isInvariantString)
|
1317
|
+
#define uprv_isInvariantUString U_ICU_ENTRY_POINT_RENAME(uprv_isInvariantUString)
|
1318
|
+
#define uprv_isNaN U_ICU_ENTRY_POINT_RENAME(uprv_isNaN)
|
1319
|
+
#define uprv_isNegativeInfinity U_ICU_ENTRY_POINT_RENAME(uprv_isNegativeInfinity)
|
1320
|
+
#define uprv_isPositiveInfinity U_ICU_ENTRY_POINT_RENAME(uprv_isPositiveInfinity)
|
1321
|
+
#define uprv_itou U_ICU_ENTRY_POINT_RENAME(uprv_itou)
|
1322
|
+
#define uprv_log U_ICU_ENTRY_POINT_RENAME(uprv_log)
|
1323
|
+
#define uprv_malloc U_ICU_ENTRY_POINT_RENAME(uprv_malloc)
|
1324
|
+
#define uprv_mapFile U_ICU_ENTRY_POINT_RENAME(uprv_mapFile)
|
1325
|
+
#define uprv_max U_ICU_ENTRY_POINT_RENAME(uprv_max)
|
1326
|
+
#define uprv_maxMantissa U_ICU_ENTRY_POINT_RENAME(uprv_maxMantissa)
|
1327
|
+
#define uprv_maximumPtr U_ICU_ENTRY_POINT_RENAME(uprv_maximumPtr)
|
1328
|
+
#define uprv_min U_ICU_ENTRY_POINT_RENAME(uprv_min)
|
1329
|
+
#define uprv_modf U_ICU_ENTRY_POINT_RENAME(uprv_modf)
|
1330
|
+
#define uprv_parseCurrency U_ICU_ENTRY_POINT_RENAME(uprv_parseCurrency)
|
1331
|
+
#define uprv_pathIsAbsolute U_ICU_ENTRY_POINT_RENAME(uprv_pathIsAbsolute)
|
1332
|
+
#define uprv_pow U_ICU_ENTRY_POINT_RENAME(uprv_pow)
|
1333
|
+
#define uprv_pow10 U_ICU_ENTRY_POINT_RENAME(uprv_pow10)
|
1334
|
+
#define uprv_realloc U_ICU_ENTRY_POINT_RENAME(uprv_realloc)
|
1335
|
+
#define uprv_round U_ICU_ENTRY_POINT_RENAME(uprv_round)
|
1336
|
+
#define uprv_sortArray U_ICU_ENTRY_POINT_RENAME(uprv_sortArray)
|
1337
|
+
#define uprv_stableBinarySearch U_ICU_ENTRY_POINT_RENAME(uprv_stableBinarySearch)
|
1338
|
+
#define uprv_strCompare U_ICU_ENTRY_POINT_RENAME(uprv_strCompare)
|
1339
|
+
#define uprv_strdup U_ICU_ENTRY_POINT_RENAME(uprv_strdup)
|
1340
|
+
#define uprv_stricmp U_ICU_ENTRY_POINT_RENAME(uprv_stricmp)
|
1341
|
+
#define uprv_strndup U_ICU_ENTRY_POINT_RENAME(uprv_strndup)
|
1342
|
+
#define uprv_strnicmp U_ICU_ENTRY_POINT_RENAME(uprv_strnicmp)
|
1343
|
+
#define uprv_syntaxError U_ICU_ENTRY_POINT_RENAME(uprv_syntaxError)
|
1344
|
+
#define uprv_timezone U_ICU_ENTRY_POINT_RENAME(uprv_timezone)
|
1345
|
+
#define uprv_toupper U_ICU_ENTRY_POINT_RENAME(uprv_toupper)
|
1346
|
+
#define uprv_trunc U_ICU_ENTRY_POINT_RENAME(uprv_trunc)
|
1347
|
+
#define uprv_tzname U_ICU_ENTRY_POINT_RENAME(uprv_tzname)
|
1348
|
+
#define uprv_tzset U_ICU_ENTRY_POINT_RENAME(uprv_tzset)
|
1349
|
+
#define uprv_uint16Comparator U_ICU_ENTRY_POINT_RENAME(uprv_uint16Comparator)
|
1350
|
+
#define uprv_uint32Comparator U_ICU_ENTRY_POINT_RENAME(uprv_uint32Comparator)
|
1351
|
+
#define uprv_unmapFile U_ICU_ENTRY_POINT_RENAME(uprv_unmapFile)
|
1352
|
+
#define upvec_cloneArray U_ICU_ENTRY_POINT_RENAME(upvec_cloneArray)
|
1353
|
+
#define upvec_close U_ICU_ENTRY_POINT_RENAME(upvec_close)
|
1354
|
+
#define upvec_compact U_ICU_ENTRY_POINT_RENAME(upvec_compact)
|
1355
|
+
#define upvec_compactToUTrie2Handler U_ICU_ENTRY_POINT_RENAME(upvec_compactToUTrie2Handler)
|
1356
|
+
#define upvec_compactToUTrie2WithRowIndexes U_ICU_ENTRY_POINT_RENAME(upvec_compactToUTrie2WithRowIndexes)
|
1357
|
+
#define upvec_getArray U_ICU_ENTRY_POINT_RENAME(upvec_getArray)
|
1358
|
+
#define upvec_getRow U_ICU_ENTRY_POINT_RENAME(upvec_getRow)
|
1359
|
+
#define upvec_getValue U_ICU_ENTRY_POINT_RENAME(upvec_getValue)
|
1360
|
+
#define upvec_open U_ICU_ENTRY_POINT_RENAME(upvec_open)
|
1361
|
+
#define upvec_setValue U_ICU_ENTRY_POINT_RENAME(upvec_setValue)
|
1362
|
+
#define uregex_appendReplacement U_ICU_ENTRY_POINT_RENAME(uregex_appendReplacement)
|
1363
|
+
#define uregex_appendReplacementUText U_ICU_ENTRY_POINT_RENAME(uregex_appendReplacementUText)
|
1364
|
+
#define uregex_appendTail U_ICU_ENTRY_POINT_RENAME(uregex_appendTail)
|
1365
|
+
#define uregex_appendTailUText U_ICU_ENTRY_POINT_RENAME(uregex_appendTailUText)
|
1366
|
+
#define uregex_clone U_ICU_ENTRY_POINT_RENAME(uregex_clone)
|
1367
|
+
#define uregex_close U_ICU_ENTRY_POINT_RENAME(uregex_close)
|
1368
|
+
#define uregex_end U_ICU_ENTRY_POINT_RENAME(uregex_end)
|
1369
|
+
#define uregex_end64 U_ICU_ENTRY_POINT_RENAME(uregex_end64)
|
1370
|
+
#define uregex_find U_ICU_ENTRY_POINT_RENAME(uregex_find)
|
1371
|
+
#define uregex_find64 U_ICU_ENTRY_POINT_RENAME(uregex_find64)
|
1372
|
+
#define uregex_findNext U_ICU_ENTRY_POINT_RENAME(uregex_findNext)
|
1373
|
+
#define uregex_flags U_ICU_ENTRY_POINT_RENAME(uregex_flags)
|
1374
|
+
#define uregex_getFindProgressCallback U_ICU_ENTRY_POINT_RENAME(uregex_getFindProgressCallback)
|
1375
|
+
#define uregex_getMatchCallback U_ICU_ENTRY_POINT_RENAME(uregex_getMatchCallback)
|
1376
|
+
#define uregex_getStackLimit U_ICU_ENTRY_POINT_RENAME(uregex_getStackLimit)
|
1377
|
+
#define uregex_getText U_ICU_ENTRY_POINT_RENAME(uregex_getText)
|
1378
|
+
#define uregex_getTimeLimit U_ICU_ENTRY_POINT_RENAME(uregex_getTimeLimit)
|
1379
|
+
#define uregex_getUText U_ICU_ENTRY_POINT_RENAME(uregex_getUText)
|
1380
|
+
#define uregex_group U_ICU_ENTRY_POINT_RENAME(uregex_group)
|
1381
|
+
#define uregex_groupCount U_ICU_ENTRY_POINT_RENAME(uregex_groupCount)
|
1382
|
+
#define uregex_groupUText U_ICU_ENTRY_POINT_RENAME(uregex_groupUText)
|
1383
|
+
#define uregex_groupUTextDeep U_ICU_ENTRY_POINT_RENAME(uregex_groupUTextDeep)
|
1384
|
+
#define uregex_hasAnchoringBounds U_ICU_ENTRY_POINT_RENAME(uregex_hasAnchoringBounds)
|
1385
|
+
#define uregex_hasTransparentBounds U_ICU_ENTRY_POINT_RENAME(uregex_hasTransparentBounds)
|
1386
|
+
#define uregex_hitEnd U_ICU_ENTRY_POINT_RENAME(uregex_hitEnd)
|
1387
|
+
#define uregex_lookingAt U_ICU_ENTRY_POINT_RENAME(uregex_lookingAt)
|
1388
|
+
#define uregex_lookingAt64 U_ICU_ENTRY_POINT_RENAME(uregex_lookingAt64)
|
1389
|
+
#define uregex_matches U_ICU_ENTRY_POINT_RENAME(uregex_matches)
|
1390
|
+
#define uregex_matches64 U_ICU_ENTRY_POINT_RENAME(uregex_matches64)
|
1391
|
+
#define uregex_open U_ICU_ENTRY_POINT_RENAME(uregex_open)
|
1392
|
+
#define uregex_openC U_ICU_ENTRY_POINT_RENAME(uregex_openC)
|
1393
|
+
#define uregex_openUText U_ICU_ENTRY_POINT_RENAME(uregex_openUText)
|
1394
|
+
#define uregex_pattern U_ICU_ENTRY_POINT_RENAME(uregex_pattern)
|
1395
|
+
#define uregex_patternUText U_ICU_ENTRY_POINT_RENAME(uregex_patternUText)
|
1396
|
+
#define uregex_refreshUText U_ICU_ENTRY_POINT_RENAME(uregex_refreshUText)
|
1397
|
+
#define uregex_regionEnd U_ICU_ENTRY_POINT_RENAME(uregex_regionEnd)
|
1398
|
+
#define uregex_regionEnd64 U_ICU_ENTRY_POINT_RENAME(uregex_regionEnd64)
|
1399
|
+
#define uregex_regionStart U_ICU_ENTRY_POINT_RENAME(uregex_regionStart)
|
1400
|
+
#define uregex_regionStart64 U_ICU_ENTRY_POINT_RENAME(uregex_regionStart64)
|
1401
|
+
#define uregex_replaceAll U_ICU_ENTRY_POINT_RENAME(uregex_replaceAll)
|
1402
|
+
#define uregex_replaceAllUText U_ICU_ENTRY_POINT_RENAME(uregex_replaceAllUText)
|
1403
|
+
#define uregex_replaceFirst U_ICU_ENTRY_POINT_RENAME(uregex_replaceFirst)
|
1404
|
+
#define uregex_replaceFirstUText U_ICU_ENTRY_POINT_RENAME(uregex_replaceFirstUText)
|
1405
|
+
#define uregex_requireEnd U_ICU_ENTRY_POINT_RENAME(uregex_requireEnd)
|
1406
|
+
#define uregex_reset U_ICU_ENTRY_POINT_RENAME(uregex_reset)
|
1407
|
+
#define uregex_reset64 U_ICU_ENTRY_POINT_RENAME(uregex_reset64)
|
1408
|
+
#define uregex_setFindProgressCallback U_ICU_ENTRY_POINT_RENAME(uregex_setFindProgressCallback)
|
1409
|
+
#define uregex_setMatchCallback U_ICU_ENTRY_POINT_RENAME(uregex_setMatchCallback)
|
1410
|
+
#define uregex_setRegion U_ICU_ENTRY_POINT_RENAME(uregex_setRegion)
|
1411
|
+
#define uregex_setRegion64 U_ICU_ENTRY_POINT_RENAME(uregex_setRegion64)
|
1412
|
+
#define uregex_setRegionAndStart U_ICU_ENTRY_POINT_RENAME(uregex_setRegionAndStart)
|
1413
|
+
#define uregex_setStackLimit U_ICU_ENTRY_POINT_RENAME(uregex_setStackLimit)
|
1414
|
+
#define uregex_setText U_ICU_ENTRY_POINT_RENAME(uregex_setText)
|
1415
|
+
#define uregex_setTimeLimit U_ICU_ENTRY_POINT_RENAME(uregex_setTimeLimit)
|
1416
|
+
#define uregex_setUText U_ICU_ENTRY_POINT_RENAME(uregex_setUText)
|
1417
|
+
#define uregex_split U_ICU_ENTRY_POINT_RENAME(uregex_split)
|
1418
|
+
#define uregex_splitUText U_ICU_ENTRY_POINT_RENAME(uregex_splitUText)
|
1419
|
+
#define uregex_start U_ICU_ENTRY_POINT_RENAME(uregex_start)
|
1420
|
+
#define uregex_start64 U_ICU_ENTRY_POINT_RENAME(uregex_start64)
|
1421
|
+
#define uregex_ucstr_unescape_charAt U_ICU_ENTRY_POINT_RENAME(uregex_ucstr_unescape_charAt)
|
1422
|
+
#define uregex_useAnchoringBounds U_ICU_ENTRY_POINT_RENAME(uregex_useAnchoringBounds)
|
1423
|
+
#define uregex_useTransparentBounds U_ICU_ENTRY_POINT_RENAME(uregex_useTransparentBounds)
|
1424
|
+
#define uregex_utext_unescape_charAt U_ICU_ENTRY_POINT_RENAME(uregex_utext_unescape_charAt)
|
1425
|
+
#define uregion_areEqual U_ICU_ENTRY_POINT_RENAME(uregion_areEqual)
|
1426
|
+
#define uregion_contains U_ICU_ENTRY_POINT_RENAME(uregion_contains)
|
1427
|
+
#define uregion_getAvailable U_ICU_ENTRY_POINT_RENAME(uregion_getAvailable)
|
1428
|
+
#define uregion_getContainedRegions U_ICU_ENTRY_POINT_RENAME(uregion_getContainedRegions)
|
1429
|
+
#define uregion_getContainedRegionsOfType U_ICU_ENTRY_POINT_RENAME(uregion_getContainedRegionsOfType)
|
1430
|
+
#define uregion_getContainingRegion U_ICU_ENTRY_POINT_RENAME(uregion_getContainingRegion)
|
1431
|
+
#define uregion_getContainingRegionOfType U_ICU_ENTRY_POINT_RENAME(uregion_getContainingRegionOfType)
|
1432
|
+
#define uregion_getNumericCode U_ICU_ENTRY_POINT_RENAME(uregion_getNumericCode)
|
1433
|
+
#define uregion_getPreferredValues U_ICU_ENTRY_POINT_RENAME(uregion_getPreferredValues)
|
1434
|
+
#define uregion_getRegionCode U_ICU_ENTRY_POINT_RENAME(uregion_getRegionCode)
|
1435
|
+
#define uregion_getRegionFromCode U_ICU_ENTRY_POINT_RENAME(uregion_getRegionFromCode)
|
1436
|
+
#define uregion_getRegionFromNumericCode U_ICU_ENTRY_POINT_RENAME(uregion_getRegionFromNumericCode)
|
1437
|
+
#define uregion_getType U_ICU_ENTRY_POINT_RENAME(uregion_getType)
|
1438
|
+
#define ures_close U_ICU_ENTRY_POINT_RENAME(ures_close)
|
1439
|
+
#define ures_copyResb U_ICU_ENTRY_POINT_RENAME(ures_copyResb)
|
1440
|
+
#define ures_countArrayItems U_ICU_ENTRY_POINT_RENAME(ures_countArrayItems)
|
1441
|
+
#define ures_findResource U_ICU_ENTRY_POINT_RENAME(ures_findResource)
|
1442
|
+
#define ures_findSubResource U_ICU_ENTRY_POINT_RENAME(ures_findSubResource)
|
1443
|
+
#define ures_getBinary U_ICU_ENTRY_POINT_RENAME(ures_getBinary)
|
1444
|
+
#define ures_getByIndex U_ICU_ENTRY_POINT_RENAME(ures_getByIndex)
|
1445
|
+
#define ures_getByKey U_ICU_ENTRY_POINT_RENAME(ures_getByKey)
|
1446
|
+
#define ures_getByKeyWithFallback U_ICU_ENTRY_POINT_RENAME(ures_getByKeyWithFallback)
|
1447
|
+
#define ures_getFunctionalEquivalent U_ICU_ENTRY_POINT_RENAME(ures_getFunctionalEquivalent)
|
1448
|
+
#define ures_getInt U_ICU_ENTRY_POINT_RENAME(ures_getInt)
|
1449
|
+
#define ures_getIntVector U_ICU_ENTRY_POINT_RENAME(ures_getIntVector)
|
1450
|
+
#define ures_getKey U_ICU_ENTRY_POINT_RENAME(ures_getKey)
|
1451
|
+
#define ures_getKeywordValues U_ICU_ENTRY_POINT_RENAME(ures_getKeywordValues)
|
1452
|
+
#define ures_getLocale U_ICU_ENTRY_POINT_RENAME(ures_getLocale)
|
1453
|
+
#define ures_getLocaleByType U_ICU_ENTRY_POINT_RENAME(ures_getLocaleByType)
|
1454
|
+
#define ures_getLocaleInternal U_ICU_ENTRY_POINT_RENAME(ures_getLocaleInternal)
|
1455
|
+
#define ures_getName U_ICU_ENTRY_POINT_RENAME(ures_getName)
|
1456
|
+
#define ures_getNextResource U_ICU_ENTRY_POINT_RENAME(ures_getNextResource)
|
1457
|
+
#define ures_getNextString U_ICU_ENTRY_POINT_RENAME(ures_getNextString)
|
1458
|
+
#define ures_getSize U_ICU_ENTRY_POINT_RENAME(ures_getSize)
|
1459
|
+
#define ures_getString U_ICU_ENTRY_POINT_RENAME(ures_getString)
|
1460
|
+
#define ures_getStringByIndex U_ICU_ENTRY_POINT_RENAME(ures_getStringByIndex)
|
1461
|
+
#define ures_getStringByKey U_ICU_ENTRY_POINT_RENAME(ures_getStringByKey)
|
1462
|
+
#define ures_getStringByKeyWithFallback U_ICU_ENTRY_POINT_RENAME(ures_getStringByKeyWithFallback)
|
1463
|
+
#define ures_getType U_ICU_ENTRY_POINT_RENAME(ures_getType)
|
1464
|
+
#define ures_getUInt U_ICU_ENTRY_POINT_RENAME(ures_getUInt)
|
1465
|
+
#define ures_getUTF8String U_ICU_ENTRY_POINT_RENAME(ures_getUTF8String)
|
1466
|
+
#define ures_getUTF8StringByIndex U_ICU_ENTRY_POINT_RENAME(ures_getUTF8StringByIndex)
|
1467
|
+
#define ures_getUTF8StringByKey U_ICU_ENTRY_POINT_RENAME(ures_getUTF8StringByKey)
|
1468
|
+
#define ures_getVersion U_ICU_ENTRY_POINT_RENAME(ures_getVersion)
|
1469
|
+
#define ures_getVersionByKey U_ICU_ENTRY_POINT_RENAME(ures_getVersionByKey)
|
1470
|
+
#define ures_getVersionNumber U_ICU_ENTRY_POINT_RENAME(ures_getVersionNumber)
|
1471
|
+
#define ures_getVersionNumberInternal U_ICU_ENTRY_POINT_RENAME(ures_getVersionNumberInternal)
|
1472
|
+
#define ures_hasNext U_ICU_ENTRY_POINT_RENAME(ures_hasNext)
|
1473
|
+
#define ures_initStackObject U_ICU_ENTRY_POINT_RENAME(ures_initStackObject)
|
1474
|
+
#define ures_open U_ICU_ENTRY_POINT_RENAME(ures_open)
|
1475
|
+
#define ures_openAvailableLocales U_ICU_ENTRY_POINT_RENAME(ures_openAvailableLocales)
|
1476
|
+
#define ures_openDirect U_ICU_ENTRY_POINT_RENAME(ures_openDirect)
|
1477
|
+
#define ures_openFillIn U_ICU_ENTRY_POINT_RENAME(ures_openFillIn)
|
1478
|
+
#define ures_openU U_ICU_ENTRY_POINT_RENAME(ures_openU)
|
1479
|
+
#define ures_resetIterator U_ICU_ENTRY_POINT_RENAME(ures_resetIterator)
|
1480
|
+
#define ures_swap U_ICU_ENTRY_POINT_RENAME(ures_swap)
|
1481
|
+
#define uscript_breaksBetweenLetters U_ICU_ENTRY_POINT_RENAME(uscript_breaksBetweenLetters)
|
1482
|
+
#define uscript_closeRun U_ICU_ENTRY_POINT_RENAME(uscript_closeRun)
|
1483
|
+
#define uscript_getCode U_ICU_ENTRY_POINT_RENAME(uscript_getCode)
|
1484
|
+
#define uscript_getName U_ICU_ENTRY_POINT_RENAME(uscript_getName)
|
1485
|
+
#define uscript_getSampleString U_ICU_ENTRY_POINT_RENAME(uscript_getSampleString)
|
1486
|
+
#define uscript_getSampleUnicodeString U_ICU_ENTRY_POINT_RENAME(uscript_getSampleUnicodeString)
|
1487
|
+
#define uscript_getScript U_ICU_ENTRY_POINT_RENAME(uscript_getScript)
|
1488
|
+
#define uscript_getScriptExtensions U_ICU_ENTRY_POINT_RENAME(uscript_getScriptExtensions)
|
1489
|
+
#define uscript_getShortName U_ICU_ENTRY_POINT_RENAME(uscript_getShortName)
|
1490
|
+
#define uscript_getUsage U_ICU_ENTRY_POINT_RENAME(uscript_getUsage)
|
1491
|
+
#define uscript_hasScript U_ICU_ENTRY_POINT_RENAME(uscript_hasScript)
|
1492
|
+
#define uscript_isCased U_ICU_ENTRY_POINT_RENAME(uscript_isCased)
|
1493
|
+
#define uscript_isRightToLeft U_ICU_ENTRY_POINT_RENAME(uscript_isRightToLeft)
|
1494
|
+
#define uscript_nextRun U_ICU_ENTRY_POINT_RENAME(uscript_nextRun)
|
1495
|
+
#define uscript_openRun U_ICU_ENTRY_POINT_RENAME(uscript_openRun)
|
1496
|
+
#define uscript_resetRun U_ICU_ENTRY_POINT_RENAME(uscript_resetRun)
|
1497
|
+
#define uscript_setRunText U_ICU_ENTRY_POINT_RENAME(uscript_setRunText)
|
1498
|
+
#define usearch_close U_ICU_ENTRY_POINT_RENAME(usearch_close)
|
1499
|
+
#define usearch_first U_ICU_ENTRY_POINT_RENAME(usearch_first)
|
1500
|
+
#define usearch_following U_ICU_ENTRY_POINT_RENAME(usearch_following)
|
1501
|
+
#define usearch_getAttribute U_ICU_ENTRY_POINT_RENAME(usearch_getAttribute)
|
1502
|
+
#define usearch_getBreakIterator U_ICU_ENTRY_POINT_RENAME(usearch_getBreakIterator)
|
1503
|
+
#define usearch_getCollator U_ICU_ENTRY_POINT_RENAME(usearch_getCollator)
|
1504
|
+
#define usearch_getMatchedLength U_ICU_ENTRY_POINT_RENAME(usearch_getMatchedLength)
|
1505
|
+
#define usearch_getMatchedStart U_ICU_ENTRY_POINT_RENAME(usearch_getMatchedStart)
|
1506
|
+
#define usearch_getMatchedText U_ICU_ENTRY_POINT_RENAME(usearch_getMatchedText)
|
1507
|
+
#define usearch_getOffset U_ICU_ENTRY_POINT_RENAME(usearch_getOffset)
|
1508
|
+
#define usearch_getPattern U_ICU_ENTRY_POINT_RENAME(usearch_getPattern)
|
1509
|
+
#define usearch_getText U_ICU_ENTRY_POINT_RENAME(usearch_getText)
|
1510
|
+
#define usearch_handleNextCanonical U_ICU_ENTRY_POINT_RENAME(usearch_handleNextCanonical)
|
1511
|
+
#define usearch_handleNextExact U_ICU_ENTRY_POINT_RENAME(usearch_handleNextExact)
|
1512
|
+
#define usearch_handlePreviousCanonical U_ICU_ENTRY_POINT_RENAME(usearch_handlePreviousCanonical)
|
1513
|
+
#define usearch_handlePreviousExact U_ICU_ENTRY_POINT_RENAME(usearch_handlePreviousExact)
|
1514
|
+
#define usearch_last U_ICU_ENTRY_POINT_RENAME(usearch_last)
|
1515
|
+
#define usearch_next U_ICU_ENTRY_POINT_RENAME(usearch_next)
|
1516
|
+
#define usearch_open U_ICU_ENTRY_POINT_RENAME(usearch_open)
|
1517
|
+
#define usearch_openFromCollator U_ICU_ENTRY_POINT_RENAME(usearch_openFromCollator)
|
1518
|
+
#define usearch_preceding U_ICU_ENTRY_POINT_RENAME(usearch_preceding)
|
1519
|
+
#define usearch_previous U_ICU_ENTRY_POINT_RENAME(usearch_previous)
|
1520
|
+
#define usearch_reset U_ICU_ENTRY_POINT_RENAME(usearch_reset)
|
1521
|
+
#define usearch_search U_ICU_ENTRY_POINT_RENAME(usearch_search)
|
1522
|
+
#define usearch_searchBackwards U_ICU_ENTRY_POINT_RENAME(usearch_searchBackwards)
|
1523
|
+
#define usearch_setAttribute U_ICU_ENTRY_POINT_RENAME(usearch_setAttribute)
|
1524
|
+
#define usearch_setBreakIterator U_ICU_ENTRY_POINT_RENAME(usearch_setBreakIterator)
|
1525
|
+
#define usearch_setCollator U_ICU_ENTRY_POINT_RENAME(usearch_setCollator)
|
1526
|
+
#define usearch_setOffset U_ICU_ENTRY_POINT_RENAME(usearch_setOffset)
|
1527
|
+
#define usearch_setPattern U_ICU_ENTRY_POINT_RENAME(usearch_setPattern)
|
1528
|
+
#define usearch_setText U_ICU_ENTRY_POINT_RENAME(usearch_setText)
|
1529
|
+
#define uset_add U_ICU_ENTRY_POINT_RENAME(uset_add)
|
1530
|
+
#define uset_addAll U_ICU_ENTRY_POINT_RENAME(uset_addAll)
|
1531
|
+
#define uset_addAllCodePoints U_ICU_ENTRY_POINT_RENAME(uset_addAllCodePoints)
|
1532
|
+
#define uset_addRange U_ICU_ENTRY_POINT_RENAME(uset_addRange)
|
1533
|
+
#define uset_addString U_ICU_ENTRY_POINT_RENAME(uset_addString)
|
1534
|
+
#define uset_applyIntPropertyValue U_ICU_ENTRY_POINT_RENAME(uset_applyIntPropertyValue)
|
1535
|
+
#define uset_applyPattern U_ICU_ENTRY_POINT_RENAME(uset_applyPattern)
|
1536
|
+
#define uset_applyPropertyAlias U_ICU_ENTRY_POINT_RENAME(uset_applyPropertyAlias)
|
1537
|
+
#define uset_charAt U_ICU_ENTRY_POINT_RENAME(uset_charAt)
|
1538
|
+
#define uset_clear U_ICU_ENTRY_POINT_RENAME(uset_clear)
|
1539
|
+
#define uset_clone U_ICU_ENTRY_POINT_RENAME(uset_clone)
|
1540
|
+
#define uset_cloneAsThawed U_ICU_ENTRY_POINT_RENAME(uset_cloneAsThawed)
|
1541
|
+
#define uset_close U_ICU_ENTRY_POINT_RENAME(uset_close)
|
1542
|
+
#define uset_closeOver U_ICU_ENTRY_POINT_RENAME(uset_closeOver)
|
1543
|
+
#define uset_compact U_ICU_ENTRY_POINT_RENAME(uset_compact)
|
1544
|
+
#define uset_complement U_ICU_ENTRY_POINT_RENAME(uset_complement)
|
1545
|
+
#define uset_complementAll U_ICU_ENTRY_POINT_RENAME(uset_complementAll)
|
1546
|
+
#define uset_contains U_ICU_ENTRY_POINT_RENAME(uset_contains)
|
1547
|
+
#define uset_containsAll U_ICU_ENTRY_POINT_RENAME(uset_containsAll)
|
1548
|
+
#define uset_containsAllCodePoints U_ICU_ENTRY_POINT_RENAME(uset_containsAllCodePoints)
|
1549
|
+
#define uset_containsNone U_ICU_ENTRY_POINT_RENAME(uset_containsNone)
|
1550
|
+
#define uset_containsRange U_ICU_ENTRY_POINT_RENAME(uset_containsRange)
|
1551
|
+
#define uset_containsSome U_ICU_ENTRY_POINT_RENAME(uset_containsSome)
|
1552
|
+
#define uset_containsString U_ICU_ENTRY_POINT_RENAME(uset_containsString)
|
1553
|
+
#define uset_equals U_ICU_ENTRY_POINT_RENAME(uset_equals)
|
1554
|
+
#define uset_freeze U_ICU_ENTRY_POINT_RENAME(uset_freeze)
|
1555
|
+
#define uset_getItem U_ICU_ENTRY_POINT_RENAME(uset_getItem)
|
1556
|
+
#define uset_getItemCount U_ICU_ENTRY_POINT_RENAME(uset_getItemCount)
|
1557
|
+
#define uset_getSerializedRange U_ICU_ENTRY_POINT_RENAME(uset_getSerializedRange)
|
1558
|
+
#define uset_getSerializedRangeCount U_ICU_ENTRY_POINT_RENAME(uset_getSerializedRangeCount)
|
1559
|
+
#define uset_getSerializedSet U_ICU_ENTRY_POINT_RENAME(uset_getSerializedSet)
|
1560
|
+
#define uset_indexOf U_ICU_ENTRY_POINT_RENAME(uset_indexOf)
|
1561
|
+
#define uset_isEmpty U_ICU_ENTRY_POINT_RENAME(uset_isEmpty)
|
1562
|
+
#define uset_isFrozen U_ICU_ENTRY_POINT_RENAME(uset_isFrozen)
|
1563
|
+
#define uset_open U_ICU_ENTRY_POINT_RENAME(uset_open)
|
1564
|
+
#define uset_openEmpty U_ICU_ENTRY_POINT_RENAME(uset_openEmpty)
|
1565
|
+
#define uset_openPattern U_ICU_ENTRY_POINT_RENAME(uset_openPattern)
|
1566
|
+
#define uset_openPatternOptions U_ICU_ENTRY_POINT_RENAME(uset_openPatternOptions)
|
1567
|
+
#define uset_remove U_ICU_ENTRY_POINT_RENAME(uset_remove)
|
1568
|
+
#define uset_removeAll U_ICU_ENTRY_POINT_RENAME(uset_removeAll)
|
1569
|
+
#define uset_removeAllStrings U_ICU_ENTRY_POINT_RENAME(uset_removeAllStrings)
|
1570
|
+
#define uset_removeRange U_ICU_ENTRY_POINT_RENAME(uset_removeRange)
|
1571
|
+
#define uset_removeString U_ICU_ENTRY_POINT_RENAME(uset_removeString)
|
1572
|
+
#define uset_resemblesPattern U_ICU_ENTRY_POINT_RENAME(uset_resemblesPattern)
|
1573
|
+
#define uset_retain U_ICU_ENTRY_POINT_RENAME(uset_retain)
|
1574
|
+
#define uset_retainAll U_ICU_ENTRY_POINT_RENAME(uset_retainAll)
|
1575
|
+
#define uset_serialize U_ICU_ENTRY_POINT_RENAME(uset_serialize)
|
1576
|
+
#define uset_serializedContains U_ICU_ENTRY_POINT_RENAME(uset_serializedContains)
|
1577
|
+
#define uset_set U_ICU_ENTRY_POINT_RENAME(uset_set)
|
1578
|
+
#define uset_setSerializedToOne U_ICU_ENTRY_POINT_RENAME(uset_setSerializedToOne)
|
1579
|
+
#define uset_size U_ICU_ENTRY_POINT_RENAME(uset_size)
|
1580
|
+
#define uset_span U_ICU_ENTRY_POINT_RENAME(uset_span)
|
1581
|
+
#define uset_spanBack U_ICU_ENTRY_POINT_RENAME(uset_spanBack)
|
1582
|
+
#define uset_spanBackUTF8 U_ICU_ENTRY_POINT_RENAME(uset_spanBackUTF8)
|
1583
|
+
#define uset_spanUTF8 U_ICU_ENTRY_POINT_RENAME(uset_spanUTF8)
|
1584
|
+
#define uset_toPattern U_ICU_ENTRY_POINT_RENAME(uset_toPattern)
|
1585
|
+
#define uspoof_areConfusable U_ICU_ENTRY_POINT_RENAME(uspoof_areConfusable)
|
1586
|
+
#define uspoof_areConfusableUTF8 U_ICU_ENTRY_POINT_RENAME(uspoof_areConfusableUTF8)
|
1587
|
+
#define uspoof_areConfusableUnicodeString U_ICU_ENTRY_POINT_RENAME(uspoof_areConfusableUnicodeString)
|
1588
|
+
#define uspoof_check U_ICU_ENTRY_POINT_RENAME(uspoof_check)
|
1589
|
+
#define uspoof_checkUTF8 U_ICU_ENTRY_POINT_RENAME(uspoof_checkUTF8)
|
1590
|
+
#define uspoof_checkUnicodeString U_ICU_ENTRY_POINT_RENAME(uspoof_checkUnicodeString)
|
1591
|
+
#define uspoof_clone U_ICU_ENTRY_POINT_RENAME(uspoof_clone)
|
1592
|
+
#define uspoof_close U_ICU_ENTRY_POINT_RENAME(uspoof_close)
|
1593
|
+
#define uspoof_getAllowedChars U_ICU_ENTRY_POINT_RENAME(uspoof_getAllowedChars)
|
1594
|
+
#define uspoof_getAllowedLocales U_ICU_ENTRY_POINT_RENAME(uspoof_getAllowedLocales)
|
1595
|
+
#define uspoof_getAllowedUnicodeSet U_ICU_ENTRY_POINT_RENAME(uspoof_getAllowedUnicodeSet)
|
1596
|
+
#define uspoof_getChecks U_ICU_ENTRY_POINT_RENAME(uspoof_getChecks)
|
1597
|
+
#define uspoof_getInclusionSet U_ICU_ENTRY_POINT_RENAME(uspoof_getInclusionSet)
|
1598
|
+
#define uspoof_getInclusionUnicodeSet U_ICU_ENTRY_POINT_RENAME(uspoof_getInclusionUnicodeSet)
|
1599
|
+
#define uspoof_getRecommendedSet U_ICU_ENTRY_POINT_RENAME(uspoof_getRecommendedSet)
|
1600
|
+
#define uspoof_getRecommendedUnicodeSet U_ICU_ENTRY_POINT_RENAME(uspoof_getRecommendedUnicodeSet)
|
1601
|
+
#define uspoof_getRestrictionLevel U_ICU_ENTRY_POINT_RENAME(uspoof_getRestrictionLevel)
|
1602
|
+
#define uspoof_getSkeleton U_ICU_ENTRY_POINT_RENAME(uspoof_getSkeleton)
|
1603
|
+
#define uspoof_getSkeletonUTF8 U_ICU_ENTRY_POINT_RENAME(uspoof_getSkeletonUTF8)
|
1604
|
+
#define uspoof_getSkeletonUnicodeString U_ICU_ENTRY_POINT_RENAME(uspoof_getSkeletonUnicodeString)
|
1605
|
+
#define uspoof_open U_ICU_ENTRY_POINT_RENAME(uspoof_open)
|
1606
|
+
#define uspoof_openFromSerialized U_ICU_ENTRY_POINT_RENAME(uspoof_openFromSerialized)
|
1607
|
+
#define uspoof_openFromSource U_ICU_ENTRY_POINT_RENAME(uspoof_openFromSource)
|
1608
|
+
#define uspoof_serialize U_ICU_ENTRY_POINT_RENAME(uspoof_serialize)
|
1609
|
+
#define uspoof_setAllowedChars U_ICU_ENTRY_POINT_RENAME(uspoof_setAllowedChars)
|
1610
|
+
#define uspoof_setAllowedLocales U_ICU_ENTRY_POINT_RENAME(uspoof_setAllowedLocales)
|
1611
|
+
#define uspoof_setAllowedUnicodeSet U_ICU_ENTRY_POINT_RENAME(uspoof_setAllowedUnicodeSet)
|
1612
|
+
#define uspoof_setChecks U_ICU_ENTRY_POINT_RENAME(uspoof_setChecks)
|
1613
|
+
#define uspoof_setRestrictionLevel U_ICU_ENTRY_POINT_RENAME(uspoof_setRestrictionLevel)
|
1614
|
+
#define uspoof_swap U_ICU_ENTRY_POINT_RENAME(uspoof_swap)
|
1615
|
+
#define usprep_close U_ICU_ENTRY_POINT_RENAME(usprep_close)
|
1616
|
+
#define usprep_open U_ICU_ENTRY_POINT_RENAME(usprep_open)
|
1617
|
+
#define usprep_openByType U_ICU_ENTRY_POINT_RENAME(usprep_openByType)
|
1618
|
+
#define usprep_prepare U_ICU_ENTRY_POINT_RENAME(usprep_prepare)
|
1619
|
+
#define usprep_swap U_ICU_ENTRY_POINT_RENAME(usprep_swap)
|
1620
|
+
#define ustr_hashCharsN U_ICU_ENTRY_POINT_RENAME(ustr_hashCharsN)
|
1621
|
+
#define ustr_hashICharsN U_ICU_ENTRY_POINT_RENAME(ustr_hashICharsN)
|
1622
|
+
#define ustr_hashUCharsN U_ICU_ENTRY_POINT_RENAME(ustr_hashUCharsN)
|
1623
|
+
#define ustrcase_internalFold U_ICU_ENTRY_POINT_RENAME(ustrcase_internalFold)
|
1624
|
+
#define ustrcase_internalToLower U_ICU_ENTRY_POINT_RENAME(ustrcase_internalToLower)
|
1625
|
+
#define ustrcase_internalToTitle U_ICU_ENTRY_POINT_RENAME(ustrcase_internalToTitle)
|
1626
|
+
#define ustrcase_internalToUpper U_ICU_ENTRY_POINT_RENAME(ustrcase_internalToUpper)
|
1627
|
+
#define ustrcase_map U_ICU_ENTRY_POINT_RENAME(ustrcase_map)
|
1628
|
+
#define ustrcase_setTempCaseMapLocale U_ICU_ENTRY_POINT_RENAME(ustrcase_setTempCaseMapLocale)
|
1629
|
+
#define utext_char32At U_ICU_ENTRY_POINT_RENAME(utext_char32At)
|
1630
|
+
#define utext_clone U_ICU_ENTRY_POINT_RENAME(utext_clone)
|
1631
|
+
#define utext_close U_ICU_ENTRY_POINT_RENAME(utext_close)
|
1632
|
+
#define utext_copy U_ICU_ENTRY_POINT_RENAME(utext_copy)
|
1633
|
+
#define utext_current32 U_ICU_ENTRY_POINT_RENAME(utext_current32)
|
1634
|
+
#define utext_equals U_ICU_ENTRY_POINT_RENAME(utext_equals)
|
1635
|
+
#define utext_extract U_ICU_ENTRY_POINT_RENAME(utext_extract)
|
1636
|
+
#define utext_freeze U_ICU_ENTRY_POINT_RENAME(utext_freeze)
|
1637
|
+
#define utext_getNativeIndex U_ICU_ENTRY_POINT_RENAME(utext_getNativeIndex)
|
1638
|
+
#define utext_getPreviousNativeIndex U_ICU_ENTRY_POINT_RENAME(utext_getPreviousNativeIndex)
|
1639
|
+
#define utext_hasMetaData U_ICU_ENTRY_POINT_RENAME(utext_hasMetaData)
|
1640
|
+
#define utext_isLengthExpensive U_ICU_ENTRY_POINT_RENAME(utext_isLengthExpensive)
|
1641
|
+
#define utext_isWritable U_ICU_ENTRY_POINT_RENAME(utext_isWritable)
|
1642
|
+
#define utext_moveIndex32 U_ICU_ENTRY_POINT_RENAME(utext_moveIndex32)
|
1643
|
+
#define utext_nativeLength U_ICU_ENTRY_POINT_RENAME(utext_nativeLength)
|
1644
|
+
#define utext_next32 U_ICU_ENTRY_POINT_RENAME(utext_next32)
|
1645
|
+
#define utext_next32From U_ICU_ENTRY_POINT_RENAME(utext_next32From)
|
1646
|
+
#define utext_openCharacterIterator U_ICU_ENTRY_POINT_RENAME(utext_openCharacterIterator)
|
1647
|
+
#define utext_openConstUnicodeString U_ICU_ENTRY_POINT_RENAME(utext_openConstUnicodeString)
|
1648
|
+
#define utext_openReplaceable U_ICU_ENTRY_POINT_RENAME(utext_openReplaceable)
|
1649
|
+
#define utext_openUChars U_ICU_ENTRY_POINT_RENAME(utext_openUChars)
|
1650
|
+
#define utext_openUTF8 U_ICU_ENTRY_POINT_RENAME(utext_openUTF8)
|
1651
|
+
#define utext_openUnicodeString U_ICU_ENTRY_POINT_RENAME(utext_openUnicodeString)
|
1652
|
+
#define utext_previous32 U_ICU_ENTRY_POINT_RENAME(utext_previous32)
|
1653
|
+
#define utext_previous32From U_ICU_ENTRY_POINT_RENAME(utext_previous32From)
|
1654
|
+
#define utext_replace U_ICU_ENTRY_POINT_RENAME(utext_replace)
|
1655
|
+
#define utext_setNativeIndex U_ICU_ENTRY_POINT_RENAME(utext_setNativeIndex)
|
1656
|
+
#define utext_setup U_ICU_ENTRY_POINT_RENAME(utext_setup)
|
1657
|
+
#define utf8_appendCharSafeBody U_ICU_ENTRY_POINT_RENAME(utf8_appendCharSafeBody)
|
1658
|
+
#define utf8_back1SafeBody U_ICU_ENTRY_POINT_RENAME(utf8_back1SafeBody)
|
1659
|
+
#define utf8_countTrailBytes U_ICU_ENTRY_POINT_RENAME(utf8_countTrailBytes)
|
1660
|
+
#define utf8_nextCharSafeBody U_ICU_ENTRY_POINT_RENAME(utf8_nextCharSafeBody)
|
1661
|
+
#define utf8_prevCharSafeBody U_ICU_ENTRY_POINT_RENAME(utf8_prevCharSafeBody)
|
1662
|
+
#define utmscale_fromInt64 U_ICU_ENTRY_POINT_RENAME(utmscale_fromInt64)
|
1663
|
+
#define utmscale_getTimeScaleValue U_ICU_ENTRY_POINT_RENAME(utmscale_getTimeScaleValue)
|
1664
|
+
#define utmscale_toInt64 U_ICU_ENTRY_POINT_RENAME(utmscale_toInt64)
|
1665
|
+
#define utrace_cleanup U_ICU_ENTRY_POINT_RENAME(utrace_cleanup)
|
1666
|
+
#define utrace_data U_ICU_ENTRY_POINT_RENAME(utrace_data)
|
1667
|
+
#define utrace_entry U_ICU_ENTRY_POINT_RENAME(utrace_entry)
|
1668
|
+
#define utrace_exit U_ICU_ENTRY_POINT_RENAME(utrace_exit)
|
1669
|
+
#define utrace_format U_ICU_ENTRY_POINT_RENAME(utrace_format)
|
1670
|
+
#define utrace_functionName U_ICU_ENTRY_POINT_RENAME(utrace_functionName)
|
1671
|
+
#define utrace_getFunctions U_ICU_ENTRY_POINT_RENAME(utrace_getFunctions)
|
1672
|
+
#define utrace_getLevel U_ICU_ENTRY_POINT_RENAME(utrace_getLevel)
|
1673
|
+
#define utrace_level U_ICU_ENTRY_POINT_RENAME(utrace_level)
|
1674
|
+
#define utrace_setFunctions U_ICU_ENTRY_POINT_RENAME(utrace_setFunctions)
|
1675
|
+
#define utrace_setLevel U_ICU_ENTRY_POINT_RENAME(utrace_setLevel)
|
1676
|
+
#define utrace_vformat U_ICU_ENTRY_POINT_RENAME(utrace_vformat)
|
1677
|
+
#define utrans_clone U_ICU_ENTRY_POINT_RENAME(utrans_clone)
|
1678
|
+
#define utrans_close U_ICU_ENTRY_POINT_RENAME(utrans_close)
|
1679
|
+
#define utrans_countAvailableIDs U_ICU_ENTRY_POINT_RENAME(utrans_countAvailableIDs)
|
1680
|
+
#define utrans_getAvailableID U_ICU_ENTRY_POINT_RENAME(utrans_getAvailableID)
|
1681
|
+
#define utrans_getID U_ICU_ENTRY_POINT_RENAME(utrans_getID)
|
1682
|
+
#define utrans_getSourceSet U_ICU_ENTRY_POINT_RENAME(utrans_getSourceSet)
|
1683
|
+
#define utrans_getUnicodeID U_ICU_ENTRY_POINT_RENAME(utrans_getUnicodeID)
|
1684
|
+
#define utrans_open U_ICU_ENTRY_POINT_RENAME(utrans_open)
|
1685
|
+
#define utrans_openIDs U_ICU_ENTRY_POINT_RENAME(utrans_openIDs)
|
1686
|
+
#define utrans_openInverse U_ICU_ENTRY_POINT_RENAME(utrans_openInverse)
|
1687
|
+
#define utrans_openU U_ICU_ENTRY_POINT_RENAME(utrans_openU)
|
1688
|
+
#define utrans_register U_ICU_ENTRY_POINT_RENAME(utrans_register)
|
1689
|
+
#define utrans_rep_caseContextIterator U_ICU_ENTRY_POINT_RENAME(utrans_rep_caseContextIterator)
|
1690
|
+
#define utrans_setFilter U_ICU_ENTRY_POINT_RENAME(utrans_setFilter)
|
1691
|
+
#define utrans_stripRules U_ICU_ENTRY_POINT_RENAME(utrans_stripRules)
|
1692
|
+
#define utrans_toRules U_ICU_ENTRY_POINT_RENAME(utrans_toRules)
|
1693
|
+
#define utrans_trans U_ICU_ENTRY_POINT_RENAME(utrans_trans)
|
1694
|
+
#define utrans_transIncremental U_ICU_ENTRY_POINT_RENAME(utrans_transIncremental)
|
1695
|
+
#define utrans_transIncrementalUChars U_ICU_ENTRY_POINT_RENAME(utrans_transIncrementalUChars)
|
1696
|
+
#define utrans_transUChars U_ICU_ENTRY_POINT_RENAME(utrans_transUChars)
|
1697
|
+
#define utrans_transliterator_cleanup U_ICU_ENTRY_POINT_RENAME(utrans_transliterator_cleanup)
|
1698
|
+
#define utrans_unregister U_ICU_ENTRY_POINT_RENAME(utrans_unregister)
|
1699
|
+
#define utrans_unregisterID U_ICU_ENTRY_POINT_RENAME(utrans_unregisterID)
|
1700
|
+
#define utrie2_clone U_ICU_ENTRY_POINT_RENAME(utrie2_clone)
|
1701
|
+
#define utrie2_cloneAsThawed U_ICU_ENTRY_POINT_RENAME(utrie2_cloneAsThawed)
|
1702
|
+
#define utrie2_close U_ICU_ENTRY_POINT_RENAME(utrie2_close)
|
1703
|
+
#define utrie2_enum U_ICU_ENTRY_POINT_RENAME(utrie2_enum)
|
1704
|
+
#define utrie2_enumForLeadSurrogate U_ICU_ENTRY_POINT_RENAME(utrie2_enumForLeadSurrogate)
|
1705
|
+
#define utrie2_freeze U_ICU_ENTRY_POINT_RENAME(utrie2_freeze)
|
1706
|
+
#define utrie2_fromUTrie U_ICU_ENTRY_POINT_RENAME(utrie2_fromUTrie)
|
1707
|
+
#define utrie2_get32 U_ICU_ENTRY_POINT_RENAME(utrie2_get32)
|
1708
|
+
#define utrie2_get32FromLeadSurrogateCodeUnit U_ICU_ENTRY_POINT_RENAME(utrie2_get32FromLeadSurrogateCodeUnit)
|
1709
|
+
#define utrie2_getVersion U_ICU_ENTRY_POINT_RENAME(utrie2_getVersion)
|
1710
|
+
#define utrie2_internalU8NextIndex U_ICU_ENTRY_POINT_RENAME(utrie2_internalU8NextIndex)
|
1711
|
+
#define utrie2_internalU8PrevIndex U_ICU_ENTRY_POINT_RENAME(utrie2_internalU8PrevIndex)
|
1712
|
+
#define utrie2_isFrozen U_ICU_ENTRY_POINT_RENAME(utrie2_isFrozen)
|
1713
|
+
#define utrie2_open U_ICU_ENTRY_POINT_RENAME(utrie2_open)
|
1714
|
+
#define utrie2_openDummy U_ICU_ENTRY_POINT_RENAME(utrie2_openDummy)
|
1715
|
+
#define utrie2_openFromSerialized U_ICU_ENTRY_POINT_RENAME(utrie2_openFromSerialized)
|
1716
|
+
#define utrie2_serialize U_ICU_ENTRY_POINT_RENAME(utrie2_serialize)
|
1717
|
+
#define utrie2_set32 U_ICU_ENTRY_POINT_RENAME(utrie2_set32)
|
1718
|
+
#define utrie2_set32ForLeadSurrogateCodeUnit U_ICU_ENTRY_POINT_RENAME(utrie2_set32ForLeadSurrogateCodeUnit)
|
1719
|
+
#define utrie2_setRange32 U_ICU_ENTRY_POINT_RENAME(utrie2_setRange32)
|
1720
|
+
#define utrie2_swap U_ICU_ENTRY_POINT_RENAME(utrie2_swap)
|
1721
|
+
#define utrie2_swapAnyVersion U_ICU_ENTRY_POINT_RENAME(utrie2_swapAnyVersion)
|
1722
|
+
#define utrie_clone U_ICU_ENTRY_POINT_RENAME(utrie_clone)
|
1723
|
+
#define utrie_close U_ICU_ENTRY_POINT_RENAME(utrie_close)
|
1724
|
+
#define utrie_defaultGetFoldingOffset U_ICU_ENTRY_POINT_RENAME(utrie_defaultGetFoldingOffset)
|
1725
|
+
#define utrie_enum U_ICU_ENTRY_POINT_RENAME(utrie_enum)
|
1726
|
+
#define utrie_get32 U_ICU_ENTRY_POINT_RENAME(utrie_get32)
|
1727
|
+
#define utrie_getData U_ICU_ENTRY_POINT_RENAME(utrie_getData)
|
1728
|
+
#define utrie_open U_ICU_ENTRY_POINT_RENAME(utrie_open)
|
1729
|
+
#define utrie_serialize U_ICU_ENTRY_POINT_RENAME(utrie_serialize)
|
1730
|
+
#define utrie_set32 U_ICU_ENTRY_POINT_RENAME(utrie_set32)
|
1731
|
+
#define utrie_setRange32 U_ICU_ENTRY_POINT_RENAME(utrie_setRange32)
|
1732
|
+
#define utrie_swap U_ICU_ENTRY_POINT_RENAME(utrie_swap)
|
1733
|
+
#define utrie_unserialize U_ICU_ENTRY_POINT_RENAME(utrie_unserialize)
|
1734
|
+
#define utrie_unserializeDummy U_ICU_ENTRY_POINT_RENAME(utrie_unserializeDummy)
|
1735
|
+
#define vzone_clone U_ICU_ENTRY_POINT_RENAME(vzone_clone)
|
1736
|
+
#define vzone_close U_ICU_ENTRY_POINT_RENAME(vzone_close)
|
1737
|
+
#define vzone_countTransitionRules U_ICU_ENTRY_POINT_RENAME(vzone_countTransitionRules)
|
1738
|
+
#define vzone_equals U_ICU_ENTRY_POINT_RENAME(vzone_equals)
|
1739
|
+
#define vzone_getDynamicClassID U_ICU_ENTRY_POINT_RENAME(vzone_getDynamicClassID)
|
1740
|
+
#define vzone_getLastModified U_ICU_ENTRY_POINT_RENAME(vzone_getLastModified)
|
1741
|
+
#define vzone_getNextTransition U_ICU_ENTRY_POINT_RENAME(vzone_getNextTransition)
|
1742
|
+
#define vzone_getOffset U_ICU_ENTRY_POINT_RENAME(vzone_getOffset)
|
1743
|
+
#define vzone_getOffset2 U_ICU_ENTRY_POINT_RENAME(vzone_getOffset2)
|
1744
|
+
#define vzone_getOffset3 U_ICU_ENTRY_POINT_RENAME(vzone_getOffset3)
|
1745
|
+
#define vzone_getPreviousTransition U_ICU_ENTRY_POINT_RENAME(vzone_getPreviousTransition)
|
1746
|
+
#define vzone_getRawOffset U_ICU_ENTRY_POINT_RENAME(vzone_getRawOffset)
|
1747
|
+
#define vzone_getStaticClassID U_ICU_ENTRY_POINT_RENAME(vzone_getStaticClassID)
|
1748
|
+
#define vzone_getTZURL U_ICU_ENTRY_POINT_RENAME(vzone_getTZURL)
|
1749
|
+
#define vzone_hasSameRules U_ICU_ENTRY_POINT_RENAME(vzone_hasSameRules)
|
1750
|
+
#define vzone_inDaylightTime U_ICU_ENTRY_POINT_RENAME(vzone_inDaylightTime)
|
1751
|
+
#define vzone_openData U_ICU_ENTRY_POINT_RENAME(vzone_openData)
|
1752
|
+
#define vzone_openID U_ICU_ENTRY_POINT_RENAME(vzone_openID)
|
1753
|
+
#define vzone_setLastModified U_ICU_ENTRY_POINT_RENAME(vzone_setLastModified)
|
1754
|
+
#define vzone_setRawOffset U_ICU_ENTRY_POINT_RENAME(vzone_setRawOffset)
|
1755
|
+
#define vzone_setTZURL U_ICU_ENTRY_POINT_RENAME(vzone_setTZURL)
|
1756
|
+
#define vzone_useDaylightTime U_ICU_ENTRY_POINT_RENAME(vzone_useDaylightTime)
|
1757
|
+
#define vzone_write U_ICU_ENTRY_POINT_RENAME(vzone_write)
|
1758
|
+
#define vzone_writeFromStart U_ICU_ENTRY_POINT_RENAME(vzone_writeFromStart)
|
1759
|
+
#define vzone_writeSimple U_ICU_ENTRY_POINT_RENAME(vzone_writeSimple)
|
1760
|
+
#define zrule_close U_ICU_ENTRY_POINT_RENAME(zrule_close)
|
1761
|
+
#define zrule_equals U_ICU_ENTRY_POINT_RENAME(zrule_equals)
|
1762
|
+
#define zrule_getDSTSavings U_ICU_ENTRY_POINT_RENAME(zrule_getDSTSavings)
|
1763
|
+
#define zrule_getName U_ICU_ENTRY_POINT_RENAME(zrule_getName)
|
1764
|
+
#define zrule_getRawOffset U_ICU_ENTRY_POINT_RENAME(zrule_getRawOffset)
|
1765
|
+
#define zrule_isEquivalentTo U_ICU_ENTRY_POINT_RENAME(zrule_isEquivalentTo)
|
1766
|
+
#define ztrans_adoptFrom U_ICU_ENTRY_POINT_RENAME(ztrans_adoptFrom)
|
1767
|
+
#define ztrans_adoptTo U_ICU_ENTRY_POINT_RENAME(ztrans_adoptTo)
|
1768
|
+
#define ztrans_clone U_ICU_ENTRY_POINT_RENAME(ztrans_clone)
|
1769
|
+
#define ztrans_close U_ICU_ENTRY_POINT_RENAME(ztrans_close)
|
1770
|
+
#define ztrans_equals U_ICU_ENTRY_POINT_RENAME(ztrans_equals)
|
1771
|
+
#define ztrans_getDynamicClassID U_ICU_ENTRY_POINT_RENAME(ztrans_getDynamicClassID)
|
1772
|
+
#define ztrans_getFrom U_ICU_ENTRY_POINT_RENAME(ztrans_getFrom)
|
1773
|
+
#define ztrans_getStaticClassID U_ICU_ENTRY_POINT_RENAME(ztrans_getStaticClassID)
|
1774
|
+
#define ztrans_getTime U_ICU_ENTRY_POINT_RENAME(ztrans_getTime)
|
1775
|
+
#define ztrans_getTo U_ICU_ENTRY_POINT_RENAME(ztrans_getTo)
|
1776
|
+
#define ztrans_open U_ICU_ENTRY_POINT_RENAME(ztrans_open)
|
1777
|
+
#define ztrans_openEmpty U_ICU_ENTRY_POINT_RENAME(ztrans_openEmpty)
|
1778
|
+
#define ztrans_setFrom U_ICU_ENTRY_POINT_RENAME(ztrans_setFrom)
|
1779
|
+
#define ztrans_setTime U_ICU_ENTRY_POINT_RENAME(ztrans_setTime)
|
1780
|
+
#define ztrans_setTo U_ICU_ENTRY_POINT_RENAME(ztrans_setTo)
|
1781
|
+
|
1782
|
+
#endif
|
1783
|
+
|
1784
|
+
#endif
|