├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── config.h ├── freetype ├── CMakeLists.txt ├── ChangeLog ├── ChangeLog.20 ├── ChangeLog.21 ├── ChangeLog.22 ├── ChangeLog.23 ├── ChangeLog.24 ├── ChangeLog.25 ├── ChangeLog.26 ├── ChangeLog.27 ├── ChangeLog.28 ├── ChangeLog.29 ├── Jamfile ├── Jamrules ├── Makefile ├── README ├── README.git ├── autogen.sh ├── builds │ ├── amiga │ │ ├── README │ │ ├── include │ │ │ └── config │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftmodule.h │ │ ├── makefile │ │ ├── makefile.os4 │ │ ├── smakefile │ │ └── src │ │ │ └── base │ │ │ ├── ftdebug.c │ │ │ └── ftsystem.c │ ├── ansi │ │ ├── ansi-def.mk │ │ └── ansi.mk │ ├── atari │ │ ├── ATARI.H │ │ ├── FNames.SIC │ │ ├── FREETYPE.PRJ │ │ ├── README.TXT │ │ ├── deflinejoiner.awk │ │ └── gen-purec-patch.sh │ ├── beos │ │ ├── beos-def.mk │ │ ├── beos.mk │ │ └── detect.mk │ ├── cmake │ │ ├── FindBrotliDec.cmake │ │ ├── FindHarfBuzz.cmake │ │ ├── iOS.cmake │ │ └── testbuild.sh │ ├── compiler │ │ ├── ansi-cc.mk │ │ ├── bcc-dev.mk │ │ ├── bcc.mk │ │ ├── emx.mk │ │ ├── gcc-dev.mk │ │ ├── gcc.mk │ │ ├── intelc.mk │ │ ├── unix-lcc.mk │ │ ├── visualage.mk │ │ ├── visualc.mk │ │ ├── watcom.mk │ │ └── win-lcc.mk │ ├── detect.mk │ ├── dos │ │ ├── detect.mk │ │ ├── dos-def.mk │ │ ├── dos-emx.mk │ │ ├── dos-gcc.mk │ │ └── dos-wat.mk │ ├── exports.mk │ ├── freetype.mk │ ├── link_dos.mk │ ├── link_std.mk │ ├── mac │ │ ├── FreeType.m68k_cfm.make.txt │ │ ├── FreeType.m68k_far.make.txt │ │ ├── FreeType.ppc_carbon.make.txt │ │ ├── FreeType.ppc_classic.make.txt │ │ ├── README │ │ ├── ascii2mpw.py │ │ ├── freetype-Info.plist │ │ ├── ftlib.prj.xml │ │ └── ftmac.c │ ├── modules.mk │ ├── os2 │ │ ├── detect.mk │ │ ├── os2-def.mk │ │ ├── os2-dev.mk │ │ └── os2-gcc.mk │ ├── symbian │ │ ├── bld.inf │ │ └── freetype.mmp │ ├── toplevel.mk │ ├── unix │ │ ├── aclocal.m4 │ │ ├── ax_compare_version.m4 │ │ ├── ax_prog_python_version.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.raw │ │ ├── detect.mk │ │ ├── freetype-config.in │ │ ├── freetype2.in │ │ ├── freetype2.m4 │ │ ├── ft-munmap.m4 │ │ ├── ftconfig.in │ │ ├── ftsystem.c │ │ ├── install-sh │ │ ├── install.mk │ │ ├── ltmain.sh │ │ ├── pkg.m4 │ │ ├── unix-cc.in │ │ ├── unix-def.in │ │ ├── unix-dev.mk │ │ ├── unix-lcc.mk │ │ ├── unix.mk │ │ └── unixddef.mk │ ├── vms │ │ ├── LIBS.OPT_IA64 │ │ ├── _LINK.OPT_IA64 │ │ ├── ftconfig.h │ │ ├── ftsystem.c │ │ └── vmslib.dat │ ├── wince │ │ ├── ftdebug.c │ │ ├── vc2005-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ └── vc2008-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ └── windows │ │ ├── detect.mk │ │ ├── ftdebug.c │ │ ├── vc2010 │ │ ├── freetype.sln │ │ ├── freetype.user.props │ │ ├── freetype.vcxproj │ │ ├── freetype.vcxproj.filters │ │ └── index.html │ │ ├── visualc │ │ ├── freetype.dsp │ │ ├── freetype.dsw │ │ ├── freetype.sln │ │ ├── freetype.vcproj │ │ └── index.html │ │ ├── visualce │ │ ├── freetype.dsp │ │ ├── freetype.dsw │ │ ├── freetype.vcproj │ │ └── index.html │ │ ├── w32-bcc.mk │ │ ├── w32-bccd.mk │ │ ├── w32-dev.mk │ │ ├── w32-gcc.mk │ │ ├── w32-icc.mk │ │ ├── w32-intl.mk │ │ ├── w32-lcc.mk │ │ ├── w32-mingw32.mk │ │ ├── w32-vcc.mk │ │ ├── w32-wat.mk │ │ └── win32-def.mk ├── configure ├── devel │ ├── ft2build.h │ └── ftoption.h ├── docs │ └── LICENSE.TXT ├── include │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── cffotypes.h │ │ │ ├── cfftypes.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdrv.h │ │ │ ├── ftgloadr.h │ │ │ ├── fthash.h │ │ │ ├── ftmemory.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpsprop.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── internal.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcfftl.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svfntfmt.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmetric.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svprop.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ └── svwinfnt.h │ │ │ ├── sfnt.h │ │ │ ├── t1types.h │ │ │ ├── tttypes.h │ │ │ └── wofftypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ └── ft2build.h ├── modules.cfg ├── objs │ └── README ├── src │ ├── Jamfile │ ├── autofit │ │ ├── Jamfile │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afblue.c │ │ ├── afblue.cin │ │ ├── afblue.dat │ │ ├── afblue.h │ │ ├── afblue.hin │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afcover.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afranges.c │ │ ├── afranges.h │ │ ├── afscript.h │ │ ├── afshaper.c │ │ ├── afshaper.h │ │ ├── afstyles.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ ├── afwrtsys.h │ │ ├── autofit.c │ │ ├── module.mk │ │ └── rules.mk │ ├── base │ │ ├── Jamfile │ │ ├── ftadvanc.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftcolor.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── fterrors.c │ │ ├── ftfntfmt.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── fthash.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpsprop.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftver.rc │ │ ├── ftwinfnt.c │ │ ├── md5.c │ │ ├── md5.h │ │ └── rules.mk │ ├── bdf │ │ ├── Jamfile │ │ ├── README │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ ├── bdflib.c │ │ ├── module.mk │ │ └── rules.mk │ ├── bzip2 │ │ ├── Jamfile │ │ ├── ftbzip2.c │ │ └── rules.mk │ ├── cache │ │ ├── Jamfile │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ ├── ftcsbits.h │ │ └── rules.mk │ ├── cff │ │ ├── Jamfile │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cfftoken.h │ │ ├── module.mk │ │ └── rules.mk │ ├── cid │ │ ├── Jamfile │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── type1cid.c │ ├── gxvalid │ │ ├── Jamfile │ │ ├── README │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ ├── gxvtrak.c │ │ ├── module.mk │ │ └── rules.mk │ ├── gzip │ │ ├── Jamfile │ │ ├── adler32.c │ │ ├── ftgzip.c │ │ ├── ftzconf.h │ │ ├── infblock.c │ │ ├── infblock.h │ │ ├── infcodes.c │ │ ├── infcodes.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── infutil.c │ │ ├── infutil.h │ │ ├── rules.mk │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── lzw │ │ ├── Jamfile │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ ├── ftzopen.h │ │ └── rules.mk │ ├── otvalid │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ ├── otvmod.h │ │ └── rules.mk │ ├── pcf │ │ ├── Jamfile │ │ ├── README │ │ ├── module.mk │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ ├── pcfutil.h │ │ └── rules.mk │ ├── pfr │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ ├── pfrtypes.h │ │ └── rules.mk │ ├── psaux │ │ ├── Jamfile │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── cffdecode.c │ │ ├── cffdecode.h │ │ ├── module.mk │ │ ├── psarrst.c │ │ ├── psarrst.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psblues.c │ │ ├── psblues.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── pserror.c │ │ ├── pserror.h │ │ ├── psfixed.h │ │ ├── psfont.c │ │ ├── psfont.h │ │ ├── psft.c │ │ ├── psft.h │ │ ├── psglue.h │ │ ├── pshints.c │ │ ├── pshints.h │ │ ├── psintrp.c │ │ ├── psintrp.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── psread.c │ │ ├── psread.h │ │ ├── psstack.c │ │ ├── psstack.h │ │ ├── pstypes.h │ │ ├── rules.mk │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ ├── pshinter │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshrec.c │ │ ├── pshrec.h │ │ └── rules.mk │ ├── psnames │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pstables.h │ │ └── rules.mk │ ├── raster │ │ ├── Jamfile │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── module.mk │ │ ├── raster.c │ │ ├── rasterrs.h │ │ └── rules.mk │ ├── sfnt │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── pngshim.c │ │ ├── pngshim.h │ │ ├── rules.mk │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── sfwoff.c │ │ ├── sfwoff.h │ │ ├── sfwoff2.c │ │ ├── sfwoff2.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttcolr.c │ │ ├── ttcolr.h │ │ ├── ttcpal.c │ │ ├── ttcpal.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ ├── ttsbit.h │ │ ├── woff2tags.c │ │ └── woff2tags.h │ ├── smooth │ │ ├── Jamfile │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── smooth.c │ ├── tools │ │ ├── Jamfile │ │ ├── afblue.pl │ │ ├── apinames.c │ │ ├── chktrcmp.py │ │ ├── cordic.py │ │ ├── ftrandom │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── ftrandom.c │ │ ├── glnames.py │ │ ├── no-copyright │ │ ├── test_afm.c │ │ ├── test_bbox.c │ │ ├── test_trig.c │ │ ├── update-copyright │ │ └── update-copyright-year │ ├── truetype │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpload.c │ │ ├── ttpload.h │ │ ├── ttsubpix.c │ │ └── ttsubpix.h │ ├── type1 │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ ├── type42 │ │ ├── Jamfile │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ └── winfonts │ │ ├── Jamfile │ │ ├── fnterrs.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── winfnt.c │ │ └── winfnt.h ├── version.sed └── vms_make.com ├── harfbuzz ├── .ci │ ├── build-win32.sh │ ├── deploy-docs.sh │ ├── win32-cross-file.txt │ └── win64-cross-file.txt ├── .circleci │ └── config.yml ├── .clang-format ├── .codecov.yml ├── .editorconfig ├── .github │ └── workflows │ │ ├── coverity-scan.yml │ │ ├── linux-ci.yml │ │ ├── msvc-ci.yml │ │ └── msys2-ci.yml ├── AUTHORS ├── BUILD.md ├── CMakeLists.txt ├── CONFIG.md ├── COPYING ├── Makefile.am ├── NEWS ├── README ├── README.md ├── README.mingw.md ├── README.python.md ├── RELEASING.md ├── TESTING.md ├── THANKS ├── TODO ├── autogen.sh ├── configure.ac ├── docs │ ├── HarfBuzz.png │ ├── HarfBuzz.svg │ ├── Makefile.am │ ├── harfbuzz-docs.xml │ ├── harfbuzz-overrides.txt │ ├── harfbuzz-sections.txt │ ├── meson.build │ ├── usermanual-buffers-language-script-and-direction.xml │ ├── usermanual-clusters.xml │ ├── usermanual-fonts-and-faces.xml │ ├── usermanual-getting-started.xml │ ├── usermanual-glyph-information.xml │ ├── usermanual-install-harfbuzz.xml │ ├── usermanual-integration.xml │ ├── usermanual-object-model.xml │ ├── usermanual-opentype-features.xml │ ├── usermanual-shaping-concepts.xml │ ├── usermanual-utilities.xml │ ├── usermanual-what-is-harfbuzz.xml │ └── version.xml.in ├── git.mk ├── harfbuzz.doap ├── m4 │ ├── ax_check_link_flag.m4 │ ├── ax_code_coverage.m4 │ ├── ax_cxx_compile_stdcxx.m4 │ └── ax_pthread.m4 ├── meson-cc-tests │ ├── intel-atomic-primitives-test.c │ └── solaris-atomic-operations.c ├── meson.build ├── meson_options.txt ├── perf │ ├── fonts │ │ ├── Amiri-Regular.ttf │ │ ├── NotoNastaliqUrdu-Regular.ttf │ │ ├── NotoSansDevanagari-Regular.ttf │ │ └── Roboto-Regular.ttf │ ├── meson.build │ ├── perf-draw.hh │ ├── perf-extents.hh │ ├── perf-shaping.hh │ ├── perf.cc │ ├── run.sh │ └── texts │ │ ├── en-thelittleprince.txt │ │ ├── en-words.txt │ │ ├── fa-monologue.txt │ │ └── fa-thelittleprince.txt ├── replace-enum-strings.cmake ├── src │ ├── Makefile.am │ ├── Makefile.sources │ ├── check-c-linkage-decls.py │ ├── check-externs.py │ ├── check-header-guards.py │ ├── check-includes.py │ ├── check-libstdc++.py │ ├── check-static-inits.py │ ├── check-symbols.py │ ├── dump-indic-data.cc │ ├── dump-khmer-data.cc │ ├── dump-myanmar-data.cc │ ├── dump-use-data.cc │ ├── failing-alloc.c │ ├── fix_get_types.py │ ├── gen-arabic-joining-list.py │ ├── gen-arabic-table.py │ ├── gen-def.py │ ├── gen-emoji-table.py │ ├── gen-harfbuzzcc.py │ ├── gen-hb-version.py │ ├── gen-indic-table.py │ ├── gen-os2-unicode-ranges.py │ ├── gen-ragel-artifacts.py │ ├── gen-tag-table.py │ ├── gen-ucd-table.py │ ├── gen-use-table.py │ ├── gen-vowel-constraints.py │ ├── harfbuzz-config.cmake.in │ ├── harfbuzz-gobject.pc.in │ ├── harfbuzz-icu.pc.in │ ├── harfbuzz-subset.pc.in │ ├── harfbuzz.cc │ ├── harfbuzz.pc.in │ ├── hb-aat-layout-ankr-table.hh │ ├── hb-aat-layout-bsln-table.hh │ ├── hb-aat-layout-common.hh │ ├── hb-aat-layout-feat-table.hh │ ├── hb-aat-layout-just-table.hh │ ├── hb-aat-layout-kerx-table.hh │ ├── hb-aat-layout-morx-table.hh │ ├── hb-aat-layout-opbd-table.hh │ ├── hb-aat-layout-trak-table.hh │ ├── hb-aat-layout.cc │ ├── hb-aat-layout.h │ ├── hb-aat-layout.hh │ ├── hb-aat-ltag-table.hh │ ├── hb-aat-map.cc │ ├── hb-aat-map.hh │ ├── hb-aat.h │ ├── hb-algs.hh │ ├── hb-array.hh │ ├── hb-atomic.hh │ ├── hb-bimap.hh │ ├── hb-blob.cc │ ├── hb-blob.h │ ├── hb-blob.hh │ ├── hb-buffer-deserialize-json.hh │ ├── hb-buffer-deserialize-json.rl │ ├── hb-buffer-deserialize-text.hh │ ├── hb-buffer-deserialize-text.rl │ ├── hb-buffer-serialize.cc │ ├── hb-buffer.cc │ ├── hb-buffer.h │ ├── hb-buffer.hh │ ├── hb-cache.hh │ ├── hb-cff-interp-common.hh │ ├── hb-cff-interp-cs-common.hh │ ├── hb-cff-interp-dict-common.hh │ ├── hb-cff1-interp-cs.hh │ ├── hb-cff2-interp-cs.hh │ ├── hb-common.cc │ ├── hb-common.h │ ├── hb-config.hh │ ├── hb-coretext.cc │ ├── hb-coretext.h │ ├── hb-debug.hh │ ├── hb-deprecated.h │ ├── hb-directwrite.cc │ ├── hb-directwrite.h │ ├── hb-dispatch.hh │ ├── hb-draw.cc │ ├── hb-draw.h │ ├── hb-draw.hh │ ├── hb-face.cc │ ├── hb-face.h │ ├── hb-face.hh │ ├── hb-fallback-shape.cc │ ├── hb-font.cc │ ├── hb-font.h │ ├── hb-font.hh │ ├── hb-ft.cc │ ├── hb-ft.h │ ├── hb-gdi.cc │ ├── hb-gdi.h │ ├── hb-glib.cc │ ├── hb-glib.h │ ├── hb-gobject-enums.cc.tmpl │ ├── hb-gobject-enums.h.tmpl │ ├── hb-gobject-structs.cc │ ├── hb-gobject-structs.h │ ├── hb-gobject.h │ ├── hb-graphite2.cc │ ├── hb-graphite2.h │ ├── hb-icu.cc │ ├── hb-icu.h │ ├── hb-iter.hh │ ├── hb-kern.hh │ ├── hb-machinery.hh │ ├── hb-map.cc │ ├── hb-map.h │ ├── hb-map.hh │ ├── hb-meta.hh │ ├── hb-mutex.hh │ ├── hb-null.hh │ ├── hb-number-parser.hh │ ├── hb-number-parser.rl │ ├── hb-number.cc │ ├── hb-number.hh │ ├── hb-object.hh │ ├── hb-open-file.hh │ ├── hb-open-type.hh │ ├── hb-ot-cff-common.hh │ ├── hb-ot-cff1-std-str.hh │ ├── hb-ot-cff1-table.cc │ ├── hb-ot-cff1-table.hh │ ├── hb-ot-cff2-table.cc │ ├── hb-ot-cff2-table.hh │ ├── hb-ot-cmap-table.hh │ ├── hb-ot-color-cbdt-table.hh │ ├── hb-ot-color-colr-table.hh │ ├── hb-ot-color-cpal-table.hh │ ├── hb-ot-color-sbix-table.hh │ ├── hb-ot-color-svg-table.hh │ ├── hb-ot-color.cc │ ├── hb-ot-color.h │ ├── hb-ot-deprecated.h │ ├── hb-ot-face-table-list.hh │ ├── hb-ot-face.cc │ ├── hb-ot-face.hh │ ├── hb-ot-font.cc │ ├── hb-ot-font.h │ ├── hb-ot-gasp-table.hh │ ├── hb-ot-glyf-table.hh │ ├── hb-ot-hdmx-table.hh │ ├── hb-ot-head-table.hh │ ├── hb-ot-hhea-table.hh │ ├── hb-ot-hmtx-table.hh │ ├── hb-ot-kern-table.hh │ ├── hb-ot-layout-base-table.hh │ ├── hb-ot-layout-common.hh │ ├── hb-ot-layout-gdef-table.hh │ ├── hb-ot-layout-gpos-table.hh │ ├── hb-ot-layout-gsub-table.hh │ ├── hb-ot-layout-gsubgpos.hh │ ├── hb-ot-layout-jstf-table.hh │ ├── hb-ot-layout.cc │ ├── hb-ot-layout.h │ ├── hb-ot-layout.hh │ ├── hb-ot-map.cc │ ├── hb-ot-map.hh │ ├── hb-ot-math-table.hh │ ├── hb-ot-math.cc │ ├── hb-ot-math.h │ ├── hb-ot-maxp-table.hh │ ├── hb-ot-meta-table.hh │ ├── hb-ot-meta.cc │ ├── hb-ot-meta.h │ ├── hb-ot-metrics.cc │ ├── hb-ot-metrics.h │ ├── hb-ot-metrics.hh │ ├── hb-ot-name-language-static.hh │ ├── hb-ot-name-language.hh │ ├── hb-ot-name-table.hh │ ├── hb-ot-name.cc │ ├── hb-ot-name.h │ ├── hb-ot-os2-table.hh │ ├── hb-ot-os2-unicode-ranges.hh │ ├── hb-ot-post-macroman.hh │ ├── hb-ot-post-table.hh │ ├── hb-ot-shape-complex-arabic-fallback.hh │ ├── hb-ot-shape-complex-arabic-joining-list.hh │ ├── hb-ot-shape-complex-arabic-table.hh │ ├── hb-ot-shape-complex-arabic-win1256.hh │ ├── hb-ot-shape-complex-arabic.cc │ ├── hb-ot-shape-complex-arabic.hh │ ├── hb-ot-shape-complex-default.cc │ ├── hb-ot-shape-complex-hangul.cc │ ├── hb-ot-shape-complex-hebrew.cc │ ├── hb-ot-shape-complex-indic-machine.hh │ ├── hb-ot-shape-complex-indic-machine.rl │ ├── hb-ot-shape-complex-indic-table.cc │ ├── hb-ot-shape-complex-indic.cc │ ├── hb-ot-shape-complex-indic.hh │ ├── hb-ot-shape-complex-khmer-machine.hh │ ├── hb-ot-shape-complex-khmer-machine.rl │ ├── hb-ot-shape-complex-khmer.cc │ ├── hb-ot-shape-complex-khmer.hh │ ├── hb-ot-shape-complex-myanmar-machine.hh │ ├── hb-ot-shape-complex-myanmar-machine.rl │ ├── hb-ot-shape-complex-myanmar.cc │ ├── hb-ot-shape-complex-myanmar.hh │ ├── hb-ot-shape-complex-thai.cc │ ├── hb-ot-shape-complex-use-machine.hh │ ├── hb-ot-shape-complex-use-machine.rl │ ├── hb-ot-shape-complex-use-table.cc │ ├── hb-ot-shape-complex-use.cc │ ├── hb-ot-shape-complex-use.hh │ ├── hb-ot-shape-complex-vowel-constraints.cc │ ├── hb-ot-shape-complex-vowel-constraints.hh │ ├── hb-ot-shape-complex.hh │ ├── hb-ot-shape-fallback.cc │ ├── hb-ot-shape-fallback.hh │ ├── hb-ot-shape-normalize.cc │ ├── hb-ot-shape-normalize.hh │ ├── hb-ot-shape.cc │ ├── hb-ot-shape.h │ ├── hb-ot-shape.hh │ ├── hb-ot-stat-table.hh │ ├── hb-ot-tag-table.hh │ ├── hb-ot-tag.cc │ ├── hb-ot-var-avar-table.hh │ ├── hb-ot-var-fvar-table.hh │ ├── hb-ot-var-gvar-table.hh │ ├── hb-ot-var-hvar-table.hh │ ├── hb-ot-var-mvar-table.hh │ ├── hb-ot-var.cc │ ├── hb-ot-var.h │ ├── hb-ot-vorg-table.hh │ ├── hb-ot.h │ ├── hb-pool.hh │ ├── hb-sanitize.hh │ ├── hb-serialize.hh │ ├── hb-set-digest.hh │ ├── hb-set.cc │ ├── hb-set.h │ ├── hb-set.hh │ ├── hb-shape-plan.cc │ ├── hb-shape-plan.h │ ├── hb-shape-plan.hh │ ├── hb-shape.cc │ ├── hb-shape.h │ ├── hb-shaper-impl.hh │ ├── hb-shaper-list.hh │ ├── hb-shaper.cc │ ├── hb-shaper.hh │ ├── hb-static.cc │ ├── hb-string-array.hh │ ├── hb-style.cc │ ├── hb-style.h │ ├── hb-subset-cff-common.cc │ ├── hb-subset-cff-common.hh │ ├── hb-subset-cff1.cc │ ├── hb-subset-cff1.hh │ ├── hb-subset-cff2.cc │ ├── hb-subset-cff2.hh │ ├── hb-subset-input.cc │ ├── hb-subset-input.hh │ ├── hb-subset-plan.cc │ ├── hb-subset-plan.hh │ ├── hb-subset.cc │ ├── hb-subset.h │ ├── hb-subset.hh │ ├── hb-ucd-table.hh │ ├── hb-ucd.cc │ ├── hb-unicode-emoji-table.hh │ ├── hb-unicode.cc │ ├── hb-unicode.h │ ├── hb-unicode.hh │ ├── hb-uniscribe.cc │ ├── hb-uniscribe.h │ ├── hb-utf.hh │ ├── hb-vector.hh │ ├── hb-version.h │ ├── hb-version.h.in │ ├── hb.h │ ├── hb.hh │ ├── main.cc │ ├── meson.build │ ├── ms-use │ │ ├── COPYING │ │ └── IndicShapingInvalidCluster.txt │ ├── sample.py │ ├── test-algs.cc │ ├── test-array.cc │ ├── test-bimap.cc │ ├── test-buffer-serialize.cc │ ├── test-gpos-size-params.cc │ ├── test-gsub-would-substitute.cc │ ├── test-iter.cc │ ├── test-meta.cc │ ├── test-number.cc │ ├── test-ot-glyphname.cc │ ├── test-ot-meta.cc │ ├── test-ot-name.cc │ ├── test-unicode-ranges.cc │ ├── test.cc │ └── update-unicode-tables.make ├── subprojects │ ├── .gitignore │ ├── cairo.wrap │ ├── expat.wrap │ ├── fontconfig.wrap │ ├── freetype2.wrap │ ├── glib.wrap │ ├── google-benchmark.wrap │ ├── libffi.wrap │ ├── libpng.wrap │ ├── pixman.wrap │ ├── proxy-libintl.wrap │ ├── ttf-parser.wrap │ └── zlib.wrap └── util │ ├── Makefile.am │ ├── Makefile.sources │ ├── ansi-print.cc │ ├── ansi-print.hh │ ├── hb-fc-list.c │ ├── hb-fc.cc │ ├── hb-fc.h │ ├── hb-ot-shape-closure.cc │ ├── hb-shape.cc │ ├── hb-subset.cc │ ├── hb-view.cc │ ├── helper-cairo-ansi.cc │ ├── helper-cairo-ansi.hh │ ├── helper-cairo.cc │ ├── helper-cairo.hh │ ├── main-font-text.hh │ ├── meson.build │ ├── options-subset.cc │ ├── options.cc │ ├── options.hh │ ├── shape-consumer.hh │ ├── view-cairo.cc │ └── view-cairo.hh ├── icu ├── common │ ├── Makefile.in │ ├── appendable.cpp │ ├── bmpset.cpp │ ├── bmpset.h │ ├── brkeng.cpp │ ├── brkeng.h │ ├── brkiter.cpp │ ├── bytesinkutil.cpp │ ├── bytesinkutil.h │ ├── bytestream.cpp │ ├── bytestrie.cpp │ ├── bytestriebuilder.cpp │ ├── bytestrieiterator.cpp │ ├── caniter.cpp │ ├── capi_helper.h │ ├── characterproperties.cpp │ ├── chariter.cpp │ ├── charstr.cpp │ ├── charstr.h │ ├── cmemory.cpp │ ├── cmemory.h │ ├── cpputils.h │ ├── cstr.cpp │ ├── cstr.h │ ├── cstring.cpp │ ├── cstring.h │ ├── cwchar.cpp │ ├── cwchar.h │ ├── dictbe.cpp │ ├── dictbe.h │ ├── dictionarydata.cpp │ ├── dictionarydata.h │ ├── dtintrv.cpp │ ├── edits.cpp │ ├── errorcode.cpp │ ├── filteredbrk.cpp │ ├── filterednormalizer2.cpp │ ├── hash.h │ ├── icudataver.cpp │ ├── icuplug.cpp │ ├── icuplugimp.h │ ├── loadednormalizer2impl.cpp │ ├── localebuilder.cpp │ ├── localematcher.cpp │ ├── localeprioritylist.cpp │ ├── localeprioritylist.h │ ├── localsvc.h │ ├── locavailable.cpp │ ├── locbased.cpp │ ├── locbased.h │ ├── locdispnames.cpp │ ├── locdistance.cpp │ ├── locdistance.h │ ├── locdspnm.cpp │ ├── locid.cpp │ ├── loclikely.cpp │ ├── loclikelysubtags.cpp │ ├── loclikelysubtags.h │ ├── locmap.cpp │ ├── locmap.h │ ├── locresdata.cpp │ ├── locutil.cpp │ ├── locutil.h │ ├── lsr.cpp │ ├── lsr.h │ ├── messageimpl.h │ ├── messagepattern.cpp │ ├── msvcres.h │ ├── mutex.h │ ├── norm2_nfc_data.h │ ├── norm2allmodes.h │ ├── normalizer2.cpp │ ├── normalizer2impl.cpp │ ├── normalizer2impl.h │ ├── normlzr.cpp │ ├── parsepos.cpp │ ├── patternprops.cpp │ ├── patternprops.h │ ├── pluralmap.cpp │ ├── pluralmap.h │ ├── propname.cpp │ ├── propname.h │ ├── propname_data.h │ ├── propsvec.cpp │ ├── propsvec.h │ ├── punycode.cpp │ ├── punycode.h │ ├── putil.cpp │ ├── putilimp.h │ ├── rbbi.cpp │ ├── rbbi_cache.cpp │ ├── rbbi_cache.h │ ├── rbbicst.pl │ ├── rbbidata.cpp │ ├── rbbidata.h │ ├── rbbinode.cpp │ ├── rbbinode.h │ ├── rbbirb.cpp │ ├── rbbirb.h │ ├── rbbirpt.h │ ├── rbbirpt.txt │ ├── rbbiscan.cpp │ ├── rbbiscan.h │ ├── rbbisetb.cpp │ ├── rbbisetb.h │ ├── rbbistbl.cpp │ ├── rbbitblb.cpp │ ├── rbbitblb.h │ ├── resbund.cpp │ ├── resbund_cnv.cpp │ ├── resource.cpp │ ├── resource.h │ ├── restrace.cpp │ ├── restrace.h │ ├── ruleiter.cpp │ ├── ruleiter.h │ ├── schriter.cpp │ ├── serv.cpp │ ├── serv.h │ ├── servlk.cpp │ ├── servlkf.cpp │ ├── servloc.h │ ├── servls.cpp │ ├── servnotf.cpp │ ├── servnotf.h │ ├── servrbf.cpp │ ├── servslkf.cpp │ ├── sharedobject.cpp │ ├── sharedobject.h │ ├── simpleformatter.cpp │ ├── sprpimpl.h │ ├── static_unicode_sets.cpp │ ├── static_unicode_sets.h │ ├── stringpiece.cpp │ ├── stringtriebuilder.cpp │ ├── uarrsort.cpp │ ├── uarrsort.h │ ├── uassert.h │ ├── ubidi.cpp │ ├── ubidi_props.cpp │ ├── ubidi_props.h │ ├── ubidi_props_data.h │ ├── ubidiimp.h │ ├── ubidiln.cpp │ ├── ubiditransform.cpp │ ├── ubidiwrt.cpp │ ├── ubrk.cpp │ ├── ubrkimpl.h │ ├── ucase.cpp │ ├── ucase.h │ ├── ucase_props_data.h │ ├── ucasemap.cpp │ ├── ucasemap_imp.h │ ├── ucasemap_titlecase_brkiter.cpp │ ├── ucat.cpp │ ├── uchar.cpp │ ├── uchar_props_data.h │ ├── ucharstrie.cpp │ ├── ucharstriebuilder.cpp │ ├── ucharstrieiterator.cpp │ ├── uchriter.cpp │ ├── ucln.h │ ├── ucln_cmn.cpp │ ├── ucln_cmn.h │ ├── ucln_imp.h │ ├── ucmndata.cpp │ ├── ucmndata.h │ ├── ucnv.cpp │ ├── ucnv2022.cpp │ ├── ucnv_bld.cpp │ ├── ucnv_bld.h │ ├── ucnv_cb.cpp │ ├── ucnv_cnv.cpp │ ├── ucnv_cnv.h │ ├── ucnv_ct.cpp │ ├── ucnv_err.cpp │ ├── ucnv_ext.cpp │ ├── ucnv_ext.h │ ├── ucnv_imp.h │ ├── ucnv_io.cpp │ ├── ucnv_io.h │ ├── ucnv_lmb.cpp │ ├── ucnv_set.cpp │ ├── ucnv_u16.cpp │ ├── ucnv_u32.cpp │ ├── ucnv_u7.cpp │ ├── ucnv_u8.cpp │ ├── ucnvbocu.cpp │ ├── ucnvdisp.cpp │ ├── ucnvhz.cpp │ ├── ucnvisci.cpp │ ├── ucnvlat1.cpp │ ├── ucnvmbcs.cpp │ ├── ucnvmbcs.h │ ├── ucnvscsu.cpp │ ├── ucnvsel.cpp │ ├── ucol_data.h │ ├── ucol_swp.cpp │ ├── ucol_swp.h │ ├── ucptrie.cpp │ ├── ucptrie_impl.h │ ├── ucurr.cpp │ ├── ucurrimp.h │ ├── udata.cpp │ ├── udatamem.cpp │ ├── udatamem.h │ ├── udataswp.cpp │ ├── udataswp.h │ ├── uelement.h │ ├── uenum.cpp │ ├── uenumimp.h │ ├── uhash.cpp │ ├── uhash.h │ ├── uhash_us.cpp │ ├── uidna.cpp │ ├── uinit.cpp │ ├── uinvchar.cpp │ ├── uinvchar.h │ ├── uiter.cpp │ ├── ulayout_props.h │ ├── ulist.cpp │ ├── ulist.h │ ├── uloc.cpp │ ├── uloc_keytype.cpp │ ├── uloc_tag.cpp │ ├── ulocimp.h │ ├── umapfile.cpp │ ├── umapfile.h │ ├── umath.cpp │ ├── umutablecptrie.cpp │ ├── umutex.cpp │ ├── umutex.h │ ├── unames.cpp │ ├── unicode │ │ ├── appendable.h │ │ ├── brkiter.h │ │ ├── bytestream.h │ │ ├── bytestrie.h │ │ ├── bytestriebuilder.h │ │ ├── caniter.h │ │ ├── casemap.h │ │ ├── char16ptr.h │ │ ├── chariter.h │ │ ├── dbbi.h │ │ ├── docmain.h │ │ ├── dtintrv.h │ │ ├── edits.h │ │ ├── enumset.h │ │ ├── errorcode.h │ │ ├── filteredbrk.h │ │ ├── icudataver.h │ │ ├── icuplug.h │ │ ├── idna.h │ │ ├── localebuilder.h │ │ ├── localematcher.h │ │ ├── localpointer.h │ │ ├── locdspnm.h │ │ ├── locid.h │ │ ├── messagepattern.h │ │ ├── normalizer2.h │ │ ├── normlzr.h │ │ ├── parseerr.h │ │ ├── parsepos.h │ │ ├── platform.h │ │ ├── ptypes.h │ │ ├── putil.h │ │ ├── rbbi.h │ │ ├── rep.h │ │ ├── resbund.h │ │ ├── schriter.h │ │ ├── simpleformatter.h │ │ ├── std_string.h │ │ ├── strenum.h │ │ ├── stringoptions.h │ │ ├── stringpiece.h │ │ ├── stringtriebuilder.h │ │ ├── symtable.h │ │ ├── ubidi.h │ │ ├── ubiditransform.h │ │ ├── ubrk.h │ │ ├── ucasemap.h │ │ ├── ucat.h │ │ ├── uchar.h │ │ ├── ucharstrie.h │ │ ├── ucharstriebuilder.h │ │ ├── uchriter.h │ │ ├── uclean.h │ │ ├── ucnv.h │ │ ├── ucnv_cb.h │ │ ├── ucnv_err.h │ │ ├── ucnvsel.h │ │ ├── uconfig.h │ │ ├── ucpmap.h │ │ ├── ucptrie.h │ │ ├── ucurr.h │ │ ├── udata.h │ │ ├── udisplaycontext.h │ │ ├── uenum.h │ │ ├── uidna.h │ │ ├── uiter.h │ │ ├── uldnames.h │ │ ├── uloc.h │ │ ├── umachine.h │ │ ├── umisc.h │ │ ├── umutablecptrie.h │ │ ├── unifilt.h │ │ ├── unifunct.h │ │ ├── unimatch.h │ │ ├── uniset.h │ │ ├── unistr.h │ │ ├── unorm.h │ │ ├── unorm2.h │ │ ├── uobject.h │ │ ├── urename.h │ │ ├── urep.h │ │ ├── ures.h │ │ ├── uscript.h │ │ ├── uset.h │ │ ├── usetiter.h │ │ ├── ushape.h │ │ ├── usprep.h │ │ ├── ustring.h │ │ ├── ustringtrie.h │ │ ├── utext.h │ │ ├── utf.h │ │ ├── utf16.h │ │ ├── utf32.h │ │ ├── utf8.h │ │ ├── utf_old.h │ │ ├── utrace.h │ │ ├── utypes.h │ │ ├── uvernum.h │ │ └── uversion.h │ ├── unifiedcache.cpp │ ├── unifiedcache.h │ ├── unifilt.cpp │ ├── unifunct.cpp │ ├── uniset.cpp │ ├── uniset_closure.cpp │ ├── uniset_props.cpp │ ├── unisetspan.cpp │ ├── unisetspan.h │ ├── unistr.cpp │ ├── unistr_case.cpp │ ├── unistr_case_locale.cpp │ ├── unistr_cnv.cpp │ ├── unistr_props.cpp │ ├── unistr_titlecase_brkiter.cpp │ ├── unistrappender.h │ ├── unorm.cpp │ ├── unormcmp.cpp │ ├── unormimp.h │ ├── uobject.cpp │ ├── uposixdefs.h │ ├── uprops.cpp │ ├── uprops.h │ ├── ures_cnv.cpp │ ├── uresbund.cpp │ ├── uresdata.cpp │ ├── uresdata.h │ ├── uresimp.h │ ├── ureslocs.h │ ├── usc_impl.cpp │ ├── usc_impl.h │ ├── uscript.cpp │ ├── uscript_props.cpp │ ├── uset.cpp │ ├── uset_imp.h │ ├── uset_props.cpp │ ├── usetiter.cpp │ ├── ushape.cpp │ ├── usprep.cpp │ ├── ustack.cpp │ ├── ustr_cnv.cpp │ ├── ustr_cnv.h │ ├── ustr_imp.h │ ├── ustr_titlecase_brkiter.cpp │ ├── ustr_wcs.cpp │ ├── ustrcase.cpp │ ├── ustrcase_locale.cpp │ ├── ustrenum.cpp │ ├── ustrenum.h │ ├── ustrfmt.cpp │ ├── ustrfmt.h │ ├── ustring.cpp │ ├── ustrtrns.cpp │ ├── utext.cpp │ ├── utf_impl.cpp │ ├── util.cpp │ ├── util.h │ ├── util_props.cpp │ ├── utrace.cpp │ ├── utracimp.h │ ├── utrie.cpp │ ├── utrie.h │ ├── utrie2.cpp │ ├── utrie2.h │ ├── utrie2_builder.cpp │ ├── utrie2_impl.h │ ├── utrie_swap.cpp │ ├── uts46.cpp │ ├── utypeinfo.h │ ├── utypes.cpp │ ├── uvector.cpp │ ├── uvector.h │ ├── uvectr32.cpp │ ├── uvectr32.h │ ├── uvectr64.cpp │ ├── uvectr64.h │ ├── wintz.cpp │ └── wintz.h └── stubdata │ └── stubdata.cpp └── updating-libraries.md /.gitignore: -------------------------------------------------------------------------------- 1 | ### OSX ### 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/config.h -------------------------------------------------------------------------------- /freetype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/CMakeLists.txt -------------------------------------------------------------------------------- /freetype/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog -------------------------------------------------------------------------------- /freetype/ChangeLog.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.20 -------------------------------------------------------------------------------- /freetype/ChangeLog.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.21 -------------------------------------------------------------------------------- /freetype/ChangeLog.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.22 -------------------------------------------------------------------------------- /freetype/ChangeLog.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.23 -------------------------------------------------------------------------------- /freetype/ChangeLog.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.24 -------------------------------------------------------------------------------- /freetype/ChangeLog.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.25 -------------------------------------------------------------------------------- /freetype/ChangeLog.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.26 -------------------------------------------------------------------------------- /freetype/ChangeLog.27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.27 -------------------------------------------------------------------------------- /freetype/ChangeLog.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.28 -------------------------------------------------------------------------------- /freetype/ChangeLog.29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/ChangeLog.29 -------------------------------------------------------------------------------- /freetype/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/Jamfile -------------------------------------------------------------------------------- /freetype/Jamrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/Jamrules -------------------------------------------------------------------------------- /freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/Makefile -------------------------------------------------------------------------------- /freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/README -------------------------------------------------------------------------------- /freetype/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/README.git -------------------------------------------------------------------------------- /freetype/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/autogen.sh -------------------------------------------------------------------------------- /freetype/builds/amiga/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/amiga/README -------------------------------------------------------------------------------- /freetype/builds/amiga/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/amiga/makefile -------------------------------------------------------------------------------- /freetype/builds/amiga/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/amiga/smakefile -------------------------------------------------------------------------------- /freetype/builds/ansi/ansi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/ansi/ansi.mk -------------------------------------------------------------------------------- /freetype/builds/atari/ATARI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/atari/ATARI.H -------------------------------------------------------------------------------- /freetype/builds/beos/beos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/beos/beos.mk -------------------------------------------------------------------------------- /freetype/builds/beos/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/beos/detect.mk -------------------------------------------------------------------------------- /freetype/builds/cmake/iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/cmake/iOS.cmake -------------------------------------------------------------------------------- /freetype/builds/compiler/bcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/compiler/bcc.mk -------------------------------------------------------------------------------- /freetype/builds/compiler/emx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/compiler/emx.mk -------------------------------------------------------------------------------- /freetype/builds/compiler/gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/compiler/gcc.mk -------------------------------------------------------------------------------- /freetype/builds/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/detect.mk -------------------------------------------------------------------------------- /freetype/builds/dos/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/dos/detect.mk -------------------------------------------------------------------------------- /freetype/builds/dos/dos-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/dos/dos-def.mk -------------------------------------------------------------------------------- /freetype/builds/dos/dos-emx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/dos/dos-emx.mk -------------------------------------------------------------------------------- /freetype/builds/dos/dos-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/dos/dos-gcc.mk -------------------------------------------------------------------------------- /freetype/builds/dos/dos-wat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/dos/dos-wat.mk -------------------------------------------------------------------------------- /freetype/builds/exports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/exports.mk -------------------------------------------------------------------------------- /freetype/builds/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/freetype.mk -------------------------------------------------------------------------------- /freetype/builds/link_dos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/link_dos.mk -------------------------------------------------------------------------------- /freetype/builds/link_std.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/link_std.mk -------------------------------------------------------------------------------- /freetype/builds/mac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/mac/README -------------------------------------------------------------------------------- /freetype/builds/mac/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/mac/ftmac.c -------------------------------------------------------------------------------- /freetype/builds/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/modules.mk -------------------------------------------------------------------------------- /freetype/builds/os2/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/os2/detect.mk -------------------------------------------------------------------------------- /freetype/builds/os2/os2-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/os2/os2-def.mk -------------------------------------------------------------------------------- /freetype/builds/os2/os2-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/os2/os2-dev.mk -------------------------------------------------------------------------------- /freetype/builds/os2/os2-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/os2/os2-gcc.mk -------------------------------------------------------------------------------- /freetype/builds/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/symbian/bld.inf -------------------------------------------------------------------------------- /freetype/builds/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/toplevel.mk -------------------------------------------------------------------------------- /freetype/builds/unix/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/aclocal.m4 -------------------------------------------------------------------------------- /freetype/builds/unix/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/config.sub -------------------------------------------------------------------------------- /freetype/builds/unix/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/configure -------------------------------------------------------------------------------- /freetype/builds/unix/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/detect.mk -------------------------------------------------------------------------------- /freetype/builds/unix/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/ftsystem.c -------------------------------------------------------------------------------- /freetype/builds/unix/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/install-sh -------------------------------------------------------------------------------- /freetype/builds/unix/install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/install.mk -------------------------------------------------------------------------------- /freetype/builds/unix/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/ltmain.sh -------------------------------------------------------------------------------- /freetype/builds/unix/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/pkg.m4 -------------------------------------------------------------------------------- /freetype/builds/unix/unix-cc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/unix-cc.in -------------------------------------------------------------------------------- /freetype/builds/unix/unix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/unix/unix.mk -------------------------------------------------------------------------------- /freetype/builds/vms/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/vms/ftconfig.h -------------------------------------------------------------------------------- /freetype/builds/vms/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/vms/ftsystem.c -------------------------------------------------------------------------------- /freetype/builds/vms/vmslib.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/vms/vmslib.dat -------------------------------------------------------------------------------- /freetype/builds/wince/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/builds/wince/ftdebug.c -------------------------------------------------------------------------------- /freetype/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/configure -------------------------------------------------------------------------------- /freetype/devel/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/devel/ft2build.h -------------------------------------------------------------------------------- /freetype/devel/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/devel/ftoption.h -------------------------------------------------------------------------------- /freetype/docs/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/docs/LICENSE.TXT -------------------------------------------------------------------------------- /freetype/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/include/ft2build.h -------------------------------------------------------------------------------- /freetype/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/modules.cfg -------------------------------------------------------------------------------- /freetype/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/objs/README -------------------------------------------------------------------------------- /freetype/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/Jamfile -------------------------------------------------------------------------------- /freetype/src/autofit/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/Jamfile -------------------------------------------------------------------------------- /freetype/src/autofit/afangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afangles.c -------------------------------------------------------------------------------- /freetype/src/autofit/afangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afangles.h -------------------------------------------------------------------------------- /freetype/src/autofit/afblue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afblue.c -------------------------------------------------------------------------------- /freetype/src/autofit/afblue.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afblue.cin -------------------------------------------------------------------------------- /freetype/src/autofit/afblue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afblue.dat -------------------------------------------------------------------------------- /freetype/src/autofit/afblue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afblue.h -------------------------------------------------------------------------------- /freetype/src/autofit/afblue.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afblue.hin -------------------------------------------------------------------------------- /freetype/src/autofit/afcjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afcjk.c -------------------------------------------------------------------------------- /freetype/src/autofit/afcjk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afcjk.h -------------------------------------------------------------------------------- /freetype/src/autofit/afcover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afcover.h -------------------------------------------------------------------------------- /freetype/src/autofit/afdummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afdummy.c -------------------------------------------------------------------------------- /freetype/src/autofit/afdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afdummy.h -------------------------------------------------------------------------------- /freetype/src/autofit/aferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/aferrors.h -------------------------------------------------------------------------------- /freetype/src/autofit/afglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afglobal.c -------------------------------------------------------------------------------- /freetype/src/autofit/afglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afglobal.h -------------------------------------------------------------------------------- /freetype/src/autofit/afhints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afhints.c -------------------------------------------------------------------------------- /freetype/src/autofit/afhints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afhints.h -------------------------------------------------------------------------------- /freetype/src/autofit/afindic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/autofit/afindic.c -------------------------------------------------------------------------------- /freetype/src/base/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/Jamfile -------------------------------------------------------------------------------- /freetype/src/base/ftadvanc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftadvanc.c -------------------------------------------------------------------------------- /freetype/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftbase.c -------------------------------------------------------------------------------- /freetype/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftbase.h -------------------------------------------------------------------------------- /freetype/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftbbox.c -------------------------------------------------------------------------------- /freetype/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftbdf.c -------------------------------------------------------------------------------- /freetype/src/base/ftbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftbitmap.c -------------------------------------------------------------------------------- /freetype/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftcalc.c -------------------------------------------------------------------------------- /freetype/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftcid.c -------------------------------------------------------------------------------- /freetype/src/base/ftcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftcolor.c -------------------------------------------------------------------------------- /freetype/src/base/ftdbgmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftdbgmem.c -------------------------------------------------------------------------------- /freetype/src/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftdebug.c -------------------------------------------------------------------------------- /freetype/src/base/fterrors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/fterrors.c -------------------------------------------------------------------------------- /freetype/src/base/ftfntfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftfntfmt.c -------------------------------------------------------------------------------- /freetype/src/base/ftfstype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftfstype.c -------------------------------------------------------------------------------- /freetype/src/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftgasp.c -------------------------------------------------------------------------------- /freetype/src/base/ftgloadr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftgloadr.c -------------------------------------------------------------------------------- /freetype/src/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftglyph.c -------------------------------------------------------------------------------- /freetype/src/base/ftgxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftgxval.c -------------------------------------------------------------------------------- /freetype/src/base/fthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/fthash.c -------------------------------------------------------------------------------- /freetype/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftinit.c -------------------------------------------------------------------------------- /freetype/src/base/ftlcdfil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftlcdfil.c -------------------------------------------------------------------------------- /freetype/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftmac.c -------------------------------------------------------------------------------- /freetype/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftmm.c -------------------------------------------------------------------------------- /freetype/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftobjs.c -------------------------------------------------------------------------------- /freetype/src/base/ftotval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftotval.c -------------------------------------------------------------------------------- /freetype/src/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftoutln.c -------------------------------------------------------------------------------- /freetype/src/base/ftpatent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftpatent.c -------------------------------------------------------------------------------- /freetype/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftpfr.c -------------------------------------------------------------------------------- /freetype/src/base/ftpsprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftpsprop.c -------------------------------------------------------------------------------- /freetype/src/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftrfork.c -------------------------------------------------------------------------------- /freetype/src/base/ftsnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftsnames.c -------------------------------------------------------------------------------- /freetype/src/base/ftstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftstream.c -------------------------------------------------------------------------------- /freetype/src/base/ftstroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftstroke.c -------------------------------------------------------------------------------- /freetype/src/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftsynth.c -------------------------------------------------------------------------------- /freetype/src/base/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftsystem.c -------------------------------------------------------------------------------- /freetype/src/base/fttrigon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/fttrigon.c -------------------------------------------------------------------------------- /freetype/src/base/fttype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/fttype1.c -------------------------------------------------------------------------------- /freetype/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftutil.c -------------------------------------------------------------------------------- /freetype/src/base/ftver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftver.rc -------------------------------------------------------------------------------- /freetype/src/base/ftwinfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/ftwinfnt.c -------------------------------------------------------------------------------- /freetype/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/md5.c -------------------------------------------------------------------------------- /freetype/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/md5.h -------------------------------------------------------------------------------- /freetype/src/base/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/base/rules.mk -------------------------------------------------------------------------------- /freetype/src/bdf/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/Jamfile -------------------------------------------------------------------------------- /freetype/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/README -------------------------------------------------------------------------------- /freetype/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/bdf.c -------------------------------------------------------------------------------- /freetype/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/bdf.h -------------------------------------------------------------------------------- /freetype/src/bdf/bdfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/bdfdrivr.c -------------------------------------------------------------------------------- /freetype/src/bdf/bdfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/bdfdrivr.h -------------------------------------------------------------------------------- /freetype/src/bdf/bdferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/bdferror.h -------------------------------------------------------------------------------- /freetype/src/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/bdflib.c -------------------------------------------------------------------------------- /freetype/src/bdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/module.mk -------------------------------------------------------------------------------- /freetype/src/bdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bdf/rules.mk -------------------------------------------------------------------------------- /freetype/src/bzip2/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bzip2/Jamfile -------------------------------------------------------------------------------- /freetype/src/bzip2/ftbzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bzip2/ftbzip2.c -------------------------------------------------------------------------------- /freetype/src/bzip2/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/bzip2/rules.mk -------------------------------------------------------------------------------- /freetype/src/cache/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cache/Jamfile -------------------------------------------------------------------------------- /freetype/src/cache/ftcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cache/ftcache.c -------------------------------------------------------------------------------- /freetype/src/cache/ftccmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cache/ftccmap.c -------------------------------------------------------------------------------- /freetype/src/cache/ftcmru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cache/ftcmru.c -------------------------------------------------------------------------------- /freetype/src/cache/ftcmru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cache/ftcmru.h -------------------------------------------------------------------------------- /freetype/src/cache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cache/rules.mk -------------------------------------------------------------------------------- /freetype/src/cff/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/Jamfile -------------------------------------------------------------------------------- /freetype/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cff.c -------------------------------------------------------------------------------- /freetype/src/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffcmap.c -------------------------------------------------------------------------------- /freetype/src/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffcmap.h -------------------------------------------------------------------------------- /freetype/src/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffdrivr.c -------------------------------------------------------------------------------- /freetype/src/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffdrivr.h -------------------------------------------------------------------------------- /freetype/src/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cfferrs.h -------------------------------------------------------------------------------- /freetype/src/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffgload.c -------------------------------------------------------------------------------- /freetype/src/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffgload.h -------------------------------------------------------------------------------- /freetype/src/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffload.c -------------------------------------------------------------------------------- /freetype/src/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffload.h -------------------------------------------------------------------------------- /freetype/src/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffobjs.c -------------------------------------------------------------------------------- /freetype/src/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffobjs.h -------------------------------------------------------------------------------- /freetype/src/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffparse.c -------------------------------------------------------------------------------- /freetype/src/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cffparse.h -------------------------------------------------------------------------------- /freetype/src/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/cfftoken.h -------------------------------------------------------------------------------- /freetype/src/cff/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/module.mk -------------------------------------------------------------------------------- /freetype/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cff/rules.mk -------------------------------------------------------------------------------- /freetype/src/cid/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/Jamfile -------------------------------------------------------------------------------- /freetype/src/cid/ciderrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/ciderrs.h -------------------------------------------------------------------------------- /freetype/src/cid/cidgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidgload.c -------------------------------------------------------------------------------- /freetype/src/cid/cidgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidgload.h -------------------------------------------------------------------------------- /freetype/src/cid/cidload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidload.c -------------------------------------------------------------------------------- /freetype/src/cid/cidload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidload.h -------------------------------------------------------------------------------- /freetype/src/cid/cidobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidobjs.c -------------------------------------------------------------------------------- /freetype/src/cid/cidobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidobjs.h -------------------------------------------------------------------------------- /freetype/src/cid/cidparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidparse.c -------------------------------------------------------------------------------- /freetype/src/cid/cidparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidparse.h -------------------------------------------------------------------------------- /freetype/src/cid/cidriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidriver.c -------------------------------------------------------------------------------- /freetype/src/cid/cidriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidriver.h -------------------------------------------------------------------------------- /freetype/src/cid/cidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/cidtoken.h -------------------------------------------------------------------------------- /freetype/src/cid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/module.mk -------------------------------------------------------------------------------- /freetype/src/cid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/rules.mk -------------------------------------------------------------------------------- /freetype/src/cid/type1cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/cid/type1cid.c -------------------------------------------------------------------------------- /freetype/src/gxvalid/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gxvalid/Jamfile -------------------------------------------------------------------------------- /freetype/src/gxvalid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gxvalid/README -------------------------------------------------------------------------------- /freetype/src/gzip/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/Jamfile -------------------------------------------------------------------------------- /freetype/src/gzip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/adler32.c -------------------------------------------------------------------------------- /freetype/src/gzip/ftgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/ftgzip.c -------------------------------------------------------------------------------- /freetype/src/gzip/ftzconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/ftzconf.h -------------------------------------------------------------------------------- /freetype/src/gzip/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/infblock.c -------------------------------------------------------------------------------- /freetype/src/gzip/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/infblock.h -------------------------------------------------------------------------------- /freetype/src/gzip/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/infcodes.c -------------------------------------------------------------------------------- /freetype/src/gzip/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/infcodes.h -------------------------------------------------------------------------------- /freetype/src/gzip/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/inffixed.h -------------------------------------------------------------------------------- /freetype/src/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/inflate.c -------------------------------------------------------------------------------- /freetype/src/gzip/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/inftrees.c -------------------------------------------------------------------------------- /freetype/src/gzip/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/inftrees.h -------------------------------------------------------------------------------- /freetype/src/gzip/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/infutil.c -------------------------------------------------------------------------------- /freetype/src/gzip/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/infutil.h -------------------------------------------------------------------------------- /freetype/src/gzip/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/rules.mk -------------------------------------------------------------------------------- /freetype/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/zlib.h -------------------------------------------------------------------------------- /freetype/src/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/zutil.c -------------------------------------------------------------------------------- /freetype/src/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/gzip/zutil.h -------------------------------------------------------------------------------- /freetype/src/lzw/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/lzw/Jamfile -------------------------------------------------------------------------------- /freetype/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /freetype/src/lzw/ftzopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/lzw/ftzopen.c -------------------------------------------------------------------------------- /freetype/src/lzw/ftzopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/lzw/ftzopen.h -------------------------------------------------------------------------------- /freetype/src/lzw/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/lzw/rules.mk -------------------------------------------------------------------------------- /freetype/src/otvalid/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/otvalid/Jamfile -------------------------------------------------------------------------------- /freetype/src/pcf/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/Jamfile -------------------------------------------------------------------------------- /freetype/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/README -------------------------------------------------------------------------------- /freetype/src/pcf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/module.mk -------------------------------------------------------------------------------- /freetype/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcf.c -------------------------------------------------------------------------------- /freetype/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcf.h -------------------------------------------------------------------------------- /freetype/src/pcf/pcfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcfdrivr.c -------------------------------------------------------------------------------- /freetype/src/pcf/pcfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcfdrivr.h -------------------------------------------------------------------------------- /freetype/src/pcf/pcferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcferror.h -------------------------------------------------------------------------------- /freetype/src/pcf/pcfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcfread.c -------------------------------------------------------------------------------- /freetype/src/pcf/pcfread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcfread.h -------------------------------------------------------------------------------- /freetype/src/pcf/pcfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcfutil.c -------------------------------------------------------------------------------- /freetype/src/pcf/pcfutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/pcfutil.h -------------------------------------------------------------------------------- /freetype/src/pcf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pcf/rules.mk -------------------------------------------------------------------------------- /freetype/src/pfr/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/Jamfile -------------------------------------------------------------------------------- /freetype/src/pfr/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/module.mk -------------------------------------------------------------------------------- /freetype/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfr.c -------------------------------------------------------------------------------- /freetype/src/pfr/pfrcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrcmap.c -------------------------------------------------------------------------------- /freetype/src/pfr/pfrcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrcmap.h -------------------------------------------------------------------------------- /freetype/src/pfr/pfrdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrdrivr.c -------------------------------------------------------------------------------- /freetype/src/pfr/pfrdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrdrivr.h -------------------------------------------------------------------------------- /freetype/src/pfr/pfrerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrerror.h -------------------------------------------------------------------------------- /freetype/src/pfr/pfrgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrgload.c -------------------------------------------------------------------------------- /freetype/src/pfr/pfrgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrgload.h -------------------------------------------------------------------------------- /freetype/src/pfr/pfrload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrload.c -------------------------------------------------------------------------------- /freetype/src/pfr/pfrload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrload.h -------------------------------------------------------------------------------- /freetype/src/pfr/pfrobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrobjs.c -------------------------------------------------------------------------------- /freetype/src/pfr/pfrobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrobjs.h -------------------------------------------------------------------------------- /freetype/src/pfr/pfrsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrsbit.c -------------------------------------------------------------------------------- /freetype/src/pfr/pfrsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrsbit.h -------------------------------------------------------------------------------- /freetype/src/pfr/pfrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/pfrtypes.h -------------------------------------------------------------------------------- /freetype/src/pfr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/pfr/rules.mk -------------------------------------------------------------------------------- /freetype/src/psaux/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/Jamfile -------------------------------------------------------------------------------- /freetype/src/psaux/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/module.mk -------------------------------------------------------------------------------- /freetype/src/psaux/psarrst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psarrst.c -------------------------------------------------------------------------------- /freetype/src/psaux/psarrst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psarrst.h -------------------------------------------------------------------------------- /freetype/src/psaux/psaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psaux.c -------------------------------------------------------------------------------- /freetype/src/psaux/psblues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psblues.c -------------------------------------------------------------------------------- /freetype/src/psaux/psblues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psblues.h -------------------------------------------------------------------------------- /freetype/src/psaux/psconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psconv.c -------------------------------------------------------------------------------- /freetype/src/psaux/psconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psconv.h -------------------------------------------------------------------------------- /freetype/src/psaux/pserror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/pserror.c -------------------------------------------------------------------------------- /freetype/src/psaux/pserror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/pserror.h -------------------------------------------------------------------------------- /freetype/src/psaux/psfixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psfixed.h -------------------------------------------------------------------------------- /freetype/src/psaux/psfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psfont.c -------------------------------------------------------------------------------- /freetype/src/psaux/psfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psfont.h -------------------------------------------------------------------------------- /freetype/src/psaux/psft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psft.c -------------------------------------------------------------------------------- /freetype/src/psaux/psft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psft.h -------------------------------------------------------------------------------- /freetype/src/psaux/psglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psglue.h -------------------------------------------------------------------------------- /freetype/src/psaux/pshints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/pshints.c -------------------------------------------------------------------------------- /freetype/src/psaux/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/pshints.h -------------------------------------------------------------------------------- /freetype/src/psaux/psintrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psintrp.c -------------------------------------------------------------------------------- /freetype/src/psaux/psintrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psintrp.h -------------------------------------------------------------------------------- /freetype/src/psaux/psobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psobjs.c -------------------------------------------------------------------------------- /freetype/src/psaux/psobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psobjs.h -------------------------------------------------------------------------------- /freetype/src/psaux/psread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psread.c -------------------------------------------------------------------------------- /freetype/src/psaux/psread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psread.h -------------------------------------------------------------------------------- /freetype/src/psaux/psstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psstack.c -------------------------------------------------------------------------------- /freetype/src/psaux/psstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/psstack.h -------------------------------------------------------------------------------- /freetype/src/psaux/pstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/pstypes.h -------------------------------------------------------------------------------- /freetype/src/psaux/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/rules.mk -------------------------------------------------------------------------------- /freetype/src/psaux/t1cmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/t1cmap.c -------------------------------------------------------------------------------- /freetype/src/psaux/t1cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psaux/t1cmap.h -------------------------------------------------------------------------------- /freetype/src/psnames/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/psnames/Jamfile -------------------------------------------------------------------------------- /freetype/src/raster/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/raster/Jamfile -------------------------------------------------------------------------------- /freetype/src/raster/ftmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/raster/ftmisc.h -------------------------------------------------------------------------------- /freetype/src/raster/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/raster/raster.c -------------------------------------------------------------------------------- /freetype/src/raster/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/raster/rules.mk -------------------------------------------------------------------------------- /freetype/src/sfnt/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/Jamfile -------------------------------------------------------------------------------- /freetype/src/sfnt/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/module.mk -------------------------------------------------------------------------------- /freetype/src/sfnt/pngshim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/pngshim.c -------------------------------------------------------------------------------- /freetype/src/sfnt/pngshim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/pngshim.h -------------------------------------------------------------------------------- /freetype/src/sfnt/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/rules.mk -------------------------------------------------------------------------------- /freetype/src/sfnt/sfdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfdriver.c -------------------------------------------------------------------------------- /freetype/src/sfnt/sfdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfdriver.h -------------------------------------------------------------------------------- /freetype/src/sfnt/sferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sferrors.h -------------------------------------------------------------------------------- /freetype/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /freetype/src/sfnt/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfobjs.c -------------------------------------------------------------------------------- /freetype/src/sfnt/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfobjs.h -------------------------------------------------------------------------------- /freetype/src/sfnt/sfwoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfwoff.c -------------------------------------------------------------------------------- /freetype/src/sfnt/sfwoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfwoff.h -------------------------------------------------------------------------------- /freetype/src/sfnt/sfwoff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfwoff2.c -------------------------------------------------------------------------------- /freetype/src/sfnt/sfwoff2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/sfwoff2.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttcmap.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttcmap.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttcmapc.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttcolr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttcolr.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttcolr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttcolr.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttcpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttcpal.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttcpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttcpal.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttkern.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttkern.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttload.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttload.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttpost.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttpost.h -------------------------------------------------------------------------------- /freetype/src/sfnt/ttsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttsbit.c -------------------------------------------------------------------------------- /freetype/src/sfnt/ttsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/sfnt/ttsbit.h -------------------------------------------------------------------------------- /freetype/src/smooth/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/smooth/Jamfile -------------------------------------------------------------------------------- /freetype/src/smooth/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/smooth/rules.mk -------------------------------------------------------------------------------- /freetype/src/smooth/smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/smooth/smooth.c -------------------------------------------------------------------------------- /freetype/src/tools/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/tools/Jamfile -------------------------------------------------------------------------------- /freetype/src/tools/afblue.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/tools/afblue.pl -------------------------------------------------------------------------------- /freetype/src/tools/cordic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/tools/cordic.py -------------------------------------------------------------------------------- /freetype/src/type1/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/Jamfile -------------------------------------------------------------------------------- /freetype/src/type1/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/module.mk -------------------------------------------------------------------------------- /freetype/src/type1/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/rules.mk -------------------------------------------------------------------------------- /freetype/src/type1/t1afm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1afm.c -------------------------------------------------------------------------------- /freetype/src/type1/t1afm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1afm.h -------------------------------------------------------------------------------- /freetype/src/type1/t1gload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1gload.c -------------------------------------------------------------------------------- /freetype/src/type1/t1gload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1gload.h -------------------------------------------------------------------------------- /freetype/src/type1/t1load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1load.c -------------------------------------------------------------------------------- /freetype/src/type1/t1load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1load.h -------------------------------------------------------------------------------- /freetype/src/type1/t1objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1objs.c -------------------------------------------------------------------------------- /freetype/src/type1/t1objs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1objs.h -------------------------------------------------------------------------------- /freetype/src/type1/t1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1parse.c -------------------------------------------------------------------------------- /freetype/src/type1/t1parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/t1parse.h -------------------------------------------------------------------------------- /freetype/src/type1/type1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type1/type1.c -------------------------------------------------------------------------------- /freetype/src/type42/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type42/Jamfile -------------------------------------------------------------------------------- /freetype/src/type42/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type42/rules.mk -------------------------------------------------------------------------------- /freetype/src/type42/type42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/src/type42/type42.c -------------------------------------------------------------------------------- /freetype/version.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/version.sed -------------------------------------------------------------------------------- /freetype/vms_make.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/freetype/vms_make.com -------------------------------------------------------------------------------- /harfbuzz/.ci/build-win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/.ci/build-win32.sh -------------------------------------------------------------------------------- /harfbuzz/.ci/deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/.ci/deploy-docs.sh -------------------------------------------------------------------------------- /harfbuzz/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/.clang-format -------------------------------------------------------------------------------- /harfbuzz/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/.codecov.yml -------------------------------------------------------------------------------- /harfbuzz/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/.editorconfig -------------------------------------------------------------------------------- /harfbuzz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/AUTHORS -------------------------------------------------------------------------------- /harfbuzz/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/BUILD.md -------------------------------------------------------------------------------- /harfbuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/CMakeLists.txt -------------------------------------------------------------------------------- /harfbuzz/CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/CONFIG.md -------------------------------------------------------------------------------- /harfbuzz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/COPYING -------------------------------------------------------------------------------- /harfbuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/Makefile.am -------------------------------------------------------------------------------- /harfbuzz/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/NEWS -------------------------------------------------------------------------------- /harfbuzz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/README -------------------------------------------------------------------------------- /harfbuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/README.md -------------------------------------------------------------------------------- /harfbuzz/README.mingw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/README.mingw.md -------------------------------------------------------------------------------- /harfbuzz/README.python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/README.python.md -------------------------------------------------------------------------------- /harfbuzz/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/RELEASING.md -------------------------------------------------------------------------------- /harfbuzz/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/TESTING.md -------------------------------------------------------------------------------- /harfbuzz/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/THANKS -------------------------------------------------------------------------------- /harfbuzz/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/TODO -------------------------------------------------------------------------------- /harfbuzz/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/autogen.sh -------------------------------------------------------------------------------- /harfbuzz/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/configure.ac -------------------------------------------------------------------------------- /harfbuzz/docs/HarfBuzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/docs/HarfBuzz.png -------------------------------------------------------------------------------- /harfbuzz/docs/HarfBuzz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/docs/HarfBuzz.svg -------------------------------------------------------------------------------- /harfbuzz/docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/docs/Makefile.am -------------------------------------------------------------------------------- /harfbuzz/docs/harfbuzz-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /harfbuzz/docs/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/docs/meson.build -------------------------------------------------------------------------------- /harfbuzz/docs/version.xml.in: -------------------------------------------------------------------------------- 1 | @HB_VERSION@ 2 | -------------------------------------------------------------------------------- /harfbuzz/git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/git.mk -------------------------------------------------------------------------------- /harfbuzz/harfbuzz.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/harfbuzz.doap -------------------------------------------------------------------------------- /harfbuzz/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /harfbuzz/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/meson.build -------------------------------------------------------------------------------- /harfbuzz/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/meson_options.txt -------------------------------------------------------------------------------- /harfbuzz/perf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/perf/meson.build -------------------------------------------------------------------------------- /harfbuzz/perf/perf-draw.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/perf/perf-draw.hh -------------------------------------------------------------------------------- /harfbuzz/perf/perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/perf/perf.cc -------------------------------------------------------------------------------- /harfbuzz/perf/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/perf/run.sh -------------------------------------------------------------------------------- /harfbuzz/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/Makefile.am -------------------------------------------------------------------------------- /harfbuzz/src/failing-alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/failing-alloc.c -------------------------------------------------------------------------------- /harfbuzz/src/gen-def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/gen-def.py -------------------------------------------------------------------------------- /harfbuzz/src/harfbuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/harfbuzz.cc -------------------------------------------------------------------------------- /harfbuzz/src/harfbuzz.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/harfbuzz.pc.in -------------------------------------------------------------------------------- /harfbuzz/src/hb-aat-layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-aat-layout.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-aat-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-aat-map.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-aat-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-aat-map.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-aat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-aat.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-algs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-algs.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-array.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-atomic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-atomic.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-bimap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-bimap.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-blob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-blob.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-blob.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-blob.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-blob.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-buffer.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-buffer.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-buffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-buffer.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-cache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-cache.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-common.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-common.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-config.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-coretext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-coretext.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-coretext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-coretext.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-debug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-debug.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-deprecated.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-dispatch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-dispatch.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-draw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-draw.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-draw.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-draw.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-draw.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-face.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-face.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-face.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-face.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-face.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-font.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-font.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-font.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-font.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-ft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ft.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ft.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-gdi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-gdi.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-gdi.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-glib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-glib.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-glib.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-gobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-gobject.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-graphite2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-graphite2.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-graphite2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-graphite2.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-icu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-icu.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-icu.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-iter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-iter.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-kern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-kern.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-machinery.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-machinery.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-map.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-map.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-map.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-meta.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-meta.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-mutex.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-mutex.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-null.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-null.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-number.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-number.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-number.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-number.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-object.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-object.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-open-file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-open-file.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-open-type.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-open-type.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-color.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-color.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-face.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-face.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-face.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-face.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-font.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-font.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-layout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-layout.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-layout.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-layout.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-layout.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-map.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-map.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-math.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-math.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-math.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-meta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-meta.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-meta.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-metrics.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-name.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-name.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-shape.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-shape.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-shape.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-shape.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-tag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-tag.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-var.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-var.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot-var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot-var.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-ot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ot.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-pool.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-sanitize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-sanitize.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-serialize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-serialize.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-set.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-set.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-set.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-set.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-shape-plan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-shape-plan.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-shape.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-shape.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-shaper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-shaper.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-shaper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-shaper.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-static.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-static.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-style.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-style.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-style.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-subset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-subset.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-subset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-subset.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-subset.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-subset.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-ucd-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ucd-table.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-ucd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-ucd.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-unicode.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-unicode.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-unicode.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-unicode.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-uniscribe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-uniscribe.cc -------------------------------------------------------------------------------- /harfbuzz/src/hb-uniscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-uniscribe.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-utf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-utf.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-vector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-vector.hh -------------------------------------------------------------------------------- /harfbuzz/src/hb-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-version.h -------------------------------------------------------------------------------- /harfbuzz/src/hb-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb-version.h.in -------------------------------------------------------------------------------- /harfbuzz/src/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb.h -------------------------------------------------------------------------------- /harfbuzz/src/hb.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/hb.hh -------------------------------------------------------------------------------- /harfbuzz/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/main.cc -------------------------------------------------------------------------------- /harfbuzz/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/meson.build -------------------------------------------------------------------------------- /harfbuzz/src/ms-use/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/ms-use/COPYING -------------------------------------------------------------------------------- /harfbuzz/src/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/sample.py -------------------------------------------------------------------------------- /harfbuzz/src/test-algs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test-algs.cc -------------------------------------------------------------------------------- /harfbuzz/src/test-array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test-array.cc -------------------------------------------------------------------------------- /harfbuzz/src/test-bimap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test-bimap.cc -------------------------------------------------------------------------------- /harfbuzz/src/test-iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test-iter.cc -------------------------------------------------------------------------------- /harfbuzz/src/test-meta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test-meta.cc -------------------------------------------------------------------------------- /harfbuzz/src/test-number.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test-number.cc -------------------------------------------------------------------------------- /harfbuzz/src/test-ot-meta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test-ot-meta.cc -------------------------------------------------------------------------------- /harfbuzz/src/test-ot-name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test-ot-name.cc -------------------------------------------------------------------------------- /harfbuzz/src/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/src/test.cc -------------------------------------------------------------------------------- /harfbuzz/util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/Makefile.am -------------------------------------------------------------------------------- /harfbuzz/util/ansi-print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/ansi-print.cc -------------------------------------------------------------------------------- /harfbuzz/util/ansi-print.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/ansi-print.hh -------------------------------------------------------------------------------- /harfbuzz/util/hb-fc-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/hb-fc-list.c -------------------------------------------------------------------------------- /harfbuzz/util/hb-fc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/hb-fc.cc -------------------------------------------------------------------------------- /harfbuzz/util/hb-fc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/hb-fc.h -------------------------------------------------------------------------------- /harfbuzz/util/hb-shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/hb-shape.cc -------------------------------------------------------------------------------- /harfbuzz/util/hb-subset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/hb-subset.cc -------------------------------------------------------------------------------- /harfbuzz/util/hb-view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/hb-view.cc -------------------------------------------------------------------------------- /harfbuzz/util/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/meson.build -------------------------------------------------------------------------------- /harfbuzz/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/options.cc -------------------------------------------------------------------------------- /harfbuzz/util/options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/options.hh -------------------------------------------------------------------------------- /harfbuzz/util/view-cairo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/view-cairo.cc -------------------------------------------------------------------------------- /harfbuzz/util/view-cairo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/harfbuzz/util/view-cairo.hh -------------------------------------------------------------------------------- /icu/common/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/Makefile.in -------------------------------------------------------------------------------- /icu/common/appendable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/appendable.cpp -------------------------------------------------------------------------------- /icu/common/bmpset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/bmpset.cpp -------------------------------------------------------------------------------- /icu/common/bmpset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/bmpset.h -------------------------------------------------------------------------------- /icu/common/brkeng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/brkeng.cpp -------------------------------------------------------------------------------- /icu/common/brkeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/brkeng.h -------------------------------------------------------------------------------- /icu/common/brkiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/brkiter.cpp -------------------------------------------------------------------------------- /icu/common/bytesinkutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/bytesinkutil.cpp -------------------------------------------------------------------------------- /icu/common/bytesinkutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/bytesinkutil.h -------------------------------------------------------------------------------- /icu/common/bytestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/bytestream.cpp -------------------------------------------------------------------------------- /icu/common/bytestrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/bytestrie.cpp -------------------------------------------------------------------------------- /icu/common/caniter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/caniter.cpp -------------------------------------------------------------------------------- /icu/common/capi_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/capi_helper.h -------------------------------------------------------------------------------- /icu/common/chariter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/chariter.cpp -------------------------------------------------------------------------------- /icu/common/charstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/charstr.cpp -------------------------------------------------------------------------------- /icu/common/charstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/charstr.h -------------------------------------------------------------------------------- /icu/common/cmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cmemory.cpp -------------------------------------------------------------------------------- /icu/common/cmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cmemory.h -------------------------------------------------------------------------------- /icu/common/cpputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cpputils.h -------------------------------------------------------------------------------- /icu/common/cstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cstr.cpp -------------------------------------------------------------------------------- /icu/common/cstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cstr.h -------------------------------------------------------------------------------- /icu/common/cstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cstring.cpp -------------------------------------------------------------------------------- /icu/common/cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cstring.h -------------------------------------------------------------------------------- /icu/common/cwchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cwchar.cpp -------------------------------------------------------------------------------- /icu/common/cwchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/cwchar.h -------------------------------------------------------------------------------- /icu/common/dictbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/dictbe.cpp -------------------------------------------------------------------------------- /icu/common/dictbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/dictbe.h -------------------------------------------------------------------------------- /icu/common/dictionarydata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/dictionarydata.h -------------------------------------------------------------------------------- /icu/common/dtintrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/dtintrv.cpp -------------------------------------------------------------------------------- /icu/common/edits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/edits.cpp -------------------------------------------------------------------------------- /icu/common/errorcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/errorcode.cpp -------------------------------------------------------------------------------- /icu/common/filteredbrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/filteredbrk.cpp -------------------------------------------------------------------------------- /icu/common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/hash.h -------------------------------------------------------------------------------- /icu/common/icudataver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/icudataver.cpp -------------------------------------------------------------------------------- /icu/common/icuplug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/icuplug.cpp -------------------------------------------------------------------------------- /icu/common/icuplugimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/icuplugimp.h -------------------------------------------------------------------------------- /icu/common/localebuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/localebuilder.cpp -------------------------------------------------------------------------------- /icu/common/localematcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/localematcher.cpp -------------------------------------------------------------------------------- /icu/common/localsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/localsvc.h -------------------------------------------------------------------------------- /icu/common/locavailable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locavailable.cpp -------------------------------------------------------------------------------- /icu/common/locbased.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locbased.cpp -------------------------------------------------------------------------------- /icu/common/locbased.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locbased.h -------------------------------------------------------------------------------- /icu/common/locdispnames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locdispnames.cpp -------------------------------------------------------------------------------- /icu/common/locdistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locdistance.cpp -------------------------------------------------------------------------------- /icu/common/locdistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locdistance.h -------------------------------------------------------------------------------- /icu/common/locdspnm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locdspnm.cpp -------------------------------------------------------------------------------- /icu/common/locid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locid.cpp -------------------------------------------------------------------------------- /icu/common/loclikely.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/loclikely.cpp -------------------------------------------------------------------------------- /icu/common/locmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locmap.cpp -------------------------------------------------------------------------------- /icu/common/locmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locmap.h -------------------------------------------------------------------------------- /icu/common/locresdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locresdata.cpp -------------------------------------------------------------------------------- /icu/common/locutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locutil.cpp -------------------------------------------------------------------------------- /icu/common/locutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/locutil.h -------------------------------------------------------------------------------- /icu/common/lsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/lsr.cpp -------------------------------------------------------------------------------- /icu/common/lsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/lsr.h -------------------------------------------------------------------------------- /icu/common/messageimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/messageimpl.h -------------------------------------------------------------------------------- /icu/common/msvcres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/msvcres.h -------------------------------------------------------------------------------- /icu/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/mutex.h -------------------------------------------------------------------------------- /icu/common/norm2_nfc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/norm2_nfc_data.h -------------------------------------------------------------------------------- /icu/common/norm2allmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/norm2allmodes.h -------------------------------------------------------------------------------- /icu/common/normalizer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/normalizer2.cpp -------------------------------------------------------------------------------- /icu/common/normalizer2impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/normalizer2impl.h -------------------------------------------------------------------------------- /icu/common/normlzr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/normlzr.cpp -------------------------------------------------------------------------------- /icu/common/parsepos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/parsepos.cpp -------------------------------------------------------------------------------- /icu/common/patternprops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/patternprops.cpp -------------------------------------------------------------------------------- /icu/common/patternprops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/patternprops.h -------------------------------------------------------------------------------- /icu/common/pluralmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/pluralmap.cpp -------------------------------------------------------------------------------- /icu/common/pluralmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/pluralmap.h -------------------------------------------------------------------------------- /icu/common/propname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/propname.cpp -------------------------------------------------------------------------------- /icu/common/propname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/propname.h -------------------------------------------------------------------------------- /icu/common/propname_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/propname_data.h -------------------------------------------------------------------------------- /icu/common/propsvec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/propsvec.cpp -------------------------------------------------------------------------------- /icu/common/propsvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/propsvec.h -------------------------------------------------------------------------------- /icu/common/punycode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/punycode.cpp -------------------------------------------------------------------------------- /icu/common/punycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/punycode.h -------------------------------------------------------------------------------- /icu/common/putil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/putil.cpp -------------------------------------------------------------------------------- /icu/common/putilimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/putilimp.h -------------------------------------------------------------------------------- /icu/common/rbbi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbi.cpp -------------------------------------------------------------------------------- /icu/common/rbbi_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbi_cache.cpp -------------------------------------------------------------------------------- /icu/common/rbbi_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbi_cache.h -------------------------------------------------------------------------------- /icu/common/rbbicst.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbicst.pl -------------------------------------------------------------------------------- /icu/common/rbbidata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbidata.cpp -------------------------------------------------------------------------------- /icu/common/rbbidata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbidata.h -------------------------------------------------------------------------------- /icu/common/rbbinode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbinode.cpp -------------------------------------------------------------------------------- /icu/common/rbbinode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbinode.h -------------------------------------------------------------------------------- /icu/common/rbbirb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbirb.cpp -------------------------------------------------------------------------------- /icu/common/rbbirb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbirb.h -------------------------------------------------------------------------------- /icu/common/rbbirpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbirpt.h -------------------------------------------------------------------------------- /icu/common/rbbirpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbirpt.txt -------------------------------------------------------------------------------- /icu/common/rbbiscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbiscan.cpp -------------------------------------------------------------------------------- /icu/common/rbbiscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbiscan.h -------------------------------------------------------------------------------- /icu/common/rbbisetb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbisetb.cpp -------------------------------------------------------------------------------- /icu/common/rbbisetb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbisetb.h -------------------------------------------------------------------------------- /icu/common/rbbistbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbistbl.cpp -------------------------------------------------------------------------------- /icu/common/rbbitblb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbitblb.cpp -------------------------------------------------------------------------------- /icu/common/rbbitblb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/rbbitblb.h -------------------------------------------------------------------------------- /icu/common/resbund.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/resbund.cpp -------------------------------------------------------------------------------- /icu/common/resbund_cnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/resbund_cnv.cpp -------------------------------------------------------------------------------- /icu/common/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/resource.cpp -------------------------------------------------------------------------------- /icu/common/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/resource.h -------------------------------------------------------------------------------- /icu/common/restrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/restrace.cpp -------------------------------------------------------------------------------- /icu/common/restrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/restrace.h -------------------------------------------------------------------------------- /icu/common/ruleiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ruleiter.cpp -------------------------------------------------------------------------------- /icu/common/ruleiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ruleiter.h -------------------------------------------------------------------------------- /icu/common/schriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/schriter.cpp -------------------------------------------------------------------------------- /icu/common/serv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/serv.cpp -------------------------------------------------------------------------------- /icu/common/serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/serv.h -------------------------------------------------------------------------------- /icu/common/servlk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/servlk.cpp -------------------------------------------------------------------------------- /icu/common/servlkf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/servlkf.cpp -------------------------------------------------------------------------------- /icu/common/servloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/servloc.h -------------------------------------------------------------------------------- /icu/common/servls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/servls.cpp -------------------------------------------------------------------------------- /icu/common/servnotf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/servnotf.cpp -------------------------------------------------------------------------------- /icu/common/servnotf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/servnotf.h -------------------------------------------------------------------------------- /icu/common/servrbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/servrbf.cpp -------------------------------------------------------------------------------- /icu/common/servslkf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/servslkf.cpp -------------------------------------------------------------------------------- /icu/common/sharedobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/sharedobject.cpp -------------------------------------------------------------------------------- /icu/common/sharedobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/sharedobject.h -------------------------------------------------------------------------------- /icu/common/sprpimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/sprpimpl.h -------------------------------------------------------------------------------- /icu/common/stringpiece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/stringpiece.cpp -------------------------------------------------------------------------------- /icu/common/uarrsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uarrsort.cpp -------------------------------------------------------------------------------- /icu/common/uarrsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uarrsort.h -------------------------------------------------------------------------------- /icu/common/uassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uassert.h -------------------------------------------------------------------------------- /icu/common/ubidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ubidi.cpp -------------------------------------------------------------------------------- /icu/common/ubidi_props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ubidi_props.cpp -------------------------------------------------------------------------------- /icu/common/ubidi_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ubidi_props.h -------------------------------------------------------------------------------- /icu/common/ubidiimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ubidiimp.h -------------------------------------------------------------------------------- /icu/common/ubidiln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ubidiln.cpp -------------------------------------------------------------------------------- /icu/common/ubidiwrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ubidiwrt.cpp -------------------------------------------------------------------------------- /icu/common/ubrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ubrk.cpp -------------------------------------------------------------------------------- /icu/common/ubrkimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ubrkimpl.h -------------------------------------------------------------------------------- /icu/common/ucase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucase.cpp -------------------------------------------------------------------------------- /icu/common/ucase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucase.h -------------------------------------------------------------------------------- /icu/common/ucasemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucasemap.cpp -------------------------------------------------------------------------------- /icu/common/ucasemap_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucasemap_imp.h -------------------------------------------------------------------------------- /icu/common/ucat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucat.cpp -------------------------------------------------------------------------------- /icu/common/uchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uchar.cpp -------------------------------------------------------------------------------- /icu/common/ucharstrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucharstrie.cpp -------------------------------------------------------------------------------- /icu/common/uchriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uchriter.cpp -------------------------------------------------------------------------------- /icu/common/ucln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucln.h -------------------------------------------------------------------------------- /icu/common/ucln_cmn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucln_cmn.cpp -------------------------------------------------------------------------------- /icu/common/ucln_cmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucln_cmn.h -------------------------------------------------------------------------------- /icu/common/ucln_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucln_imp.h -------------------------------------------------------------------------------- /icu/common/ucmndata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucmndata.cpp -------------------------------------------------------------------------------- /icu/common/ucmndata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucmndata.h -------------------------------------------------------------------------------- /icu/common/ucnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv.cpp -------------------------------------------------------------------------------- /icu/common/ucnv2022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv2022.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_bld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_bld.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_bld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_bld.h -------------------------------------------------------------------------------- /icu/common/ucnv_cb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_cb.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_cnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_cnv.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_cnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_cnv.h -------------------------------------------------------------------------------- /icu/common/ucnv_ct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_ct.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_err.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_err.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_ext.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_ext.h -------------------------------------------------------------------------------- /icu/common/ucnv_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_imp.h -------------------------------------------------------------------------------- /icu/common/ucnv_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_io.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_io.h -------------------------------------------------------------------------------- /icu/common/ucnv_lmb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_lmb.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_set.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_u16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_u16.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_u32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_u32.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_u7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_u7.cpp -------------------------------------------------------------------------------- /icu/common/ucnv_u8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnv_u8.cpp -------------------------------------------------------------------------------- /icu/common/ucnvbocu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvbocu.cpp -------------------------------------------------------------------------------- /icu/common/ucnvdisp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvdisp.cpp -------------------------------------------------------------------------------- /icu/common/ucnvhz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvhz.cpp -------------------------------------------------------------------------------- /icu/common/ucnvisci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvisci.cpp -------------------------------------------------------------------------------- /icu/common/ucnvlat1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvlat1.cpp -------------------------------------------------------------------------------- /icu/common/ucnvmbcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvmbcs.cpp -------------------------------------------------------------------------------- /icu/common/ucnvmbcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvmbcs.h -------------------------------------------------------------------------------- /icu/common/ucnvscsu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvscsu.cpp -------------------------------------------------------------------------------- /icu/common/ucnvsel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucnvsel.cpp -------------------------------------------------------------------------------- /icu/common/ucol_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucol_data.h -------------------------------------------------------------------------------- /icu/common/ucol_swp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucol_swp.cpp -------------------------------------------------------------------------------- /icu/common/ucol_swp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucol_swp.h -------------------------------------------------------------------------------- /icu/common/ucptrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucptrie.cpp -------------------------------------------------------------------------------- /icu/common/ucptrie_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucptrie_impl.h -------------------------------------------------------------------------------- /icu/common/ucurr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucurr.cpp -------------------------------------------------------------------------------- /icu/common/ucurrimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ucurrimp.h -------------------------------------------------------------------------------- /icu/common/udata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/udata.cpp -------------------------------------------------------------------------------- /icu/common/udatamem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/udatamem.cpp -------------------------------------------------------------------------------- /icu/common/udatamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/udatamem.h -------------------------------------------------------------------------------- /icu/common/udataswp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/udataswp.cpp -------------------------------------------------------------------------------- /icu/common/udataswp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/udataswp.h -------------------------------------------------------------------------------- /icu/common/uelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uelement.h -------------------------------------------------------------------------------- /icu/common/uenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uenum.cpp -------------------------------------------------------------------------------- /icu/common/uenumimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uenumimp.h -------------------------------------------------------------------------------- /icu/common/uhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uhash.cpp -------------------------------------------------------------------------------- /icu/common/uhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uhash.h -------------------------------------------------------------------------------- /icu/common/uhash_us.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uhash_us.cpp -------------------------------------------------------------------------------- /icu/common/uidna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uidna.cpp -------------------------------------------------------------------------------- /icu/common/uinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uinit.cpp -------------------------------------------------------------------------------- /icu/common/uinvchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uinvchar.cpp -------------------------------------------------------------------------------- /icu/common/uinvchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uinvchar.h -------------------------------------------------------------------------------- /icu/common/uiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uiter.cpp -------------------------------------------------------------------------------- /icu/common/ulayout_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ulayout_props.h -------------------------------------------------------------------------------- /icu/common/ulist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ulist.cpp -------------------------------------------------------------------------------- /icu/common/ulist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ulist.h -------------------------------------------------------------------------------- /icu/common/uloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uloc.cpp -------------------------------------------------------------------------------- /icu/common/uloc_keytype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uloc_keytype.cpp -------------------------------------------------------------------------------- /icu/common/uloc_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uloc_tag.cpp -------------------------------------------------------------------------------- /icu/common/ulocimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ulocimp.h -------------------------------------------------------------------------------- /icu/common/umapfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/umapfile.cpp -------------------------------------------------------------------------------- /icu/common/umapfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/umapfile.h -------------------------------------------------------------------------------- /icu/common/umath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/umath.cpp -------------------------------------------------------------------------------- /icu/common/umutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/umutex.cpp -------------------------------------------------------------------------------- /icu/common/umutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/umutex.h -------------------------------------------------------------------------------- /icu/common/unames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unames.cpp -------------------------------------------------------------------------------- /icu/common/unicode/brkiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/brkiter.h -------------------------------------------------------------------------------- /icu/common/unicode/caniter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/caniter.h -------------------------------------------------------------------------------- /icu/common/unicode/casemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/casemap.h -------------------------------------------------------------------------------- /icu/common/unicode/dbbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/dbbi.h -------------------------------------------------------------------------------- /icu/common/unicode/docmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/docmain.h -------------------------------------------------------------------------------- /icu/common/unicode/dtintrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/dtintrv.h -------------------------------------------------------------------------------- /icu/common/unicode/edits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/edits.h -------------------------------------------------------------------------------- /icu/common/unicode/enumset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/enumset.h -------------------------------------------------------------------------------- /icu/common/unicode/icuplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/icuplug.h -------------------------------------------------------------------------------- /icu/common/unicode/idna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/idna.h -------------------------------------------------------------------------------- /icu/common/unicode/locid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/locid.h -------------------------------------------------------------------------------- /icu/common/unicode/normlzr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/normlzr.h -------------------------------------------------------------------------------- /icu/common/unicode/ptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ptypes.h -------------------------------------------------------------------------------- /icu/common/unicode/putil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/putil.h -------------------------------------------------------------------------------- /icu/common/unicode/rbbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/rbbi.h -------------------------------------------------------------------------------- /icu/common/unicode/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/rep.h -------------------------------------------------------------------------------- /icu/common/unicode/resbund.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/resbund.h -------------------------------------------------------------------------------- /icu/common/unicode/strenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/strenum.h -------------------------------------------------------------------------------- /icu/common/unicode/ubidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ubidi.h -------------------------------------------------------------------------------- /icu/common/unicode/ubrk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ubrk.h -------------------------------------------------------------------------------- /icu/common/unicode/ucat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ucat.h -------------------------------------------------------------------------------- /icu/common/unicode/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uchar.h -------------------------------------------------------------------------------- /icu/common/unicode/uclean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uclean.h -------------------------------------------------------------------------------- /icu/common/unicode/ucnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ucnv.h -------------------------------------------------------------------------------- /icu/common/unicode/ucnv_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ucnv_cb.h -------------------------------------------------------------------------------- /icu/common/unicode/ucnvsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ucnvsel.h -------------------------------------------------------------------------------- /icu/common/unicode/uconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uconfig.h -------------------------------------------------------------------------------- /icu/common/unicode/ucpmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ucpmap.h -------------------------------------------------------------------------------- /icu/common/unicode/ucptrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ucptrie.h -------------------------------------------------------------------------------- /icu/common/unicode/ucurr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ucurr.h -------------------------------------------------------------------------------- /icu/common/unicode/udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/udata.h -------------------------------------------------------------------------------- /icu/common/unicode/uenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uenum.h -------------------------------------------------------------------------------- /icu/common/unicode/uidna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uidna.h -------------------------------------------------------------------------------- /icu/common/unicode/uiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uiter.h -------------------------------------------------------------------------------- /icu/common/unicode/uloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uloc.h -------------------------------------------------------------------------------- /icu/common/unicode/umisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/umisc.h -------------------------------------------------------------------------------- /icu/common/unicode/unifilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/unifilt.h -------------------------------------------------------------------------------- /icu/common/unicode/uniset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uniset.h -------------------------------------------------------------------------------- /icu/common/unicode/unistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/unistr.h -------------------------------------------------------------------------------- /icu/common/unicode/unorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/unorm.h -------------------------------------------------------------------------------- /icu/common/unicode/unorm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/unorm2.h -------------------------------------------------------------------------------- /icu/common/unicode/uobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uobject.h -------------------------------------------------------------------------------- /icu/common/unicode/urename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/urename.h -------------------------------------------------------------------------------- /icu/common/unicode/urep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/urep.h -------------------------------------------------------------------------------- /icu/common/unicode/ures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ures.h -------------------------------------------------------------------------------- /icu/common/unicode/uscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uscript.h -------------------------------------------------------------------------------- /icu/common/unicode/uset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uset.h -------------------------------------------------------------------------------- /icu/common/unicode/ushape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ushape.h -------------------------------------------------------------------------------- /icu/common/unicode/usprep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/usprep.h -------------------------------------------------------------------------------- /icu/common/unicode/ustring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/ustring.h -------------------------------------------------------------------------------- /icu/common/unicode/utext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/utext.h -------------------------------------------------------------------------------- /icu/common/unicode/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/utf.h -------------------------------------------------------------------------------- /icu/common/unicode/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/utf16.h -------------------------------------------------------------------------------- /icu/common/unicode/utf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/utf32.h -------------------------------------------------------------------------------- /icu/common/unicode/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/utf8.h -------------------------------------------------------------------------------- /icu/common/unicode/utf_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/utf_old.h -------------------------------------------------------------------------------- /icu/common/unicode/utrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/utrace.h -------------------------------------------------------------------------------- /icu/common/unicode/utypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/utypes.h -------------------------------------------------------------------------------- /icu/common/unicode/uvernum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unicode/uvernum.h -------------------------------------------------------------------------------- /icu/common/unifiedcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unifiedcache.cpp -------------------------------------------------------------------------------- /icu/common/unifiedcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unifiedcache.h -------------------------------------------------------------------------------- /icu/common/unifilt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unifilt.cpp -------------------------------------------------------------------------------- /icu/common/unifunct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unifunct.cpp -------------------------------------------------------------------------------- /icu/common/uniset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uniset.cpp -------------------------------------------------------------------------------- /icu/common/uniset_props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uniset_props.cpp -------------------------------------------------------------------------------- /icu/common/unisetspan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unisetspan.cpp -------------------------------------------------------------------------------- /icu/common/unisetspan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unisetspan.h -------------------------------------------------------------------------------- /icu/common/unistr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unistr.cpp -------------------------------------------------------------------------------- /icu/common/unistr_case.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unistr_case.cpp -------------------------------------------------------------------------------- /icu/common/unistr_cnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unistr_cnv.cpp -------------------------------------------------------------------------------- /icu/common/unistr_props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unistr_props.cpp -------------------------------------------------------------------------------- /icu/common/unistrappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unistrappender.h -------------------------------------------------------------------------------- /icu/common/unorm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unorm.cpp -------------------------------------------------------------------------------- /icu/common/unormcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unormcmp.cpp -------------------------------------------------------------------------------- /icu/common/unormimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/unormimp.h -------------------------------------------------------------------------------- /icu/common/uobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uobject.cpp -------------------------------------------------------------------------------- /icu/common/uposixdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uposixdefs.h -------------------------------------------------------------------------------- /icu/common/uprops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uprops.cpp -------------------------------------------------------------------------------- /icu/common/uprops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uprops.h -------------------------------------------------------------------------------- /icu/common/ures_cnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ures_cnv.cpp -------------------------------------------------------------------------------- /icu/common/uresbund.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uresbund.cpp -------------------------------------------------------------------------------- /icu/common/uresdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uresdata.cpp -------------------------------------------------------------------------------- /icu/common/uresdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uresdata.h -------------------------------------------------------------------------------- /icu/common/uresimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uresimp.h -------------------------------------------------------------------------------- /icu/common/ureslocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ureslocs.h -------------------------------------------------------------------------------- /icu/common/usc_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/usc_impl.cpp -------------------------------------------------------------------------------- /icu/common/usc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/usc_impl.h -------------------------------------------------------------------------------- /icu/common/uscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uscript.cpp -------------------------------------------------------------------------------- /icu/common/uscript_props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uscript_props.cpp -------------------------------------------------------------------------------- /icu/common/uset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uset.cpp -------------------------------------------------------------------------------- /icu/common/uset_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uset_imp.h -------------------------------------------------------------------------------- /icu/common/uset_props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uset_props.cpp -------------------------------------------------------------------------------- /icu/common/usetiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/usetiter.cpp -------------------------------------------------------------------------------- /icu/common/ushape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ushape.cpp -------------------------------------------------------------------------------- /icu/common/usprep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/usprep.cpp -------------------------------------------------------------------------------- /icu/common/ustack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustack.cpp -------------------------------------------------------------------------------- /icu/common/ustr_cnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustr_cnv.cpp -------------------------------------------------------------------------------- /icu/common/ustr_cnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustr_cnv.h -------------------------------------------------------------------------------- /icu/common/ustr_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustr_imp.h -------------------------------------------------------------------------------- /icu/common/ustr_wcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustr_wcs.cpp -------------------------------------------------------------------------------- /icu/common/ustrcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustrcase.cpp -------------------------------------------------------------------------------- /icu/common/ustrenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustrenum.cpp -------------------------------------------------------------------------------- /icu/common/ustrenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustrenum.h -------------------------------------------------------------------------------- /icu/common/ustrfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustrfmt.cpp -------------------------------------------------------------------------------- /icu/common/ustrfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustrfmt.h -------------------------------------------------------------------------------- /icu/common/ustring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustring.cpp -------------------------------------------------------------------------------- /icu/common/ustrtrns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/ustrtrns.cpp -------------------------------------------------------------------------------- /icu/common/utext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utext.cpp -------------------------------------------------------------------------------- /icu/common/utf_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utf_impl.cpp -------------------------------------------------------------------------------- /icu/common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/util.cpp -------------------------------------------------------------------------------- /icu/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/util.h -------------------------------------------------------------------------------- /icu/common/util_props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/util_props.cpp -------------------------------------------------------------------------------- /icu/common/utrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utrace.cpp -------------------------------------------------------------------------------- /icu/common/utracimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utracimp.h -------------------------------------------------------------------------------- /icu/common/utrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utrie.cpp -------------------------------------------------------------------------------- /icu/common/utrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utrie.h -------------------------------------------------------------------------------- /icu/common/utrie2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utrie2.cpp -------------------------------------------------------------------------------- /icu/common/utrie2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utrie2.h -------------------------------------------------------------------------------- /icu/common/utrie2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utrie2_impl.h -------------------------------------------------------------------------------- /icu/common/utrie_swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utrie_swap.cpp -------------------------------------------------------------------------------- /icu/common/uts46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uts46.cpp -------------------------------------------------------------------------------- /icu/common/utypeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utypeinfo.h -------------------------------------------------------------------------------- /icu/common/utypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/utypes.cpp -------------------------------------------------------------------------------- /icu/common/uvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uvector.cpp -------------------------------------------------------------------------------- /icu/common/uvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uvector.h -------------------------------------------------------------------------------- /icu/common/uvectr32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uvectr32.cpp -------------------------------------------------------------------------------- /icu/common/uvectr32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uvectr32.h -------------------------------------------------------------------------------- /icu/common/uvectr64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uvectr64.cpp -------------------------------------------------------------------------------- /icu/common/uvectr64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/uvectr64.h -------------------------------------------------------------------------------- /icu/common/wintz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/wintz.cpp -------------------------------------------------------------------------------- /icu/common/wintz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/common/wintz.h -------------------------------------------------------------------------------- /icu/stubdata/stubdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/icu/stubdata/stubdata.cpp -------------------------------------------------------------------------------- /updating-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/harfbuzz-icu-freetype/HEAD/updating-libraries.md --------------------------------------------------------------------------------