├── .github └── workflows │ └── pages.yml ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Graphite.cmake ├── LICENSE ├── README.md ├── Todo.txt ├── contrib ├── C# │ ├── NGraphite.sln │ ├── NGraphite │ │ ├── AssemblyInfo.cs │ │ ├── AttrCode.cs │ │ ├── Bidirtl.cs │ │ ├── BreakWeight.cs │ │ ├── CharInfo.cs │ │ ├── Encform.cs │ │ ├── Face.cs │ │ ├── FaceOptions.cs │ │ ├── FeatureRef.cs │ │ ├── Featureval.cs │ │ ├── Font.cs │ │ ├── Graphite2Api.cs │ │ ├── JustFlags.cs │ │ ├── NGraphite.csproj │ │ ├── NGraphite.dll.config │ │ ├── Segment.cs │ │ └── Slot.cs │ ├── NGraphiteTests │ │ ├── CharInfoTests.cs │ │ ├── FaceTests.cs │ │ ├── FeatureRefTests.cs │ │ ├── FeaturevalTests.cs │ │ ├── FontTests.cs │ │ ├── GeneralTests.cs │ │ ├── Graphite2ApiTests.cs │ │ ├── NGraphiteTests.csproj │ │ ├── SegmentTests.cs │ │ ├── SlotTests.cs │ │ └── TestConstants.cs │ └── README ├── android.README ├── envsetup.sh └── perl │ ├── Build.PL │ ├── Changes │ ├── MANIFEST │ ├── META.yml │ ├── examples │ ├── gr2fonttest.pl │ └── typeset.pl │ ├── lib │ └── Text │ │ ├── Gr2.pm │ │ ├── Gr2.xs │ │ ├── Gr2 │ │ ├── CharInfo.pm │ │ ├── Face.pm │ │ ├── FeatureRef.pm │ │ ├── FeatureVal.pm │ │ ├── Font.pm │ │ ├── Segment.pm │ │ └── Slot.pm │ │ └── typemap │ ├── ppport.h │ └── t │ ├── 00-load.t │ ├── pod-coverage.t │ └── pod.t ├── debian-src ├── build ├── changelog ├── compat ├── control ├── copyright ├── libgraphite2-3-dbg.lintian-overrides ├── libgraphite2-3.dirs ├── libgraphite2-3.install ├── libgraphite2-3.lintian-overrides ├── libgraphite2-dev.dirs ├── libgraphite2-dev.install ├── libgraphite2-dev.lintian-overrides ├── libgraphite2-doc.docs ├── libgraphite2-doc.lintian-overrides ├── libgraphite2.dirs ├── libgraphite2.install ├── libtext-graphite2-perl.examples ├── rules └── source │ └── format ├── doc ├── CMakeLists.txt ├── GTF-docinfo.xml ├── GTF.adoc ├── OpCodes.adoc ├── Segment JSON Schema.json ├── building.adoc ├── calling.adoc ├── features.adoc ├── font.adoc ├── full.cfg ├── glyph_string.odg ├── glyph_string.png ├── graphite.css ├── guardspace.png ├── guardspace.svg ├── hacking.adoc ├── intro.adoc ├── manual.adoc ├── public.cfg ├── release.adoc └── testing.adoc ├── gr2fonttest ├── CMakeLists.txt ├── UtfCodec.cpp ├── UtfCodec.h └── gr2FontTest.cpp ├── graphite2.pc.in ├── include └── graphite2 │ ├── Font.h │ ├── Log.h │ ├── Segment.h │ └── Types.h ├── python ├── fuzzbidi.py └── graphite2 │ └── __init__.py ├── setup.py ├── site ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _includes │ ├── footer_custom.html │ └── search_placeholder_custom.html ├── _sass │ ├── color_schemes │ │ └── graphite.scss │ └── custom │ │ ├── custom.scss │ │ └── setup.scss ├── assets │ ├── fonts │ │ ├── AwamiNastaliq-Demo.ttf │ │ ├── Padauk-Demo.ttf │ │ ├── Padauk-Demo.woff2 │ │ └── Simple-Graphite-Font.ttf │ ├── images │ │ ├── Gr_home_topic_1.jpg │ │ ├── Gr_home_topic_1.png │ │ ├── Gr_home_topic_2.png │ │ ├── Gr_home_topic_3.png │ │ ├── Gr_home_topic_4.jpg │ │ ├── attachmentPoints.png │ │ ├── favicon.ico │ │ ├── fontdemo_awami.jpeg │ │ ├── fontdemo_padauk.png │ │ ├── graide10_1_shifting.png │ │ ├── graide11_1_nonAsciiText.png │ │ ├── graide12_2_addAP.png │ │ ├── graide12_3_insertCluster.png │ │ ├── graide12_4_dragStationary.png │ │ ├── graide12_5_dragMobile.png │ │ ├── graide13_1_features.png │ │ ├── graide1_1_createProject.png │ │ ├── graide1_2_glyphTab.png │ │ ├── graide1_3_buildSucceed.png │ │ ├── graide1_4_runHelloWorld.png │ │ ├── graide1_5_clickRule.png │ │ ├── graide2_1_newGdlFile.png │ │ ├── graide3_1_passesTestsTabs.png │ │ ├── graide3_2_passesGlyphTabs.png │ │ ├── graide3_3_PassesTestsTab2.png │ │ ├── graide3_4_RulesTab.png │ │ ├── graide3_5_RulesHighlightRule.png │ │ ├── graide4_1_rulesMultiple.png │ │ ├── graide6_1_runSavedTest.png │ │ ├── graide7_1_glyphAttribute.png │ │ ├── graide9_1_userAttr.png │ │ ├── graphite_arch_diagram.png │ │ ├── graphite_tut_ex12c.png │ │ ├── logo_Bloom.png │ │ ├── logo_FieldWorks.jpeg │ │ ├── logo_Firefox.jpeg │ │ ├── logo_LibreOffice.png │ │ ├── logo_OpenOffice.jpeg │ │ ├── logo_PaleMoon.jpeg │ │ ├── logo_Paratext.png │ │ ├── logo_Xetex.jpeg │ │ ├── otcompare_nastaliqComponents.jpeg │ │ └── otcompare_speedtest.jpeg │ └── resources │ │ ├── ConakryFont.zip │ │ ├── CuneiformGraphiteFont.zip │ │ ├── GDL.pdf │ │ ├── GraphiteTutorialPkg_v6.zip │ │ ├── PigLatinGraphiteFont.zip │ │ ├── SilGraphite_AppProgGuide.pdf │ │ └── SimpleGraphiteFont.zip ├── graide.md ├── graide_tutorial.md ├── graphite_about.md ├── graphite_aboutOT.md ├── graphite_aboutWhy.md ├── graphite_apps.md ├── graphite_appsParent.md ├── graphite_codeSnippets.md ├── graphite_contact.md ├── graphite_dev.md ├── graphite_devApp.md ├── graphite_devFont.md ├── graphite_download.md ├── graphite_firefox.md ├── graphite_fontdemo.md ├── graphite_fonts.md ├── graphite_news.md ├── graphite_otcompare.md ├── graphite_support.md ├── graphite_techAbout.md ├── graphite_tutorial_wo_graide.md ├── indep_top_level.md ├── index-test.md ├── index.md ├── parent │ ├── child.md │ └── index.md └── tutorial │ ├── graide_tutorial1.md │ ├── graide_tutorial10.md │ ├── graide_tutorial11.md │ ├── graide_tutorial12.md │ ├── graide_tutorial13.md │ ├── graide_tutorial14.md │ ├── graide_tutorial15.md │ ├── graide_tutorial16.md │ ├── graide_tutorial17.md │ ├── graide_tutorial18.md │ ├── graide_tutorial2.md │ ├── graide_tutorial3.md │ ├── graide_tutorial4.md │ ├── graide_tutorial5.md │ ├── graide_tutorial6.md │ ├── graide_tutorial7.md │ ├── graide_tutorial8.md │ ├── graide_tutorial8a.md │ ├── graide_tutorial9.md │ ├── graide_tutorial_end.md │ ├── graphite_tut_solutions.md │ └── graphite_tutorial1.md ├── src ├── CMakeLists.txt ├── CmapCache.cpp ├── Code.cpp ├── Collider.cpp ├── Decompressor.cpp ├── Face.cpp ├── FeatureMap.cpp ├── FileFace.cpp ├── Font.cpp ├── GlyphCache.cpp ├── GlyphFace.cpp ├── Intervals.cpp ├── Justifier.cpp ├── NameTable.cpp ├── Pass.cpp ├── Position.cpp ├── Segment.cpp ├── Silf.cpp ├── Slot.cpp ├── Sparse.cpp ├── TtfUtil.cpp ├── UtfCodec.cpp ├── call_machine.cpp ├── direct_machine.cpp ├── files.mk ├── gr_char_info.cpp ├── gr_face.cpp ├── gr_features.cpp ├── gr_font.cpp ├── gr_logging.cpp ├── gr_segment.cpp ├── gr_slot.cpp ├── inc │ ├── CharInfo.h │ ├── CmapCache.h │ ├── Code.h │ ├── Collider.h │ ├── Compression.h │ ├── Decompressor.h │ ├── Endian.h │ ├── Error.h │ ├── Face.h │ ├── FeatureMap.h │ ├── FeatureVal.h │ ├── FileFace.h │ ├── Font.h │ ├── GlyphCache.h │ ├── GlyphFace.h │ ├── Intervals.h │ ├── List.h │ ├── Machine.h │ ├── Main.h │ ├── NameTable.h │ ├── Pass.h │ ├── Position.h │ ├── Rule.h │ ├── Segment.h │ ├── Silf.h │ ├── Slot.h │ ├── Sparse.h │ ├── TtfTypes.h │ ├── TtfUtil.h │ ├── UtfCodec.h │ ├── bits.h │ ├── debug.h │ ├── json.h │ ├── locale2lcid.h │ ├── opcode_table.h │ └── opcodes.h └── json.cpp └── tests ├── CMakeLists.txt ├── bittwiddling ├── CMakeLists.txt └── bits.cpp ├── comparerenderer ├── CMakeLists.txt ├── CompareRenderer.cpp ├── FeatureParser.h ├── Gr2Renderer.h ├── RenderedLine.h ├── Renderer.h └── RendererOptions.h ├── corrupt.py ├── defuzz ├── endian ├── CMakeLists.txt └── endiantest.cpp ├── examples ├── CMakeLists.txt ├── cluster.c ├── features.c ├── freetype.c ├── linebreak.c └── simple.c ├── featuremap ├── CMakeLists.txt └── featuremaptest.cpp ├── fnttxtrender ├── fonts ├── Annapurnarc2.ttf ├── AwamiNastaliq-Regular.ttf ├── Awami_compressed_test.ttf ├── Awami_test.ttf ├── Charis5_eursub.ttf ├── MagyarLinLibertineG.ttf ├── Padauk.ttf ├── PigLatinBenchmark_v3.ttf ├── Scheherazadegr.ttf ├── Scheherazadegr_noglyfs.ttf ├── charis_fast.ttf ├── charis_r_gr.ttf ├── general.ttf ├── grtest1gr.ttf ├── small.ttf └── tiny.ttf ├── full-fuzz-test.sh ├── fuzz-tests ├── Annapurnarc2 │ ├── udhr-hin │ │ ├── Bad pass offset.fuzz │ │ ├── Corrupted ATTR_SET justifiaction level.fuzz │ │ ├── Corrupted Gloc-Glat offset array.fuzz │ │ └── Nested CNTXT_ITEM.fuzz │ └── udhr_nep │ │ └── Corrupted slot index.fuzz ├── Awami_compressed_test │ └── awami_tests │ │ └── Compression scheme corruption.fuzz ├── Awami_test │ └── awami_tests │ │ └── fuzzfont-r.fuzz ├── CMakeLists.txt ├── Padauk │ └── my_Headwords │ │ ├── Bad Action.fuzz │ │ ├── Bad Gloc header flags.fuzz │ │ ├── Bad final action code offset.fuzz │ │ ├── Bad hhea_num_long_hor_metrics.fuzz │ │ ├── Bad maxp_numGlyphs.fuzz │ │ ├── Bad pass offset.fuzz │ │ ├── Corrupted ATTR_SET justifiaction level.fuzz │ │ ├── Corrupted Glat offset array.fuzz │ │ ├── Corrupted Gloc-Glat offset array.fuzz │ │ ├── Corrupted constraint code.fuzz │ │ └── Uninitialised vm stack guard area.fuzz ├── Scheherazadegr │ └── udhr_arb │ │ ├── Bad Gloc header flags.fuzz │ │ └── Corrupted Gloc-Glat offset array.fuzz ├── charis_r_gr │ └── udhr_eng │ │ ├── Bad cmap.fuzz │ │ ├── Corrupted Gloc-Glat offset array.fuzz │ │ ├── Nested CNTXT_ITEM.fuzz │ │ └── Zero num settings Feature.fuzz ├── gr-fuzzer-font.cpp ├── gr-fuzzer-segment.cpp ├── graphite-fuzzer.hpp ├── hairball.py └── libfuzz-corpus │ ├── font │ ├── Annapurnarc2_utf32.fuzz │ ├── Awami_test_utf32.fuzz │ ├── Padauk_wtri=1_utf16.fuzz │ ├── Scheherazadegr_utf8.fuzz │ └── charis_r_gr_utf16.fuzz │ └── segment │ ├── Annapurnarc2_utf32_udhr_hin_ltr.fuzz │ ├── Annapurnarc2_utf8_udhr_nep_ltr.fuzz │ ├── Awami_compressed_test_utf16_awami_tests_rtl.fuzz │ ├── Charis5_eursub_utf8_udhr_eng_ltr.fuzz │ ├── Padauk_utf8_my_HeadwordSyllables_ltr.fuzz │ ├── Scheherazadegr_utf32_udhr_arb_rtl.fuzz │ └── charis_r_gr_utf16_udhr_yor_ltr.fuzz ├── fuzzcomparerender ├── fuzztest ├── grlist ├── CMakeLists.txt ├── grlisttest.cpp └── intervalsettest.cpp ├── hbspeeds ├── json ├── CMakeLists.txt └── jsontest.cpp ├── jsoncmp ├── nametabletest ├── CMakeLists.txt └── nametabletest.cpp ├── run-fuzz-tests.sh ├── sparsetest ├── CMakeLists.txt └── sparsetest.cpp ├── standards ├── annacmp1.json ├── annapurna_nep.log ├── awamicmp1.json ├── awamicmp2.json ├── charis.log ├── charis1.json ├── charis1.log ├── charis2.json ├── charis2.log ├── charis3.json ├── charis3.log ├── charis4.json ├── charis4.log ├── charis5.json ├── charis5.log ├── charis6.json ├── charis6.log ├── charis7.json ├── charis7.log ├── charis8.json ├── charis8.log ├── charis_feat.log ├── charis_yor.log ├── chariscmp1.json ├── chariscmp2.json ├── general1.json ├── general1.log ├── grtest1.json ├── grtest1.log ├── jsontest.log ├── magyar1.json ├── magyar1.log ├── magyar2.json ├── magyar2.log ├── magyar3.json ├── magyar3.log ├── padauk.log ├── padauk1.json ├── padauk1.log ├── padauk10.json ├── padauk10.log ├── padauk11.json ├── padauk11.log ├── padauk12.json ├── padauk12.log ├── padauk2.json ├── padauk2.log ├── padauk3.json ├── padauk3.log ├── padauk3Windows.log ├── padauk4.json ├── padauk4.log ├── padauk5.json ├── padauk5.log ├── padauk6.json ├── padauk6.log ├── padauk7.json ├── padauk7.log ├── padauk8.json ├── padauk8.log ├── padauk9.json ├── padauk9.log ├── padauk_feat.log ├── padauk_ulon.log ├── padaukcmp1.json ├── piglatin.log ├── piglatin1.json ├── piglatin1.log ├── scheherazade_arb.log ├── scher1.json ├── scher1.log ├── scher2.json ├── scher2.log ├── scher3.json ├── scher3.log ├── scher4.json ├── scher4.log ├── scher5.json ├── scher5.log ├── scher_feat.log └── schercmp1.json ├── texts ├── awami_tests.txt ├── my_HeadwordSyllables.txt ├── test_small.txt ├── udhr_arb.txt ├── udhr_eng.txt ├── udhr_hin.txt ├── udhr_nep.txt └── udhr_yor.txt ├── trace2svg ├── utftest ├── CMakeLists.txt └── utftest.cpp └── vm ├── CMakeLists.txt └── basic_test.cpp /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/ChangeLog -------------------------------------------------------------------------------- /Graphite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/Graphite.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/README.md -------------------------------------------------------------------------------- /Todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/Todo.txt -------------------------------------------------------------------------------- /contrib/C#/NGraphite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite.sln -------------------------------------------------------------------------------- /contrib/C#/NGraphite/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/AssemblyInfo.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/AttrCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/AttrCode.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/Bidirtl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/Bidirtl.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/BreakWeight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/BreakWeight.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/CharInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/CharInfo.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/Encform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/Encform.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/Face.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/Face.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/FaceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/FaceOptions.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/FeatureRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/FeatureRef.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/Featureval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/Featureval.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/Font.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/Graphite2Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/Graphite2Api.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/JustFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/JustFlags.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/NGraphite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/NGraphite.csproj -------------------------------------------------------------------------------- /contrib/C#/NGraphite/NGraphite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/NGraphite.dll.config -------------------------------------------------------------------------------- /contrib/C#/NGraphite/Segment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/Segment.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphite/Slot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphite/Slot.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/CharInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/CharInfoTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/FaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/FaceTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/FeatureRefTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/FeatureRefTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/FeaturevalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/FeaturevalTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/FontTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/FontTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/GeneralTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/GeneralTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/Graphite2ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/Graphite2ApiTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/NGraphiteTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/NGraphiteTests.csproj -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/SegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/SegmentTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/SlotTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/SlotTests.cs -------------------------------------------------------------------------------- /contrib/C#/NGraphiteTests/TestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/NGraphiteTests/TestConstants.cs -------------------------------------------------------------------------------- /contrib/C#/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/C#/README -------------------------------------------------------------------------------- /contrib/android.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/android.README -------------------------------------------------------------------------------- /contrib/envsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/envsetup.sh -------------------------------------------------------------------------------- /contrib/perl/Build.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/Build.PL -------------------------------------------------------------------------------- /contrib/perl/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/Changes -------------------------------------------------------------------------------- /contrib/perl/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/MANIFEST -------------------------------------------------------------------------------- /contrib/perl/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/META.yml -------------------------------------------------------------------------------- /contrib/perl/examples/gr2fonttest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/examples/gr2fonttest.pl -------------------------------------------------------------------------------- /contrib/perl/examples/typeset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/examples/typeset.pl -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2.pm -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2.xs -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2/CharInfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2/CharInfo.pm -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2/Face.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2/Face.pm -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2/FeatureRef.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2/FeatureRef.pm -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2/FeatureVal.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2/FeatureVal.pm -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2/Font.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2/Font.pm -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2/Segment.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2/Segment.pm -------------------------------------------------------------------------------- /contrib/perl/lib/Text/Gr2/Slot.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/Gr2/Slot.pm -------------------------------------------------------------------------------- /contrib/perl/lib/Text/typemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/lib/Text/typemap -------------------------------------------------------------------------------- /contrib/perl/ppport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/ppport.h -------------------------------------------------------------------------------- /contrib/perl/t/00-load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/t/00-load.t -------------------------------------------------------------------------------- /contrib/perl/t/pod-coverage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/t/pod-coverage.t -------------------------------------------------------------------------------- /contrib/perl/t/pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/contrib/perl/t/pod.t -------------------------------------------------------------------------------- /debian-src/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/build -------------------------------------------------------------------------------- /debian-src/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/changelog -------------------------------------------------------------------------------- /debian-src/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian-src/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/control -------------------------------------------------------------------------------- /debian-src/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/copyright -------------------------------------------------------------------------------- /debian-src/libgraphite2-3-dbg.lintian-overrides: -------------------------------------------------------------------------------- 1 | libgraphite2-3.0.1-dbg: helper-templates-in-copyright 2 | -------------------------------------------------------------------------------- /debian-src/libgraphite2-3.dirs: -------------------------------------------------------------------------------- 1 | /usr/lib 2 | -------------------------------------------------------------------------------- /debian-src/libgraphite2-3.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/libgraphite2-3.install -------------------------------------------------------------------------------- /debian-src/libgraphite2-3.lintian-overrides: -------------------------------------------------------------------------------- 1 | libgraphite2-3.0.1: helper-templates-in-copyright 2 | -------------------------------------------------------------------------------- /debian-src/libgraphite2-dev.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/libgraphite2-dev.dirs -------------------------------------------------------------------------------- /debian-src/libgraphite2-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/libgraphite2-dev.install -------------------------------------------------------------------------------- /debian-src/libgraphite2-dev.lintian-overrides: -------------------------------------------------------------------------------- 1 | libgraphite2-dev: helper-templates-in-copyright 2 | -------------------------------------------------------------------------------- /debian-src/libgraphite2-doc.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/libgraphite2-doc.docs -------------------------------------------------------------------------------- /debian-src/libgraphite2-doc.lintian-overrides: -------------------------------------------------------------------------------- 1 | libgraphite2-doc: helper-templates-in-copyright 2 | -------------------------------------------------------------------------------- /debian-src/libgraphite2.dirs: -------------------------------------------------------------------------------- 1 | /usr/lib 2 | -------------------------------------------------------------------------------- /debian-src/libgraphite2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/libgraphite2.install -------------------------------------------------------------------------------- /debian-src/libtext-graphite2-perl.examples: -------------------------------------------------------------------------------- 1 | perl/examples/* 2 | -------------------------------------------------------------------------------- /debian-src/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/debian-src/rules -------------------------------------------------------------------------------- /debian-src/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/GTF-docinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/GTF-docinfo.xml -------------------------------------------------------------------------------- /doc/GTF.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/GTF.adoc -------------------------------------------------------------------------------- /doc/OpCodes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/OpCodes.adoc -------------------------------------------------------------------------------- /doc/Segment JSON Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/Segment JSON Schema.json -------------------------------------------------------------------------------- /doc/building.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/building.adoc -------------------------------------------------------------------------------- /doc/calling.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/calling.adoc -------------------------------------------------------------------------------- /doc/features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/features.adoc -------------------------------------------------------------------------------- /doc/font.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/font.adoc -------------------------------------------------------------------------------- /doc/full.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/full.cfg -------------------------------------------------------------------------------- /doc/glyph_string.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/glyph_string.odg -------------------------------------------------------------------------------- /doc/glyph_string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/glyph_string.png -------------------------------------------------------------------------------- /doc/graphite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/graphite.css -------------------------------------------------------------------------------- /doc/guardspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/guardspace.png -------------------------------------------------------------------------------- /doc/guardspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/guardspace.svg -------------------------------------------------------------------------------- /doc/hacking.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/hacking.adoc -------------------------------------------------------------------------------- /doc/intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/intro.adoc -------------------------------------------------------------------------------- /doc/manual.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/manual.adoc -------------------------------------------------------------------------------- /doc/public.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/public.cfg -------------------------------------------------------------------------------- /doc/release.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/release.adoc -------------------------------------------------------------------------------- /doc/testing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/doc/testing.adoc -------------------------------------------------------------------------------- /gr2fonttest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/gr2fonttest/CMakeLists.txt -------------------------------------------------------------------------------- /gr2fonttest/UtfCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/gr2fonttest/UtfCodec.cpp -------------------------------------------------------------------------------- /gr2fonttest/UtfCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/gr2fonttest/UtfCodec.h -------------------------------------------------------------------------------- /gr2fonttest/gr2FontTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/gr2fonttest/gr2FontTest.cpp -------------------------------------------------------------------------------- /graphite2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/graphite2.pc.in -------------------------------------------------------------------------------- /include/graphite2/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/include/graphite2/Font.h -------------------------------------------------------------------------------- /include/graphite2/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/include/graphite2/Log.h -------------------------------------------------------------------------------- /include/graphite2/Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/include/graphite2/Segment.h -------------------------------------------------------------------------------- /include/graphite2/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/include/graphite2/Types.h -------------------------------------------------------------------------------- /python/fuzzbidi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/python/fuzzbidi.py -------------------------------------------------------------------------------- /python/graphite2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/python/graphite2/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/setup.py -------------------------------------------------------------------------------- /site/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/Gemfile -------------------------------------------------------------------------------- /site/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/Gemfile.lock -------------------------------------------------------------------------------- /site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/LICENSE -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/README.md -------------------------------------------------------------------------------- /site/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/_config.yml -------------------------------------------------------------------------------- /site/_includes/footer_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/_includes/footer_custom.html -------------------------------------------------------------------------------- /site/_includes/search_placeholder_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/_includes/search_placeholder_custom.html -------------------------------------------------------------------------------- /site/_sass/color_schemes/graphite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/_sass/color_schemes/graphite.scss -------------------------------------------------------------------------------- /site/_sass/custom/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/_sass/custom/custom.scss -------------------------------------------------------------------------------- /site/_sass/custom/setup.scss: -------------------------------------------------------------------------------- 1 | $ltgrayblue: #bdd6fe; -------------------------------------------------------------------------------- /site/assets/fonts/AwamiNastaliq-Demo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/fonts/AwamiNastaliq-Demo.ttf -------------------------------------------------------------------------------- /site/assets/fonts/Padauk-Demo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/fonts/Padauk-Demo.ttf -------------------------------------------------------------------------------- /site/assets/fonts/Padauk-Demo.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/fonts/Padauk-Demo.woff2 -------------------------------------------------------------------------------- /site/assets/fonts/Simple-Graphite-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/fonts/Simple-Graphite-Font.ttf -------------------------------------------------------------------------------- /site/assets/images/Gr_home_topic_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/Gr_home_topic_1.jpg -------------------------------------------------------------------------------- /site/assets/images/Gr_home_topic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/Gr_home_topic_1.png -------------------------------------------------------------------------------- /site/assets/images/Gr_home_topic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/Gr_home_topic_2.png -------------------------------------------------------------------------------- /site/assets/images/Gr_home_topic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/Gr_home_topic_3.png -------------------------------------------------------------------------------- /site/assets/images/Gr_home_topic_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/Gr_home_topic_4.jpg -------------------------------------------------------------------------------- /site/assets/images/attachmentPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/attachmentPoints.png -------------------------------------------------------------------------------- /site/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/favicon.ico -------------------------------------------------------------------------------- /site/assets/images/fontdemo_awami.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/fontdemo_awami.jpeg -------------------------------------------------------------------------------- /site/assets/images/fontdemo_padauk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/fontdemo_padauk.png -------------------------------------------------------------------------------- /site/assets/images/graide10_1_shifting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide10_1_shifting.png -------------------------------------------------------------------------------- /site/assets/images/graide11_1_nonAsciiText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide11_1_nonAsciiText.png -------------------------------------------------------------------------------- /site/assets/images/graide12_2_addAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide12_2_addAP.png -------------------------------------------------------------------------------- /site/assets/images/graide12_3_insertCluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide12_3_insertCluster.png -------------------------------------------------------------------------------- /site/assets/images/graide12_4_dragStationary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide12_4_dragStationary.png -------------------------------------------------------------------------------- /site/assets/images/graide12_5_dragMobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide12_5_dragMobile.png -------------------------------------------------------------------------------- /site/assets/images/graide13_1_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide13_1_features.png -------------------------------------------------------------------------------- /site/assets/images/graide1_1_createProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide1_1_createProject.png -------------------------------------------------------------------------------- /site/assets/images/graide1_2_glyphTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide1_2_glyphTab.png -------------------------------------------------------------------------------- /site/assets/images/graide1_3_buildSucceed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide1_3_buildSucceed.png -------------------------------------------------------------------------------- /site/assets/images/graide1_4_runHelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide1_4_runHelloWorld.png -------------------------------------------------------------------------------- /site/assets/images/graide1_5_clickRule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide1_5_clickRule.png -------------------------------------------------------------------------------- /site/assets/images/graide2_1_newGdlFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide2_1_newGdlFile.png -------------------------------------------------------------------------------- /site/assets/images/graide3_1_passesTestsTabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide3_1_passesTestsTabs.png -------------------------------------------------------------------------------- /site/assets/images/graide3_2_passesGlyphTabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide3_2_passesGlyphTabs.png -------------------------------------------------------------------------------- /site/assets/images/graide3_3_PassesTestsTab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide3_3_PassesTestsTab2.png -------------------------------------------------------------------------------- /site/assets/images/graide3_4_RulesTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide3_4_RulesTab.png -------------------------------------------------------------------------------- /site/assets/images/graide3_5_RulesHighlightRule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide3_5_RulesHighlightRule.png -------------------------------------------------------------------------------- /site/assets/images/graide4_1_rulesMultiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide4_1_rulesMultiple.png -------------------------------------------------------------------------------- /site/assets/images/graide6_1_runSavedTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide6_1_runSavedTest.png -------------------------------------------------------------------------------- /site/assets/images/graide7_1_glyphAttribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide7_1_glyphAttribute.png -------------------------------------------------------------------------------- /site/assets/images/graide9_1_userAttr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graide9_1_userAttr.png -------------------------------------------------------------------------------- /site/assets/images/graphite_arch_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graphite_arch_diagram.png -------------------------------------------------------------------------------- /site/assets/images/graphite_tut_ex12c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/graphite_tut_ex12c.png -------------------------------------------------------------------------------- /site/assets/images/logo_Bloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/logo_Bloom.png -------------------------------------------------------------------------------- /site/assets/images/logo_FieldWorks.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/logo_FieldWorks.jpeg -------------------------------------------------------------------------------- /site/assets/images/logo_Firefox.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/logo_Firefox.jpeg -------------------------------------------------------------------------------- /site/assets/images/logo_LibreOffice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/logo_LibreOffice.png -------------------------------------------------------------------------------- /site/assets/images/logo_OpenOffice.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/logo_OpenOffice.jpeg -------------------------------------------------------------------------------- /site/assets/images/logo_PaleMoon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/logo_PaleMoon.jpeg -------------------------------------------------------------------------------- /site/assets/images/logo_Paratext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/logo_Paratext.png -------------------------------------------------------------------------------- /site/assets/images/logo_Xetex.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/logo_Xetex.jpeg -------------------------------------------------------------------------------- /site/assets/images/otcompare_nastaliqComponents.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/otcompare_nastaliqComponents.jpeg -------------------------------------------------------------------------------- /site/assets/images/otcompare_speedtest.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/images/otcompare_speedtest.jpeg -------------------------------------------------------------------------------- /site/assets/resources/ConakryFont.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/resources/ConakryFont.zip -------------------------------------------------------------------------------- /site/assets/resources/CuneiformGraphiteFont.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/resources/CuneiformGraphiteFont.zip -------------------------------------------------------------------------------- /site/assets/resources/GDL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/resources/GDL.pdf -------------------------------------------------------------------------------- /site/assets/resources/GraphiteTutorialPkg_v6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/resources/GraphiteTutorialPkg_v6.zip -------------------------------------------------------------------------------- /site/assets/resources/PigLatinGraphiteFont.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/resources/PigLatinGraphiteFont.zip -------------------------------------------------------------------------------- /site/assets/resources/SilGraphite_AppProgGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/resources/SilGraphite_AppProgGuide.pdf -------------------------------------------------------------------------------- /site/assets/resources/SimpleGraphiteFont.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/assets/resources/SimpleGraphiteFont.zip -------------------------------------------------------------------------------- /site/graide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graide.md -------------------------------------------------------------------------------- /site/graide_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graide_tutorial.md -------------------------------------------------------------------------------- /site/graphite_about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_about.md -------------------------------------------------------------------------------- /site/graphite_aboutOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_aboutOT.md -------------------------------------------------------------------------------- /site/graphite_aboutWhy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_aboutWhy.md -------------------------------------------------------------------------------- /site/graphite_apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_apps.md -------------------------------------------------------------------------------- /site/graphite_appsParent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_appsParent.md -------------------------------------------------------------------------------- /site/graphite_codeSnippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_codeSnippets.md -------------------------------------------------------------------------------- /site/graphite_contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_contact.md -------------------------------------------------------------------------------- /site/graphite_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_dev.md -------------------------------------------------------------------------------- /site/graphite_devApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_devApp.md -------------------------------------------------------------------------------- /site/graphite_devFont.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_devFont.md -------------------------------------------------------------------------------- /site/graphite_download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_download.md -------------------------------------------------------------------------------- /site/graphite_firefox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_firefox.md -------------------------------------------------------------------------------- /site/graphite_fontdemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_fontdemo.md -------------------------------------------------------------------------------- /site/graphite_fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_fonts.md -------------------------------------------------------------------------------- /site/graphite_news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_news.md -------------------------------------------------------------------------------- /site/graphite_otcompare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_otcompare.md -------------------------------------------------------------------------------- /site/graphite_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_support.md -------------------------------------------------------------------------------- /site/graphite_techAbout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_techAbout.md -------------------------------------------------------------------------------- /site/graphite_tutorial_wo_graide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/graphite_tutorial_wo_graide.md -------------------------------------------------------------------------------- /site/indep_top_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/indep_top_level.md -------------------------------------------------------------------------------- /site/index-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/index-test.md -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/index.md -------------------------------------------------------------------------------- /site/parent/child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/parent/child.md -------------------------------------------------------------------------------- /site/parent/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/parent/index.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial1.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial10.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial11.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial12.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial13.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial14.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial15.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial16.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial17.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial18.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial2.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial3.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial4.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial5.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial6.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial7.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial8.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial8a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial8a.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial9.md -------------------------------------------------------------------------------- /site/tutorial/graide_tutorial_end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graide_tutorial_end.md -------------------------------------------------------------------------------- /site/tutorial/graphite_tut_solutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graphite_tut_solutions.md -------------------------------------------------------------------------------- /site/tutorial/graphite_tutorial1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/site/tutorial/graphite_tutorial1.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CmapCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/CmapCache.cpp -------------------------------------------------------------------------------- /src/Code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Code.cpp -------------------------------------------------------------------------------- /src/Collider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Collider.cpp -------------------------------------------------------------------------------- /src/Decompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Decompressor.cpp -------------------------------------------------------------------------------- /src/Face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Face.cpp -------------------------------------------------------------------------------- /src/FeatureMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/FeatureMap.cpp -------------------------------------------------------------------------------- /src/FileFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/FileFace.cpp -------------------------------------------------------------------------------- /src/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Font.cpp -------------------------------------------------------------------------------- /src/GlyphCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/GlyphCache.cpp -------------------------------------------------------------------------------- /src/GlyphFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/GlyphFace.cpp -------------------------------------------------------------------------------- /src/Intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Intervals.cpp -------------------------------------------------------------------------------- /src/Justifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Justifier.cpp -------------------------------------------------------------------------------- /src/NameTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/NameTable.cpp -------------------------------------------------------------------------------- /src/Pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Pass.cpp -------------------------------------------------------------------------------- /src/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Position.cpp -------------------------------------------------------------------------------- /src/Segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Segment.cpp -------------------------------------------------------------------------------- /src/Silf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Silf.cpp -------------------------------------------------------------------------------- /src/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Slot.cpp -------------------------------------------------------------------------------- /src/Sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/Sparse.cpp -------------------------------------------------------------------------------- /src/TtfUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/TtfUtil.cpp -------------------------------------------------------------------------------- /src/UtfCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/UtfCodec.cpp -------------------------------------------------------------------------------- /src/call_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/call_machine.cpp -------------------------------------------------------------------------------- /src/direct_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/direct_machine.cpp -------------------------------------------------------------------------------- /src/files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/files.mk -------------------------------------------------------------------------------- /src/gr_char_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/gr_char_info.cpp -------------------------------------------------------------------------------- /src/gr_face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/gr_face.cpp -------------------------------------------------------------------------------- /src/gr_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/gr_features.cpp -------------------------------------------------------------------------------- /src/gr_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/gr_font.cpp -------------------------------------------------------------------------------- /src/gr_logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/gr_logging.cpp -------------------------------------------------------------------------------- /src/gr_segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/gr_segment.cpp -------------------------------------------------------------------------------- /src/gr_slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/gr_slot.cpp -------------------------------------------------------------------------------- /src/inc/CharInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/CharInfo.h -------------------------------------------------------------------------------- /src/inc/CmapCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/CmapCache.h -------------------------------------------------------------------------------- /src/inc/Code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Code.h -------------------------------------------------------------------------------- /src/inc/Collider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Collider.h -------------------------------------------------------------------------------- /src/inc/Compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Compression.h -------------------------------------------------------------------------------- /src/inc/Decompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Decompressor.h -------------------------------------------------------------------------------- /src/inc/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Endian.h -------------------------------------------------------------------------------- /src/inc/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Error.h -------------------------------------------------------------------------------- /src/inc/Face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Face.h -------------------------------------------------------------------------------- /src/inc/FeatureMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/FeatureMap.h -------------------------------------------------------------------------------- /src/inc/FeatureVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/FeatureVal.h -------------------------------------------------------------------------------- /src/inc/FileFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/FileFace.h -------------------------------------------------------------------------------- /src/inc/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Font.h -------------------------------------------------------------------------------- /src/inc/GlyphCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/GlyphCache.h -------------------------------------------------------------------------------- /src/inc/GlyphFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/GlyphFace.h -------------------------------------------------------------------------------- /src/inc/Intervals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Intervals.h -------------------------------------------------------------------------------- /src/inc/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/List.h -------------------------------------------------------------------------------- /src/inc/Machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Machine.h -------------------------------------------------------------------------------- /src/inc/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Main.h -------------------------------------------------------------------------------- /src/inc/NameTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/NameTable.h -------------------------------------------------------------------------------- /src/inc/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Pass.h -------------------------------------------------------------------------------- /src/inc/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Position.h -------------------------------------------------------------------------------- /src/inc/Rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Rule.h -------------------------------------------------------------------------------- /src/inc/Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Segment.h -------------------------------------------------------------------------------- /src/inc/Silf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Silf.h -------------------------------------------------------------------------------- /src/inc/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Slot.h -------------------------------------------------------------------------------- /src/inc/Sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/Sparse.h -------------------------------------------------------------------------------- /src/inc/TtfTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/TtfTypes.h -------------------------------------------------------------------------------- /src/inc/TtfUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/TtfUtil.h -------------------------------------------------------------------------------- /src/inc/UtfCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/UtfCodec.h -------------------------------------------------------------------------------- /src/inc/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/bits.h -------------------------------------------------------------------------------- /src/inc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/debug.h -------------------------------------------------------------------------------- /src/inc/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/json.h -------------------------------------------------------------------------------- /src/inc/locale2lcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/locale2lcid.h -------------------------------------------------------------------------------- /src/inc/opcode_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/opcode_table.h -------------------------------------------------------------------------------- /src/inc/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/inc/opcodes.h -------------------------------------------------------------------------------- /src/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/src/json.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/bittwiddling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/bittwiddling/CMakeLists.txt -------------------------------------------------------------------------------- /tests/bittwiddling/bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/bittwiddling/bits.cpp -------------------------------------------------------------------------------- /tests/comparerenderer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/comparerenderer/CMakeLists.txt -------------------------------------------------------------------------------- /tests/comparerenderer/CompareRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/comparerenderer/CompareRenderer.cpp -------------------------------------------------------------------------------- /tests/comparerenderer/FeatureParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/comparerenderer/FeatureParser.h -------------------------------------------------------------------------------- /tests/comparerenderer/Gr2Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/comparerenderer/Gr2Renderer.h -------------------------------------------------------------------------------- /tests/comparerenderer/RenderedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/comparerenderer/RenderedLine.h -------------------------------------------------------------------------------- /tests/comparerenderer/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/comparerenderer/Renderer.h -------------------------------------------------------------------------------- /tests/comparerenderer/RendererOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/comparerenderer/RendererOptions.h -------------------------------------------------------------------------------- /tests/corrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/corrupt.py -------------------------------------------------------------------------------- /tests/defuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/defuzz -------------------------------------------------------------------------------- /tests/endian/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/endian/CMakeLists.txt -------------------------------------------------------------------------------- /tests/endian/endiantest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/endian/endiantest.cpp -------------------------------------------------------------------------------- /tests/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/examples/CMakeLists.txt -------------------------------------------------------------------------------- /tests/examples/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/examples/cluster.c -------------------------------------------------------------------------------- /tests/examples/features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/examples/features.c -------------------------------------------------------------------------------- /tests/examples/freetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/examples/freetype.c -------------------------------------------------------------------------------- /tests/examples/linebreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/examples/linebreak.c -------------------------------------------------------------------------------- /tests/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/examples/simple.c -------------------------------------------------------------------------------- /tests/featuremap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/featuremap/CMakeLists.txt -------------------------------------------------------------------------------- /tests/featuremap/featuremaptest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/featuremap/featuremaptest.cpp -------------------------------------------------------------------------------- /tests/fnttxtrender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fnttxtrender -------------------------------------------------------------------------------- /tests/fonts/Annapurnarc2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/Annapurnarc2.ttf -------------------------------------------------------------------------------- /tests/fonts/AwamiNastaliq-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/AwamiNastaliq-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/Awami_compressed_test.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/Awami_compressed_test.ttf -------------------------------------------------------------------------------- /tests/fonts/Awami_test.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/Awami_test.ttf -------------------------------------------------------------------------------- /tests/fonts/Charis5_eursub.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/Charis5_eursub.ttf -------------------------------------------------------------------------------- /tests/fonts/MagyarLinLibertineG.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/MagyarLinLibertineG.ttf -------------------------------------------------------------------------------- /tests/fonts/Padauk.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/Padauk.ttf -------------------------------------------------------------------------------- /tests/fonts/PigLatinBenchmark_v3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/PigLatinBenchmark_v3.ttf -------------------------------------------------------------------------------- /tests/fonts/Scheherazadegr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/Scheherazadegr.ttf -------------------------------------------------------------------------------- /tests/fonts/Scheherazadegr_noglyfs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/Scheherazadegr_noglyfs.ttf -------------------------------------------------------------------------------- /tests/fonts/charis_fast.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/charis_fast.ttf -------------------------------------------------------------------------------- /tests/fonts/charis_r_gr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/charis_r_gr.ttf -------------------------------------------------------------------------------- /tests/fonts/general.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/general.ttf -------------------------------------------------------------------------------- /tests/fonts/grtest1gr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/grtest1gr.ttf -------------------------------------------------------------------------------- /tests/fonts/small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/small.ttf -------------------------------------------------------------------------------- /tests/fonts/tiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fonts/tiny.ttf -------------------------------------------------------------------------------- /tests/full-fuzz-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/full-fuzz-test.sh -------------------------------------------------------------------------------- /tests/fuzz-tests/Annapurnarc2/udhr-hin/Bad pass offset.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Annapurnarc2/udhr-hin/Bad pass offset.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Annapurnarc2/udhr-hin/Corrupted ATTR_SET justifiaction level.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Annapurnarc2/udhr-hin/Corrupted ATTR_SET justifiaction level.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Annapurnarc2/udhr-hin/Corrupted Gloc-Glat offset array.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Annapurnarc2/udhr-hin/Corrupted Gloc-Glat offset array.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Annapurnarc2/udhr-hin/Nested CNTXT_ITEM.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Annapurnarc2/udhr-hin/Nested CNTXT_ITEM.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Annapurnarc2/udhr_nep/Corrupted slot index.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Annapurnarc2/udhr_nep/Corrupted slot index.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Awami_compressed_test/awami_tests/Compression scheme corruption.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Awami_compressed_test/awami_tests/Compression scheme corruption.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Awami_test/awami_tests/fuzzfont-r.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Awami_test/awami_tests/fuzzfont-r.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Bad Action.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Bad Action.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Bad Gloc header flags.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Bad Gloc header flags.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Bad final action code offset.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Bad final action code offset.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Bad hhea_num_long_hor_metrics.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Bad hhea_num_long_hor_metrics.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Bad maxp_numGlyphs.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Bad maxp_numGlyphs.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Bad pass offset.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Bad pass offset.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Corrupted ATTR_SET justifiaction level.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Corrupted ATTR_SET justifiaction level.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Corrupted Glat offset array.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Corrupted Glat offset array.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Corrupted Gloc-Glat offset array.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Corrupted Gloc-Glat offset array.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Corrupted constraint code.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Corrupted constraint code.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Padauk/my_Headwords/Uninitialised vm stack guard area.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Padauk/my_Headwords/Uninitialised vm stack guard area.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Scheherazadegr/udhr_arb/Bad Gloc header flags.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Scheherazadegr/udhr_arb/Bad Gloc header flags.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/Scheherazadegr/udhr_arb/Corrupted Gloc-Glat offset array.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/Scheherazadegr/udhr_arb/Corrupted Gloc-Glat offset array.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/charis_r_gr/udhr_eng/Bad cmap.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/charis_r_gr/udhr_eng/Bad cmap.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/charis_r_gr/udhr_eng/Corrupted Gloc-Glat offset array.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/charis_r_gr/udhr_eng/Corrupted Gloc-Glat offset array.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/charis_r_gr/udhr_eng/Nested CNTXT_ITEM.fuzz: -------------------------------------------------------------------------------- 1 | -6,0X001333A6, 34,Silf+0X000126B2 2 | -------------------------------------------------------------------------------- /tests/fuzz-tests/charis_r_gr/udhr_eng/Zero num settings Feature.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/charis_r_gr/udhr_eng/Zero num settings Feature.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/gr-fuzzer-font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/gr-fuzzer-font.cpp -------------------------------------------------------------------------------- /tests/fuzz-tests/gr-fuzzer-segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/gr-fuzzer-segment.cpp -------------------------------------------------------------------------------- /tests/fuzz-tests/graphite-fuzzer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/graphite-fuzzer.hpp -------------------------------------------------------------------------------- /tests/fuzz-tests/hairball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/hairball.py -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/font/Annapurnarc2_utf32.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/font/Annapurnarc2_utf32.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/font/Awami_test_utf32.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/font/Awami_test_utf32.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/font/Padauk_wtri=1_utf16.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/font/Padauk_wtri=1_utf16.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/font/Scheherazadegr_utf8.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/font/Scheherazadegr_utf8.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/font/charis_r_gr_utf16.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/font/charis_r_gr_utf16.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/segment/Annapurnarc2_utf32_udhr_hin_ltr.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/segment/Annapurnarc2_utf32_udhr_hin_ltr.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/segment/Annapurnarc2_utf8_udhr_nep_ltr.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/segment/Annapurnarc2_utf8_udhr_nep_ltr.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/segment/Awami_compressed_test_utf16_awami_tests_rtl.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/segment/Awami_compressed_test_utf16_awami_tests_rtl.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/segment/Charis5_eursub_utf8_udhr_eng_ltr.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/segment/Charis5_eursub_utf8_udhr_eng_ltr.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/segment/Padauk_utf8_my_HeadwordSyllables_ltr.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/segment/Padauk_utf8_my_HeadwordSyllables_ltr.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/segment/Scheherazadegr_utf32_udhr_arb_rtl.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/segment/Scheherazadegr_utf32_udhr_arb_rtl.fuzz -------------------------------------------------------------------------------- /tests/fuzz-tests/libfuzz-corpus/segment/charis_r_gr_utf16_udhr_yor_ltr.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzz-tests/libfuzz-corpus/segment/charis_r_gr_utf16_udhr_yor_ltr.fuzz -------------------------------------------------------------------------------- /tests/fuzzcomparerender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzzcomparerender -------------------------------------------------------------------------------- /tests/fuzztest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/fuzztest -------------------------------------------------------------------------------- /tests/grlist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/grlist/CMakeLists.txt -------------------------------------------------------------------------------- /tests/grlist/grlisttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/grlist/grlisttest.cpp -------------------------------------------------------------------------------- /tests/grlist/intervalsettest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/grlist/intervalsettest.cpp -------------------------------------------------------------------------------- /tests/hbspeeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/hbspeeds -------------------------------------------------------------------------------- /tests/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/json/CMakeLists.txt -------------------------------------------------------------------------------- /tests/json/jsontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/json/jsontest.cpp -------------------------------------------------------------------------------- /tests/jsoncmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/jsoncmp -------------------------------------------------------------------------------- /tests/nametabletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/nametabletest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/nametabletest/nametabletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/nametabletest/nametabletest.cpp -------------------------------------------------------------------------------- /tests/run-fuzz-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/run-fuzz-tests.sh -------------------------------------------------------------------------------- /tests/sparsetest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/sparsetest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/sparsetest/sparsetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/sparsetest/sparsetest.cpp -------------------------------------------------------------------------------- /tests/standards/annacmp1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/annacmp1.json -------------------------------------------------------------------------------- /tests/standards/annapurna_nep.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/annapurna_nep.log -------------------------------------------------------------------------------- /tests/standards/awamicmp1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/awamicmp1.json -------------------------------------------------------------------------------- /tests/standards/awamicmp2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/awamicmp2.json -------------------------------------------------------------------------------- /tests/standards/charis.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis.log -------------------------------------------------------------------------------- /tests/standards/charis1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis1.json -------------------------------------------------------------------------------- /tests/standards/charis1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis1.log -------------------------------------------------------------------------------- /tests/standards/charis2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis2.json -------------------------------------------------------------------------------- /tests/standards/charis2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis2.log -------------------------------------------------------------------------------- /tests/standards/charis3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis3.json -------------------------------------------------------------------------------- /tests/standards/charis3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis3.log -------------------------------------------------------------------------------- /tests/standards/charis4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis4.json -------------------------------------------------------------------------------- /tests/standards/charis4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis4.log -------------------------------------------------------------------------------- /tests/standards/charis5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis5.json -------------------------------------------------------------------------------- /tests/standards/charis5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis5.log -------------------------------------------------------------------------------- /tests/standards/charis6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis6.json -------------------------------------------------------------------------------- /tests/standards/charis6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis6.log -------------------------------------------------------------------------------- /tests/standards/charis7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis7.json -------------------------------------------------------------------------------- /tests/standards/charis7.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis7.log -------------------------------------------------------------------------------- /tests/standards/charis8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis8.json -------------------------------------------------------------------------------- /tests/standards/charis8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis8.log -------------------------------------------------------------------------------- /tests/standards/charis_feat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis_feat.log -------------------------------------------------------------------------------- /tests/standards/charis_yor.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/charis_yor.log -------------------------------------------------------------------------------- /tests/standards/chariscmp1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/chariscmp1.json -------------------------------------------------------------------------------- /tests/standards/chariscmp2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/chariscmp2.json -------------------------------------------------------------------------------- /tests/standards/general1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/general1.json -------------------------------------------------------------------------------- /tests/standards/general1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/general1.log -------------------------------------------------------------------------------- /tests/standards/grtest1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/grtest1.json -------------------------------------------------------------------------------- /tests/standards/grtest1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/grtest1.log -------------------------------------------------------------------------------- /tests/standards/jsontest.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/jsontest.log -------------------------------------------------------------------------------- /tests/standards/magyar1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/magyar1.json -------------------------------------------------------------------------------- /tests/standards/magyar1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/magyar1.log -------------------------------------------------------------------------------- /tests/standards/magyar2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/magyar2.json -------------------------------------------------------------------------------- /tests/standards/magyar2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/magyar2.log -------------------------------------------------------------------------------- /tests/standards/magyar3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/magyar3.json -------------------------------------------------------------------------------- /tests/standards/magyar3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/magyar3.log -------------------------------------------------------------------------------- /tests/standards/padauk.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk.log -------------------------------------------------------------------------------- /tests/standards/padauk1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk1.json -------------------------------------------------------------------------------- /tests/standards/padauk1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk1.log -------------------------------------------------------------------------------- /tests/standards/padauk10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk10.json -------------------------------------------------------------------------------- /tests/standards/padauk10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk10.log -------------------------------------------------------------------------------- /tests/standards/padauk11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk11.json -------------------------------------------------------------------------------- /tests/standards/padauk11.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk11.log -------------------------------------------------------------------------------- /tests/standards/padauk12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk12.json -------------------------------------------------------------------------------- /tests/standards/padauk12.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk12.log -------------------------------------------------------------------------------- /tests/standards/padauk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk2.json -------------------------------------------------------------------------------- /tests/standards/padauk2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk2.log -------------------------------------------------------------------------------- /tests/standards/padauk3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk3.json -------------------------------------------------------------------------------- /tests/standards/padauk3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk3.log -------------------------------------------------------------------------------- /tests/standards/padauk3Windows.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk3Windows.log -------------------------------------------------------------------------------- /tests/standards/padauk4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk4.json -------------------------------------------------------------------------------- /tests/standards/padauk4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk4.log -------------------------------------------------------------------------------- /tests/standards/padauk5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk5.json -------------------------------------------------------------------------------- /tests/standards/padauk5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk5.log -------------------------------------------------------------------------------- /tests/standards/padauk6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk6.json -------------------------------------------------------------------------------- /tests/standards/padauk6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk6.log -------------------------------------------------------------------------------- /tests/standards/padauk7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk7.json -------------------------------------------------------------------------------- /tests/standards/padauk7.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk7.log -------------------------------------------------------------------------------- /tests/standards/padauk8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk8.json -------------------------------------------------------------------------------- /tests/standards/padauk8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk8.log -------------------------------------------------------------------------------- /tests/standards/padauk9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk9.json -------------------------------------------------------------------------------- /tests/standards/padauk9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk9.log -------------------------------------------------------------------------------- /tests/standards/padauk_feat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk_feat.log -------------------------------------------------------------------------------- /tests/standards/padauk_ulon.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padauk_ulon.log -------------------------------------------------------------------------------- /tests/standards/padaukcmp1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/padaukcmp1.json -------------------------------------------------------------------------------- /tests/standards/piglatin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/piglatin.log -------------------------------------------------------------------------------- /tests/standards/piglatin1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/piglatin1.json -------------------------------------------------------------------------------- /tests/standards/piglatin1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/piglatin1.log -------------------------------------------------------------------------------- /tests/standards/scheherazade_arb.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scheherazade_arb.log -------------------------------------------------------------------------------- /tests/standards/scher1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher1.json -------------------------------------------------------------------------------- /tests/standards/scher1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher1.log -------------------------------------------------------------------------------- /tests/standards/scher2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher2.json -------------------------------------------------------------------------------- /tests/standards/scher2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher2.log -------------------------------------------------------------------------------- /tests/standards/scher3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher3.json -------------------------------------------------------------------------------- /tests/standards/scher3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher3.log -------------------------------------------------------------------------------- /tests/standards/scher4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher4.json -------------------------------------------------------------------------------- /tests/standards/scher4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher4.log -------------------------------------------------------------------------------- /tests/standards/scher5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher5.json -------------------------------------------------------------------------------- /tests/standards/scher5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher5.log -------------------------------------------------------------------------------- /tests/standards/scher_feat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/scher_feat.log -------------------------------------------------------------------------------- /tests/standards/schercmp1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/standards/schercmp1.json -------------------------------------------------------------------------------- /tests/texts/awami_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/texts/awami_tests.txt -------------------------------------------------------------------------------- /tests/texts/my_HeadwordSyllables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/texts/my_HeadwordSyllables.txt -------------------------------------------------------------------------------- /tests/texts/test_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/texts/test_small.txt -------------------------------------------------------------------------------- /tests/texts/udhr_arb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/texts/udhr_arb.txt -------------------------------------------------------------------------------- /tests/texts/udhr_eng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/texts/udhr_eng.txt -------------------------------------------------------------------------------- /tests/texts/udhr_hin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/texts/udhr_hin.txt -------------------------------------------------------------------------------- /tests/texts/udhr_nep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/texts/udhr_nep.txt -------------------------------------------------------------------------------- /tests/texts/udhr_yor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/texts/udhr_yor.txt -------------------------------------------------------------------------------- /tests/trace2svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/trace2svg -------------------------------------------------------------------------------- /tests/utftest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/utftest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/utftest/utftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/utftest/utftest.cpp -------------------------------------------------------------------------------- /tests/vm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/vm/CMakeLists.txt -------------------------------------------------------------------------------- /tests/vm/basic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/graphite/HEAD/tests/vm/basic_test.cpp --------------------------------------------------------------------------------