Home | History | Annotate | only in /external/harfbuzz/contrib/tables
Up to higher level directory
NameDateSize
BidiMirroring.txt09-Oct-201323.4K
category-parse.py09-Oct-20132.2K
category-properties.h09-Oct-2013111.5K
combining-class-parse.py09-Oct-20131.2K
combining-properties.h09-Oct-20135.6K
DerivedCombiningClass.txt09-Oct-2013107.2K
DerivedGeneralCategory.txt09-Oct-2013185.5K
grapheme-break-parse.py09-Oct-20131.6K
grapheme-break-properties.h09-Oct-201340K
GraphemeBreakProperty.txt09-Oct-201372.1K
mirroring-parse.py09-Oct-20131.6K
mirroring-properties.h09-Oct-20137.4K
README09-Oct-2013925
script-properties.h09-Oct-201311K
scripts-parse.py09-Oct-20132.5K
Scripts.txt09-Oct-2013106.2K
unicode_parse_common.py09-Oct-20132K

README

      1 This directory contains Python script to parse several of the Unicode tables
      2 that are downloadable from the web and generate C header files from them.
      3 
      4 These are the locations of the files which are parsed. You should download these
      5 files and put them in this directory.
      6 
      7 http://www.unicode.org/Public/5.1.0/ucd/extracted/DerivedGeneralCategory.txt
      8 http://www.unicode.org/Public/5.1.0/ucd/extracted/DerivedCombiningClass.txt
      9 http://www.unicode.org/Public/UNIDATA/auxiliary/GraphemeBreakProperty.txt
     10 http://www.unicode.org/Public/5.1.0/ucd/Scripts.txt
     11 
     12 Then you can run the following python scripts to generate the header files:
     13 
     14 python category-parse.py DerivedGeneralCategory.txt category-properties.h
     15 python combining-class-parse.py DerivedCombiningClass.txt combining-properties.h
     16 python grapheme-break-parse.py GraphemeBreakProperty.txt grapheme-break-properties.h
     17 python scripts-parse.py Scripts.txt script-properties.h
     18