pango 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (208) hide show
  1. checksums.yaml +7 -0
  2. data/README +2 -2
  3. data/Rakefile +7 -5
  4. data/ext/pango/extconf.rb +4 -4
  5. data/ext/pango/rbpango.c +0 -9
  6. data/ext/pango/rbpango.h +2 -10
  7. data/ext/pango/rbpangoanalysis.c +0 -4
  8. data/ext/pango/rbpangoattribute.c +1 -26
  9. data/ext/pango/rbpangoattrlist.c +0 -4
  10. data/ext/pango/rbpangocairo.c +13 -12
  11. data/ext/pango/rbpangocairocontext.c +6 -26
  12. data/ext/pango/rbpangocontext.c +2 -14
  13. data/ext/pango/rbpangofont.c +0 -12
  14. data/ext/pango/rbpangofontdescription.c +0 -5
  15. data/ext/pango/rbpangofontface.c +0 -6
  16. data/ext/pango/rbpangofontfamily.c +0 -3
  17. data/ext/pango/rbpangofontmap.c +0 -4
  18. data/ext/pango/rbpangofontmetrics.c +1 -4
  19. data/ext/pango/rbpangofontset.c +0 -4
  20. data/ext/pango/rbpangoglyphitem.c +0 -8
  21. data/ext/pango/rbpangoglyphstring.c +0 -4
  22. data/ext/pango/rbpangoitem.c +0 -16
  23. data/ext/pango/rbpangolanguage.c +0 -5
  24. data/ext/pango/rbpangolayout.c +36 -19
  25. data/ext/pango/rbpangolayoutline.c +0 -33
  26. data/ext/pango/rbpangologattr.c +0 -5
  27. data/ext/pango/rbpangomatrix.c +0 -10
  28. data/ext/pango/rbpangoprivate.h +0 -4
  29. data/ext/pango/rbpangorenderer.c +0 -6
  30. data/ext/pango/rbpangoscript.c +0 -4
  31. data/ext/pango/rbpangoscriptiter.c +0 -5
  32. data/lib/1.9/pango.so +0 -0
  33. data/lib/2.0/pango.so +0 -0
  34. data/test/{test_layout.rb → test-layout.rb} +14 -0
  35. data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
  36. data/vendor/local/bin/hb-shape.exe +0 -0
  37. data/vendor/local/bin/hb-view.exe +0 -0
  38. data/vendor/local/bin/libharfbuzz-0.dll +0 -0
  39. data/vendor/local/bin/libpango-1.0-0.dll +0 -0
  40. data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
  41. data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
  42. data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
  43. data/vendor/local/bin/libstdc++-6.dll +0 -0
  44. data/vendor/local/bin/pango-querymodules.exe +0 -0
  45. data/vendor/local/bin/pango-view.exe +0 -0
  46. data/vendor/local/include/harfbuzz/hb-buffer.h +10 -10
  47. data/vendor/local/include/harfbuzz/hb-common.h +147 -131
  48. data/vendor/local/include/harfbuzz/{hb-uniscribe.h → hb-deprecated.h} +15 -13
  49. data/vendor/local/include/harfbuzz/hb-face.h +117 -0
  50. data/vendor/local/include/harfbuzz/hb-font.h +130 -77
  51. data/vendor/local/include/harfbuzz/hb-ot-layout.h +6 -0
  52. data/vendor/local/include/harfbuzz/hb-set.h +2 -0
  53. data/vendor/local/include/harfbuzz/hb-unicode.h +97 -9
  54. data/vendor/local/include/harfbuzz/hb-version.h +2 -2
  55. data/vendor/local/include/harfbuzz/hb.h +2 -0
  56. data/vendor/local/include/pango-1.0/pango/pango-attributes.h +213 -4
  57. data/vendor/local/include/pango-1.0/pango/pango-break.h +53 -0
  58. data/vendor/local/include/pango-1.0/pango/pango-coverage.h +21 -0
  59. data/vendor/local/include/pango-1.0/pango/pango-engine.h +46 -0
  60. data/vendor/local/include/pango-1.0/pango/pango-features.h +2 -2
  61. data/vendor/local/include/pango-1.0/pango/pango-font.h +234 -0
  62. data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +68 -0
  63. data/vendor/local/include/pango-1.0/pango/pango-fontset.h +42 -0
  64. data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +64 -0
  65. data/vendor/local/include/pango-1.0/pango/pango-glyph.h +55 -0
  66. data/vendor/local/include/pango-1.0/pango/pango-item.h +28 -0
  67. data/vendor/local/include/pango-1.0/pango/pango-language.h +5 -0
  68. data/vendor/local/include/pango-1.0/pango/pango-layout.h +43 -0
  69. data/vendor/local/include/pango-1.0/pango/pango-modules.h +11 -0
  70. data/vendor/local/include/pango-1.0/pango/pango-ot.h +149 -0
  71. data/vendor/local/include/pango-1.0/pango/pango-script.h +102 -0
  72. data/vendor/local/include/pango-1.0/pango/pango-tabs.h +11 -0
  73. data/vendor/local/include/pango-1.0/pango/pango-types.h +102 -2
  74. data/vendor/local/include/pango-1.0/pango/pango-utils.h +44 -0
  75. data/vendor/local/include/pango-1.0/pango/pangocairo.h +14 -0
  76. data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +2 -2
  77. data/vendor/local/include/pango-1.0/pango/pangoft2.h +13 -0
  78. data/vendor/local/include/pango-1.0/pango/pangowin32.h +6 -0
  79. data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
  80. data/vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib +0 -0
  81. data/vendor/local/lib/libharfbuzz.dll.a +0 -0
  82. data/vendor/local/lib/libharfbuzz.la +5 -5
  83. data/vendor/local/lib/libpango-1.0.dll.a +0 -0
  84. data/vendor/local/lib/libpango-1.0.la +2 -2
  85. data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
  86. data/vendor/local/lib/libpangocairo-1.0.la +4 -4
  87. data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
  88. data/vendor/local/lib/libpangoft2-1.0.la +3 -3
  89. data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
  90. data/vendor/local/lib/libpangowin32-1.0.la +2 -2
  91. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll +0 -0
  92. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll.a +0 -0
  93. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll +0 -0
  94. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll.a +0 -0
  95. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.la +1 -1
  96. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll +0 -0
  97. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll.a +0 -0
  98. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll +0 -0
  99. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll.a +0 -0
  100. data/vendor/local/lib/pkgconfig/harfbuzz.pc +5 -5
  101. data/vendor/local/lib/pkgconfig/pango.pc +1 -1
  102. data/vendor/local/lib/pkgconfig/pangocairo.pc +1 -1
  103. data/vendor/local/lib/pkgconfig/pangoft2.pc +1 -1
  104. data/vendor/local/lib/pkgconfig/pangowin32.pc +1 -1
  105. data/vendor/local/share/gir-1.0/Pango-1.0.gir +1824 -1434
  106. data/vendor/local/share/gir-1.0/PangoCairo-1.0.gir +109 -103
  107. data/vendor/local/share/gir-1.0/PangoFT2-1.0.gir +18 -15
  108. data/vendor/local/share/gtk-doc/html/harfbuzz/annotation-glossary.html +71 -0
  109. data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +1419 -0
  110. data/vendor/local/share/gtk-doc/html/harfbuzz/ch01.html +98 -0
  111. data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +48 -0
  112. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-blob.html +415 -0
  113. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-buffer.html +1045 -0
  114. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-common.html +1073 -0
  115. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-coretext.html +67 -0
  116. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-deprecated.html +90 -0
  117. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-face.html +344 -0
  118. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +1617 -0
  119. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ft.html +130 -0
  120. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-glib.html +75 -0
  121. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +52 -0
  122. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +76 -0
  123. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html +75 -0
  124. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +544 -0
  125. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html +105 -0
  126. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html +67 -0
  127. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-set.html +540 -0
  128. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +264 -0
  129. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape.html +194 -0
  130. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-unicode.html +1180 -0
  131. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-uniscribe.html +67 -0
  132. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +156 -0
  133. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb.html +52 -0
  134. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +591 -0
  135. data/vendor/local/share/gtk-doc/html/harfbuzz/home.png +0 -0
  136. data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +105 -0
  137. data/vendor/local/share/gtk-doc/html/harfbuzz/index.sgml +650 -0
  138. data/vendor/local/share/gtk-doc/html/harfbuzz/left-insensitive.png +0 -0
  139. data/vendor/local/share/gtk-doc/html/harfbuzz/left.png +0 -0
  140. data/vendor/local/share/gtk-doc/html/harfbuzz/object-tree.html +32 -0
  141. data/vendor/local/share/gtk-doc/html/harfbuzz/right-insensitive.png +0 -0
  142. data/vendor/local/share/gtk-doc/html/harfbuzz/right.png +0 -0
  143. data/vendor/local/share/gtk-doc/html/harfbuzz/style.css +321 -0
  144. data/vendor/local/share/gtk-doc/html/harfbuzz/up-insensitive.png +0 -0
  145. data/vendor/local/share/gtk-doc/html/harfbuzz/up.png +0 -0
  146. data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +3 -4
  147. data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +3 -4
  148. data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +2 -2
  149. data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +4 -9
  150. data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +8 -13
  151. data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +2 -2
  152. data/vendor/local/share/gtk-doc/html/pango/{pango-pango-renderer.html → PangoRenderer.html} +99 -102
  153. data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +20 -29
  154. data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +2 -2
  155. data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +2 -2
  156. data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +2 -2
  157. data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +6 -2
  158. data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +2 -2
  159. data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +2 -2
  160. data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +4 -11
  161. data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +15 -4
  163. data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +4 -4
  164. data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +6 -6
  165. data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +42 -0
  166. data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +58 -0
  167. data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +6 -5
  168. data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +41 -0
  169. data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +2 -2
  170. data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +2 -2
  171. data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +19 -19
  172. data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +2 -2
  173. data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +31 -27
  174. data/vendor/local/share/gtk-doc/html/pango/index.html +7 -5
  175. data/vendor/local/share/gtk-doc/html/pango/index.sgml +38 -38
  176. data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +5 -5
  177. data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +6 -9
  178. data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +113 -66
  179. data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +2 -2
  180. data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +8 -12
  181. data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +5 -8
  182. data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +90 -53
  183. data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +10 -10
  184. data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +21 -8
  185. data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +44 -15
  186. data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +2 -2
  187. data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +2 -2
  188. data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +12 -12
  189. data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +87 -90
  190. data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +2 -5
  191. data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +38 -31
  192. data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +10 -18
  193. data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +10 -11
  194. data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +4 -6
  195. data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +3 -4
  196. data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +12 -12
  197. data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +4 -4
  198. data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +2 -2
  199. data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +34 -31
  200. data/vendor/local/share/gtk-doc/html/pango/pango.html +2 -2
  201. data/vendor/local/share/gtk-doc/html/pango/rendering.html +2 -2
  202. data/vendor/local/share/gtk-doc/html/pango/tools.html +2 -2
  203. data/vendor/local/share/man/man1/pango-querymodules.1 +2 -2
  204. data/vendor/local/share/man/man1/pango-view.1 +2 -2
  205. metadata +57 -24
  206. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  207. data/vendor/local/include/harfbuzz/hb-gobject.h +0 -69
  208. data/vendor/local/share/gtk-doc/html/pango/api-index-1-28.html +0 -31
@@ -0,0 +1,105 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>HarfBuzz Reference Manual</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
+ <link rel="home" href="index.html" title="HarfBuzz Reference Manual">
8
+ <link rel="next" href="ch01.html" title="[Insert title here]">
9
+ <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
10
+ <link rel="stylesheet" href="style.css" type="text/css">
11
+ </head>
12
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13
+ <div class="book">
14
+ <div class="titlepage">
15
+ <div>
16
+ <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">HarfBuzz Reference Manual</p></th></tr></table></div>
17
+ <div><p class="releaseinfo">
18
+ for HarfBuzz 0.9.25
19
+ .
20
+
21
+ </p></div>
22
+ </div>
23
+ <hr>
24
+ </div>
25
+ <div class="toc"><dl>
26
+ <dt><span class="chapter"><a href="ch01.html">[Insert title here]</a></span></dt>
27
+ <dd><dl>
28
+ <dt>
29
+ <span class="refentrytitle"><a href="harfbuzz-hb.html">hb</a></span><span class="refpurpose"></span>
30
+ </dt>
31
+ <dt>
32
+ <span class="refentrytitle"><a href="harfbuzz-hb-common.html">hb-common</a></span><span class="refpurpose"></span>
33
+ </dt>
34
+ <dt>
35
+ <span class="refentrytitle"><a href="harfbuzz-hb-unicode.html">hb-unicode</a></span><span class="refpurpose"></span>
36
+ </dt>
37
+ <dt>
38
+ <span class="refentrytitle"><a href="harfbuzz-hb-buffer.html">hb-buffer</a></span><span class="refpurpose"></span>
39
+ </dt>
40
+ <dt>
41
+ <span class="refentrytitle"><a href="harfbuzz-hb-blob.html">hb-blob</a></span><span class="refpurpose"></span>
42
+ </dt>
43
+ <dt>
44
+ <span class="refentrytitle"><a href="harfbuzz-hb-face.html">hb-face</a></span><span class="refpurpose"></span>
45
+ </dt>
46
+ <dt>
47
+ <span class="refentrytitle"><a href="harfbuzz-hb-font.html">hb-font</a></span><span class="refpurpose"></span>
48
+ </dt>
49
+ <dt>
50
+ <span class="refentrytitle"><a href="harfbuzz-hb-shape.html">hb-shape</a></span><span class="refpurpose"></span>
51
+ </dt>
52
+ <dt>
53
+ <span class="refentrytitle"><a href="harfbuzz-hb-version.html">hb-version</a></span><span class="refpurpose"></span>
54
+ </dt>
55
+ <dt>
56
+ <span class="refentrytitle"><a href="harfbuzz-hb-deprecated.html">hb-deprecated</a></span><span class="refpurpose"></span>
57
+ </dt>
58
+ <dt>
59
+ <span class="refentrytitle"><a href="harfbuzz-hb-set.html">hb-set</a></span><span class="refpurpose"></span>
60
+ </dt>
61
+ <dt>
62
+ <span class="refentrytitle"><a href="harfbuzz-hb-ot.html">hb-ot</a></span><span class="refpurpose"></span>
63
+ </dt>
64
+ <dt>
65
+ <span class="refentrytitle"><a href="harfbuzz-hb-ot-layout.html">hb-ot-layout</a></span><span class="refpurpose"></span>
66
+ </dt>
67
+ <dt>
68
+ <span class="refentrytitle"><a href="harfbuzz-hb-ot-tag.html">hb-ot-tag</a></span><span class="refpurpose"></span>
69
+ </dt>
70
+ <dt>
71
+ <span class="refentrytitle"><a href="harfbuzz-hb-shape-plan.html">hb-shape-plan</a></span><span class="refpurpose"></span>
72
+ </dt>
73
+ <dt>
74
+ <span class="refentrytitle"><a href="harfbuzz-hb-glib.html">hb-glib</a></span><span class="refpurpose"></span>
75
+ </dt>
76
+ <dt>
77
+ <span class="refentrytitle"><a href="harfbuzz-hb-icu.html">hb-icu</a></span><span class="refpurpose"></span>
78
+ </dt>
79
+ <dt>
80
+ <span class="refentrytitle"><a href="harfbuzz-hb-ft.html">hb-ft</a></span><span class="refpurpose"></span>
81
+ </dt>
82
+ <dt>
83
+ <span class="refentrytitle"><a href="harfbuzz-hb-graphite2.html">hb-graphite2</a></span><span class="refpurpose"></span>
84
+ </dt>
85
+ <dt>
86
+ <span class="refentrytitle"><a href="harfbuzz-hb-uniscribe.html">hb-uniscribe</a></span><span class="refpurpose"></span>
87
+ </dt>
88
+ <dt>
89
+ <span class="refentrytitle"><a href="harfbuzz-hb-coretext.html">hb-coretext</a></span><span class="refpurpose"></span>
90
+ </dt>
91
+ <dt>
92
+ <span class="refentrytitle"><a href="harfbuzz-hb-gobject.html">hb-gobject</a></span><span class="refpurpose"></span>
93
+ </dt>
94
+ </dl></dd>
95
+ <dt><span class="chapter"><a href="object-tree.html">Object Hierarchy</a></span></dt>
96
+ <dt><span class="index"><a href="api-index-full.html">API Index</a></span></dt>
97
+ <dt><span class="index"><a href="deprecated-api-index.html">Index of deprecated API</a></span></dt>
98
+ <dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt>
99
+ </dl></div>
100
+ </div>
101
+ <div class="footer">
102
+ <hr>
103
+ Generated by GTK-Doc V1.19.1</div>
104
+ </body>
105
+ </html>
@@ -0,0 +1,650 @@
1
+ <ANCHOR id="harfbuzz-hb" href="harfbuzz/harfbuzz-hb.html">
2
+ <ANCHOR id="harfbuzz-hb.synopsis" href="harfbuzz/harfbuzz-hb.html#harfbuzz-hb.synopsis">
3
+ <ANCHOR id="harfbuzz-hb.description" href="harfbuzz/harfbuzz-hb.html#harfbuzz-hb.description">
4
+ <ANCHOR id="harfbuzz-hb.details" href="harfbuzz/harfbuzz-hb.html#harfbuzz-hb.details">
5
+ <ANCHOR id="harfbuzz-hb-common" href="harfbuzz/harfbuzz-hb-common.html">
6
+ <ANCHOR id="harfbuzz-hb-common.synopsis" href="harfbuzz/harfbuzz-hb-common.html#harfbuzz-hb-common.synopsis">
7
+ <ANCHOR id="harfbuzz-hb-common.description" href="harfbuzz/harfbuzz-hb-common.html#harfbuzz-hb-common.description">
8
+ <ANCHOR id="harfbuzz-hb-common.details" href="harfbuzz/harfbuzz-hb-common.html#harfbuzz-hb-common.details">
9
+ <ANCHOR id="HB-DIRECTION-REVERSE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-REVERSE:CAPS">
10
+ <ANCHOR id="HB-LANGUAGE-INVALID:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-LANGUAGE-INVALID:CAPS">
11
+ <ANCHOR id="HB-TAG:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-TAG:CAPS">
12
+ <ANCHOR id="HB-TAG-NONE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-TAG-NONE:CAPS">
13
+ <ANCHOR id="HB-UNTAG:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-UNTAG:CAPS">
14
+ <ANCHOR id="hb-bool-t" href="harfbuzz/harfbuzz-hb-common.html#hb-bool-t">
15
+ <ANCHOR id="hb-codepoint-t" href="harfbuzz/harfbuzz-hb-common.html#hb-codepoint-t">
16
+ <ANCHOR id="hb-destroy-func-t" href="harfbuzz/harfbuzz-hb-common.html#hb-destroy-func-t">
17
+ <ANCHOR id="hb-direction-from-string" href="harfbuzz/harfbuzz-hb-common.html#hb-direction-from-string">
18
+ <ANCHOR id="hb-direction-t" href="harfbuzz/harfbuzz-hb-common.html#hb-direction-t">
19
+ <ANCHOR id="HB-DIRECTION-INVALID:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-INVALID:CAPS">
20
+ <ANCHOR id="HB-DIRECTION-LTR:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-LTR:CAPS">
21
+ <ANCHOR id="HB-DIRECTION-RTL:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-RTL:CAPS">
22
+ <ANCHOR id="HB-DIRECTION-TTB:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-TTB:CAPS">
23
+ <ANCHOR id="HB-DIRECTION-BTT:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-BTT:CAPS">
24
+ <ANCHOR id="hb-direction-to-string" href="harfbuzz/harfbuzz-hb-common.html#hb-direction-to-string">
25
+ <ANCHOR id="hb-language-from-string" href="harfbuzz/harfbuzz-hb-common.html#hb-language-from-string">
26
+ <ANCHOR id="hb-language-get-default" href="harfbuzz/harfbuzz-hb-common.html#hb-language-get-default">
27
+ <ANCHOR id="hb-language-t" href="harfbuzz/harfbuzz-hb-common.html#hb-language-t">
28
+ <ANCHOR id="hb-language-to-string" href="harfbuzz/harfbuzz-hb-common.html#hb-language-to-string">
29
+ <ANCHOR id="hb-mask-t" href="harfbuzz/harfbuzz-hb-common.html#hb-mask-t">
30
+ <ANCHOR id="hb-position-t" href="harfbuzz/harfbuzz-hb-common.html#hb-position-t">
31
+ <ANCHOR id="hb-script-from-iso15924-tag" href="harfbuzz/harfbuzz-hb-common.html#hb-script-from-iso15924-tag">
32
+ <ANCHOR id="hb-script-from-string" href="harfbuzz/harfbuzz-hb-common.html#hb-script-from-string">
33
+ <ANCHOR id="hb-script-get-horizontal-direction" href="harfbuzz/harfbuzz-hb-common.html#hb-script-get-horizontal-direction">
34
+ <ANCHOR id="hb-script-t" href="harfbuzz/harfbuzz-hb-common.html#hb-script-t">
35
+ <ANCHOR id="HB-SCRIPT-COMMON:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-COMMON:CAPS">
36
+ <ANCHOR id="HB-SCRIPT-INHERITED:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-INHERITED:CAPS">
37
+ <ANCHOR id="HB-SCRIPT-UNKNOWN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-UNKNOWN:CAPS">
38
+ <ANCHOR id="HB-SCRIPT-ARABIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-ARABIC:CAPS">
39
+ <ANCHOR id="HB-SCRIPT-ARMENIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-ARMENIAN:CAPS">
40
+ <ANCHOR id="HB-SCRIPT-BENGALI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BENGALI:CAPS">
41
+ <ANCHOR id="HB-SCRIPT-CYRILLIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-CYRILLIC:CAPS">
42
+ <ANCHOR id="HB-SCRIPT-DEVANAGARI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-DEVANAGARI:CAPS">
43
+ <ANCHOR id="HB-SCRIPT-GEORGIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-GEORGIAN:CAPS">
44
+ <ANCHOR id="HB-SCRIPT-GREEK:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-GREEK:CAPS">
45
+ <ANCHOR id="HB-SCRIPT-GUJARATI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-GUJARATI:CAPS">
46
+ <ANCHOR id="HB-SCRIPT-GURMUKHI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-GURMUKHI:CAPS">
47
+ <ANCHOR id="HB-SCRIPT-HANGUL:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-HANGUL:CAPS">
48
+ <ANCHOR id="HB-SCRIPT-HAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-HAN:CAPS">
49
+ <ANCHOR id="HB-SCRIPT-HEBREW:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-HEBREW:CAPS">
50
+ <ANCHOR id="HB-SCRIPT-HIRAGANA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-HIRAGANA:CAPS">
51
+ <ANCHOR id="HB-SCRIPT-KANNADA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-KANNADA:CAPS">
52
+ <ANCHOR id="HB-SCRIPT-KATAKANA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-KATAKANA:CAPS">
53
+ <ANCHOR id="HB-SCRIPT-LAO:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-LAO:CAPS">
54
+ <ANCHOR id="HB-SCRIPT-LATIN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-LATIN:CAPS">
55
+ <ANCHOR id="HB-SCRIPT-MALAYALAM:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-MALAYALAM:CAPS">
56
+ <ANCHOR id="HB-SCRIPT-ORIYA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-ORIYA:CAPS">
57
+ <ANCHOR id="HB-SCRIPT-TAMIL:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TAMIL:CAPS">
58
+ <ANCHOR id="HB-SCRIPT-TELUGU:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TELUGU:CAPS">
59
+ <ANCHOR id="HB-SCRIPT-THAI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-THAI:CAPS">
60
+ <ANCHOR id="HB-SCRIPT-TIBETAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TIBETAN:CAPS">
61
+ <ANCHOR id="HB-SCRIPT-BOPOMOFO:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BOPOMOFO:CAPS">
62
+ <ANCHOR id="HB-SCRIPT-BRAILLE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BRAILLE:CAPS">
63
+ <ANCHOR id="HB-SCRIPT-CANADIAN-SYLLABICS:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-CANADIAN-SYLLABICS:CAPS">
64
+ <ANCHOR id="HB-SCRIPT-CHEROKEE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-CHEROKEE:CAPS">
65
+ <ANCHOR id="HB-SCRIPT-ETHIOPIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-ETHIOPIC:CAPS">
66
+ <ANCHOR id="HB-SCRIPT-KHMER:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-KHMER:CAPS">
67
+ <ANCHOR id="HB-SCRIPT-MONGOLIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-MONGOLIAN:CAPS">
68
+ <ANCHOR id="HB-SCRIPT-MYANMAR:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-MYANMAR:CAPS">
69
+ <ANCHOR id="HB-SCRIPT-OGHAM:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-OGHAM:CAPS">
70
+ <ANCHOR id="HB-SCRIPT-RUNIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-RUNIC:CAPS">
71
+ <ANCHOR id="HB-SCRIPT-SINHALA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SINHALA:CAPS">
72
+ <ANCHOR id="HB-SCRIPT-SYRIAC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SYRIAC:CAPS">
73
+ <ANCHOR id="HB-SCRIPT-THAANA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-THAANA:CAPS">
74
+ <ANCHOR id="HB-SCRIPT-YI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-YI:CAPS">
75
+ <ANCHOR id="HB-SCRIPT-DESERET:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-DESERET:CAPS">
76
+ <ANCHOR id="HB-SCRIPT-GOTHIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-GOTHIC:CAPS">
77
+ <ANCHOR id="HB-SCRIPT-OLD-ITALIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-OLD-ITALIC:CAPS">
78
+ <ANCHOR id="HB-SCRIPT-BUHID:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BUHID:CAPS">
79
+ <ANCHOR id="HB-SCRIPT-HANUNOO:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-HANUNOO:CAPS">
80
+ <ANCHOR id="HB-SCRIPT-TAGALOG:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TAGALOG:CAPS">
81
+ <ANCHOR id="HB-SCRIPT-TAGBANWA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TAGBANWA:CAPS">
82
+ <ANCHOR id="HB-SCRIPT-CYPRIOT:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-CYPRIOT:CAPS">
83
+ <ANCHOR id="HB-SCRIPT-LIMBU:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-LIMBU:CAPS">
84
+ <ANCHOR id="HB-SCRIPT-LINEAR-B:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-LINEAR-B:CAPS">
85
+ <ANCHOR id="HB-SCRIPT-OSMANYA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-OSMANYA:CAPS">
86
+ <ANCHOR id="HB-SCRIPT-SHAVIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SHAVIAN:CAPS">
87
+ <ANCHOR id="HB-SCRIPT-TAI-LE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TAI-LE:CAPS">
88
+ <ANCHOR id="HB-SCRIPT-UGARITIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-UGARITIC:CAPS">
89
+ <ANCHOR id="HB-SCRIPT-BUGINESE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BUGINESE:CAPS">
90
+ <ANCHOR id="HB-SCRIPT-COPTIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-COPTIC:CAPS">
91
+ <ANCHOR id="HB-SCRIPT-GLAGOLITIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-GLAGOLITIC:CAPS">
92
+ <ANCHOR id="HB-SCRIPT-KHAROSHTHI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-KHAROSHTHI:CAPS">
93
+ <ANCHOR id="HB-SCRIPT-NEW-TAI-LUE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-NEW-TAI-LUE:CAPS">
94
+ <ANCHOR id="HB-SCRIPT-OLD-PERSIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-OLD-PERSIAN:CAPS">
95
+ <ANCHOR id="HB-SCRIPT-SYLOTI-NAGRI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SYLOTI-NAGRI:CAPS">
96
+ <ANCHOR id="HB-SCRIPT-TIFINAGH:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TIFINAGH:CAPS">
97
+ <ANCHOR id="HB-SCRIPT-BALINESE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BALINESE:CAPS">
98
+ <ANCHOR id="HB-SCRIPT-CUNEIFORM:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-CUNEIFORM:CAPS">
99
+ <ANCHOR id="HB-SCRIPT-NKO:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-NKO:CAPS">
100
+ <ANCHOR id="HB-SCRIPT-PHAGS-PA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-PHAGS-PA:CAPS">
101
+ <ANCHOR id="HB-SCRIPT-PHOENICIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-PHOENICIAN:CAPS">
102
+ <ANCHOR id="HB-SCRIPT-CARIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-CARIAN:CAPS">
103
+ <ANCHOR id="HB-SCRIPT-CHAM:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-CHAM:CAPS">
104
+ <ANCHOR id="HB-SCRIPT-KAYAH-LI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-KAYAH-LI:CAPS">
105
+ <ANCHOR id="HB-SCRIPT-LEPCHA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-LEPCHA:CAPS">
106
+ <ANCHOR id="HB-SCRIPT-LYCIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-LYCIAN:CAPS">
107
+ <ANCHOR id="HB-SCRIPT-LYDIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-LYDIAN:CAPS">
108
+ <ANCHOR id="HB-SCRIPT-OL-CHIKI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-OL-CHIKI:CAPS">
109
+ <ANCHOR id="HB-SCRIPT-REJANG:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-REJANG:CAPS">
110
+ <ANCHOR id="HB-SCRIPT-SAURASHTRA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SAURASHTRA:CAPS">
111
+ <ANCHOR id="HB-SCRIPT-SUNDANESE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SUNDANESE:CAPS">
112
+ <ANCHOR id="HB-SCRIPT-VAI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-VAI:CAPS">
113
+ <ANCHOR id="HB-SCRIPT-AVESTAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-AVESTAN:CAPS">
114
+ <ANCHOR id="HB-SCRIPT-BAMUM:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BAMUM:CAPS">
115
+ <ANCHOR id="HB-SCRIPT-EGYPTIAN-HIEROGLYPHS:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-EGYPTIAN-HIEROGLYPHS:CAPS">
116
+ <ANCHOR id="HB-SCRIPT-IMPERIAL-ARAMAIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-IMPERIAL-ARAMAIC:CAPS">
117
+ <ANCHOR id="HB-SCRIPT-INSCRIPTIONAL-PAHLAVI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-INSCRIPTIONAL-PAHLAVI:CAPS">
118
+ <ANCHOR id="HB-SCRIPT-INSCRIPTIONAL-PARTHIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-INSCRIPTIONAL-PARTHIAN:CAPS">
119
+ <ANCHOR id="HB-SCRIPT-JAVANESE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-JAVANESE:CAPS">
120
+ <ANCHOR id="HB-SCRIPT-KAITHI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-KAITHI:CAPS">
121
+ <ANCHOR id="HB-SCRIPT-LISU:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-LISU:CAPS">
122
+ <ANCHOR id="HB-SCRIPT-MEETEI-MAYEK:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-MEETEI-MAYEK:CAPS">
123
+ <ANCHOR id="HB-SCRIPT-OLD-SOUTH-ARABIAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-OLD-SOUTH-ARABIAN:CAPS">
124
+ <ANCHOR id="HB-SCRIPT-OLD-TURKIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-OLD-TURKIC:CAPS">
125
+ <ANCHOR id="HB-SCRIPT-SAMARITAN:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SAMARITAN:CAPS">
126
+ <ANCHOR id="HB-SCRIPT-TAI-THAM:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TAI-THAM:CAPS">
127
+ <ANCHOR id="HB-SCRIPT-TAI-VIET:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TAI-VIET:CAPS">
128
+ <ANCHOR id="HB-SCRIPT-BATAK:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BATAK:CAPS">
129
+ <ANCHOR id="HB-SCRIPT-BRAHMI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-BRAHMI:CAPS">
130
+ <ANCHOR id="HB-SCRIPT-MANDAIC:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-MANDAIC:CAPS">
131
+ <ANCHOR id="HB-SCRIPT-CHAKMA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-CHAKMA:CAPS">
132
+ <ANCHOR id="HB-SCRIPT-MEROITIC-CURSIVE:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-MEROITIC-CURSIVE:CAPS">
133
+ <ANCHOR id="HB-SCRIPT-MEROITIC-HIEROGLYPHS:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-MEROITIC-HIEROGLYPHS:CAPS">
134
+ <ANCHOR id="HB-SCRIPT-MIAO:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-MIAO:CAPS">
135
+ <ANCHOR id="HB-SCRIPT-SHARADA:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SHARADA:CAPS">
136
+ <ANCHOR id="HB-SCRIPT-SORA-SOMPENG:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-SORA-SOMPENG:CAPS">
137
+ <ANCHOR id="HB-SCRIPT-TAKRI:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-TAKRI:CAPS">
138
+ <ANCHOR id="HB-SCRIPT-INVALID:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-SCRIPT-INVALID:CAPS">
139
+ <ANCHOR id="hb-script-to-iso15924-tag" href="harfbuzz/harfbuzz-hb-common.html#hb-script-to-iso15924-tag">
140
+ <ANCHOR id="hb-tag-from-string" href="harfbuzz/harfbuzz-hb-common.html#hb-tag-from-string">
141
+ <ANCHOR id="hb-tag-t" href="harfbuzz/harfbuzz-hb-common.html#hb-tag-t">
142
+ <ANCHOR id="hb-tag-to-string" href="harfbuzz/harfbuzz-hb-common.html#hb-tag-to-string">
143
+ <ANCHOR id="hb-user-data-key-t" href="harfbuzz/harfbuzz-hb-common.html#hb-user-data-key-t">
144
+ <ANCHOR id="hb-var-int-t" href="harfbuzz/harfbuzz-hb-common.html#hb-var-int-t">
145
+ <ANCHOR id="HB-DIRECTION-IS-BACKWARD:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-IS-BACKWARD:CAPS">
146
+ <ANCHOR id="HB-DIRECTION-IS-FORWARD:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-IS-FORWARD:CAPS">
147
+ <ANCHOR id="HB-DIRECTION-IS-HORIZONTAL:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-IS-HORIZONTAL:CAPS">
148
+ <ANCHOR id="HB-DIRECTION-IS-VALID:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-IS-VALID:CAPS">
149
+ <ANCHOR id="HB-DIRECTION-IS-VERTICAL:CAPS" href="harfbuzz/harfbuzz-hb-common.html#HB-DIRECTION-IS-VERTICAL:CAPS">
150
+ <ANCHOR id="harfbuzz-hb-unicode" href="harfbuzz/harfbuzz-hb-unicode.html">
151
+ <ANCHOR id="harfbuzz-hb-unicode.synopsis" href="harfbuzz/harfbuzz-hb-unicode.html#harfbuzz-hb-unicode.synopsis">
152
+ <ANCHOR id="harfbuzz-hb-unicode.description" href="harfbuzz/harfbuzz-hb-unicode.html#harfbuzz-hb-unicode.description">
153
+ <ANCHOR id="harfbuzz-hb-unicode.details" href="harfbuzz/harfbuzz-hb-unicode.html#harfbuzz-hb-unicode.details">
154
+ <ANCHOR id="HB-UNICODE-MAX-DECOMPOSITION-LEN:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-MAX-DECOMPOSITION-LEN:CAPS">
155
+ <ANCHOR id="hb-unicode-combining-class" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-combining-class">
156
+ <ANCHOR id="hb-unicode-combining-class-func-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-combining-class-func-t">
157
+ <ANCHOR id="hb-unicode-combining-class-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-combining-class-t">
158
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-NOT-REORDERED:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-NOT-REORDERED:CAPS">
159
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-OVERLAY:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-OVERLAY:CAPS">
160
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-NUKTA:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-NUKTA:CAPS">
161
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-KANA-VOICING:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-KANA-VOICING:CAPS">
162
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-VIRAMA:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-VIRAMA:CAPS">
163
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC10:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC10:CAPS">
164
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC11:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC11:CAPS">
165
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC12:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC12:CAPS">
166
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC13:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC13:CAPS">
167
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC14:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC14:CAPS">
168
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC15:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC15:CAPS">
169
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC16:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC16:CAPS">
170
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC17:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC17:CAPS">
171
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC18:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC18:CAPS">
172
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC19:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC19:CAPS">
173
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC20:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC20:CAPS">
174
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC21:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC21:CAPS">
175
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC22:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC22:CAPS">
176
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC23:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC23:CAPS">
177
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC24:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC24:CAPS">
178
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC25:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC25:CAPS">
179
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC26:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC26:CAPS">
180
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC27:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC27:CAPS">
181
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC28:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC28:CAPS">
182
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC29:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC29:CAPS">
183
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC30:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC30:CAPS">
184
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC31:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC31:CAPS">
185
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC32:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC32:CAPS">
186
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC33:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC33:CAPS">
187
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC34:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC34:CAPS">
188
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC35:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC35:CAPS">
189
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC36:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC36:CAPS">
190
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC84:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC84:CAPS">
191
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC91:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC91:CAPS">
192
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC103:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC103:CAPS">
193
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC107:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC107:CAPS">
194
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC118:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC118:CAPS">
195
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC122:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC122:CAPS">
196
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC129:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC129:CAPS">
197
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC130:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC130:CAPS">
198
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-CCC133:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-CCC133:CAPS">
199
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-ATTACHED-BELOW-LEFT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-ATTACHED-BELOW-LEFT:CAPS">
200
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-ATTACHED-BELOW:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-ATTACHED-BELOW:CAPS">
201
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-ATTACHED-ABOVE:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-ATTACHED-ABOVE:CAPS">
202
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-ATTACHED-ABOVE-RIGHT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-ATTACHED-ABOVE-RIGHT:CAPS">
203
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-BELOW-LEFT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-BELOW-LEFT:CAPS">
204
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-BELOW:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-BELOW:CAPS">
205
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-BELOW-RIGHT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-BELOW-RIGHT:CAPS">
206
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-LEFT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-LEFT:CAPS">
207
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-RIGHT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-RIGHT:CAPS">
208
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-ABOVE-LEFT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-ABOVE-LEFT:CAPS">
209
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-ABOVE:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-ABOVE:CAPS">
210
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-ABOVE-RIGHT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-ABOVE-RIGHT:CAPS">
211
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-DOUBLE-BELOW:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-DOUBLE-BELOW:CAPS">
212
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-DOUBLE-ABOVE:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-DOUBLE-ABOVE:CAPS">
213
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-IOTA-SUBSCRIPT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-IOTA-SUBSCRIPT:CAPS">
214
+ <ANCHOR id="HB-UNICODE-COMBINING-CLASS-INVALID:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-COMBINING-CLASS-INVALID:CAPS">
215
+ <ANCHOR id="hb-unicode-compose" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-compose">
216
+ <ANCHOR id="hb-unicode-compose-func-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-compose-func-t">
217
+ <ANCHOR id="hb-unicode-decompose" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-decompose">
218
+ <ANCHOR id="hb-unicode-decompose-compatibility" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-decompose-compatibility">
219
+ <ANCHOR id="hb-unicode-decompose-func-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-decompose-func-t">
220
+ <ANCHOR id="hb-unicode-eastasian-width" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-eastasian-width">
221
+ <ANCHOR id="hb-unicode-funcs-create" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-create">
222
+ <ANCHOR id="hb-unicode-funcs-destroy" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-destroy">
223
+ <ANCHOR id="hb-unicode-funcs-get-default" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-get-default">
224
+ <ANCHOR id="hb-unicode-funcs-get-empty" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-get-empty">
225
+ <ANCHOR id="hb-unicode-funcs-get-parent" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-get-parent">
226
+ <ANCHOR id="hb-unicode-funcs-get-user-data" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-get-user-data">
227
+ <ANCHOR id="hb-unicode-funcs-is-immutable" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-is-immutable">
228
+ <ANCHOR id="hb-unicode-funcs-make-immutable" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-make-immutable">
229
+ <ANCHOR id="hb-unicode-funcs-reference" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-reference">
230
+ <ANCHOR id="hb-unicode-funcs-set-combining-class-func" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-combining-class-func">
231
+ <ANCHOR id="hb-unicode-funcs-set-compose-func" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-compose-func">
232
+ <ANCHOR id="hb-unicode-funcs-set-decompose-compatibility-func" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-decompose-compatibility-func">
233
+ <ANCHOR id="hb-unicode-funcs-set-decompose-func" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-decompose-func">
234
+ <ANCHOR id="hb-unicode-funcs-set-eastasian-width-func" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-eastasian-width-func">
235
+ <ANCHOR id="hb-unicode-funcs-set-general-category-func" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-general-category-func">
236
+ <ANCHOR id="hb-unicode-funcs-set-mirroring-func" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-mirroring-func">
237
+ <ANCHOR id="hb-unicode-funcs-set-script-func" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-script-func">
238
+ <ANCHOR id="hb-unicode-funcs-set-user-data" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-set-user-data">
239
+ <ANCHOR id="hb-unicode-funcs-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-funcs-t">
240
+ <ANCHOR id="hb-unicode-general-category" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-general-category">
241
+ <ANCHOR id="hb-unicode-general-category-func-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-general-category-func-t">
242
+ <ANCHOR id="hb-unicode-general-category-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-general-category-t">
243
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-CONTROL:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-CONTROL:CAPS">
244
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-FORMAT:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-FORMAT:CAPS">
245
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-UNASSIGNED:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-UNASSIGNED:CAPS">
246
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-PRIVATE-USE:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-PRIVATE-USE:CAPS">
247
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-SURROGATE:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-SURROGATE:CAPS">
248
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-LOWERCASE-LETTER:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-LOWERCASE-LETTER:CAPS">
249
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-MODIFIER-LETTER:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-MODIFIER-LETTER:CAPS">
250
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-OTHER-LETTER:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-OTHER-LETTER:CAPS">
251
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-TITLECASE-LETTER:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-TITLECASE-LETTER:CAPS">
252
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-UPPERCASE-LETTER:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-UPPERCASE-LETTER:CAPS">
253
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-SPACING-MARK:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-SPACING-MARK:CAPS">
254
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-ENCLOSING-MARK:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-ENCLOSING-MARK:CAPS">
255
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-NON-SPACING-MARK:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-NON-SPACING-MARK:CAPS">
256
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-DECIMAL-NUMBER:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-DECIMAL-NUMBER:CAPS">
257
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-LETTER-NUMBER:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-LETTER-NUMBER:CAPS">
258
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-OTHER-NUMBER:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-OTHER-NUMBER:CAPS">
259
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-CONNECT-PUNCTUATION:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-CONNECT-PUNCTUATION:CAPS">
260
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-DASH-PUNCTUATION:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-DASH-PUNCTUATION:CAPS">
261
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-CLOSE-PUNCTUATION:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-CLOSE-PUNCTUATION:CAPS">
262
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-FINAL-PUNCTUATION:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-FINAL-PUNCTUATION:CAPS">
263
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-INITIAL-PUNCTUATION:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-INITIAL-PUNCTUATION:CAPS">
264
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-OTHER-PUNCTUATION:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-OTHER-PUNCTUATION:CAPS">
265
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-OPEN-PUNCTUATION:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-OPEN-PUNCTUATION:CAPS">
266
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-CURRENCY-SYMBOL:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-CURRENCY-SYMBOL:CAPS">
267
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-MODIFIER-SYMBOL:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-MODIFIER-SYMBOL:CAPS">
268
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-MATH-SYMBOL:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-MATH-SYMBOL:CAPS">
269
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-OTHER-SYMBOL:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-OTHER-SYMBOL:CAPS">
270
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-LINE-SEPARATOR:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-LINE-SEPARATOR:CAPS">
271
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-PARAGRAPH-SEPARATOR:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-PARAGRAPH-SEPARATOR:CAPS">
272
+ <ANCHOR id="HB-UNICODE-GENERAL-CATEGORY-SPACE-SEPARATOR:CAPS" href="harfbuzz/harfbuzz-hb-unicode.html#HB-UNICODE-GENERAL-CATEGORY-SPACE-SEPARATOR:CAPS">
273
+ <ANCHOR id="hb-unicode-mirroring" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-mirroring">
274
+ <ANCHOR id="hb-unicode-mirroring-func-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-mirroring-func-t">
275
+ <ANCHOR id="hb-unicode-script" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-script">
276
+ <ANCHOR id="hb-unicode-script-func-t" href="harfbuzz/harfbuzz-hb-unicode.html#hb-unicode-script-func-t">
277
+ <ANCHOR id="harfbuzz-hb-buffer" href="harfbuzz/harfbuzz-hb-buffer.html">
278
+ <ANCHOR id="harfbuzz-hb-buffer.synopsis" href="harfbuzz/harfbuzz-hb-buffer.html#harfbuzz-hb-buffer.synopsis">
279
+ <ANCHOR id="harfbuzz-hb-buffer.description" href="harfbuzz/harfbuzz-hb-buffer.html#harfbuzz-hb-buffer.description">
280
+ <ANCHOR id="harfbuzz-hb-buffer.details" href="harfbuzz/harfbuzz-hb-buffer.html#harfbuzz-hb-buffer.details">
281
+ <ANCHOR id="HB-SEGMENT-PROPERTIES-DEFAULT:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-SEGMENT-PROPERTIES-DEFAULT:CAPS">
282
+ <ANCHOR id="hb-buffer-add" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-add">
283
+ <ANCHOR id="hb-buffer-add-utf16" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-add-utf16">
284
+ <ANCHOR id="hb-buffer-add-utf32" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-add-utf32">
285
+ <ANCHOR id="hb-buffer-add-utf8" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-add-utf8">
286
+ <ANCHOR id="hb-buffer-allocation-successful" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-allocation-successful">
287
+ <ANCHOR id="hb-buffer-clear-contents" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-clear-contents">
288
+ <ANCHOR id="hb-buffer-content-type-t" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-content-type-t">
289
+ <ANCHOR id="HB-BUFFER-CONTENT-TYPE-INVALID:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-CONTENT-TYPE-INVALID:CAPS">
290
+ <ANCHOR id="HB-BUFFER-CONTENT-TYPE-UNICODE:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-CONTENT-TYPE-UNICODE:CAPS">
291
+ <ANCHOR id="HB-BUFFER-CONTENT-TYPE-GLYPHS:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-CONTENT-TYPE-GLYPHS:CAPS">
292
+ <ANCHOR id="hb-buffer-create" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-create">
293
+ <ANCHOR id="hb-buffer-deserialize-glyphs" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-deserialize-glyphs">
294
+ <ANCHOR id="hb-buffer-destroy" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-destroy">
295
+ <ANCHOR id="hb-buffer-flags-t" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-flags-t">
296
+ <ANCHOR id="HB-BUFFER-FLAG-DEFAULT:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-FLAG-DEFAULT:CAPS">
297
+ <ANCHOR id="HB-BUFFER-FLAG-BOT:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-FLAG-BOT:CAPS">
298
+ <ANCHOR id="HB-BUFFER-FLAG-EOT:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-FLAG-EOT:CAPS">
299
+ <ANCHOR id="HB-BUFFER-FLAG-PRESERVE-DEFAULT-IGNORABLES:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-FLAG-PRESERVE-DEFAULT-IGNORABLES:CAPS">
300
+ <ANCHOR id="hb-buffer-get-content-type" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-content-type">
301
+ <ANCHOR id="hb-buffer-get-direction" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-direction">
302
+ <ANCHOR id="hb-buffer-get-empty" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-empty">
303
+ <ANCHOR id="hb-buffer-get-flags" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-flags">
304
+ <ANCHOR id="hb-buffer-get-glyph-infos" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-glyph-infos">
305
+ <ANCHOR id="hb-buffer-get-glyph-positions" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-glyph-positions">
306
+ <ANCHOR id="hb-buffer-get-language" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-language">
307
+ <ANCHOR id="hb-buffer-get-length" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-length">
308
+ <ANCHOR id="hb-buffer-get-script" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-script">
309
+ <ANCHOR id="hb-buffer-get-segment-properties" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-segment-properties">
310
+ <ANCHOR id="hb-buffer-get-unicode-funcs" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-unicode-funcs">
311
+ <ANCHOR id="hb-buffer-get-user-data" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-get-user-data">
312
+ <ANCHOR id="hb-buffer-guess-segment-properties" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-guess-segment-properties">
313
+ <ANCHOR id="hb-buffer-normalize-glyphs" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-normalize-glyphs">
314
+ <ANCHOR id="hb-buffer-pre-allocate" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-pre-allocate">
315
+ <ANCHOR id="hb-buffer-reference" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-reference">
316
+ <ANCHOR id="hb-buffer-reset" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-reset">
317
+ <ANCHOR id="hb-buffer-reverse" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-reverse">
318
+ <ANCHOR id="hb-buffer-reverse-clusters" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-reverse-clusters">
319
+ <ANCHOR id="hb-buffer-serialize-flags-t" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-serialize-flags-t">
320
+ <ANCHOR id="HB-BUFFER-SERIALIZE-FLAG-DEFAULT:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-SERIALIZE-FLAG-DEFAULT:CAPS">
321
+ <ANCHOR id="HB-BUFFER-SERIALIZE-FLAG-NO-CLUSTERS:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-SERIALIZE-FLAG-NO-CLUSTERS:CAPS">
322
+ <ANCHOR id="HB-BUFFER-SERIALIZE-FLAG-NO-POSITIONS:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-SERIALIZE-FLAG-NO-POSITIONS:CAPS">
323
+ <ANCHOR id="HB-BUFFER-SERIALIZE-FLAG-NO-GLYPH-NAMES:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-SERIALIZE-FLAG-NO-GLYPH-NAMES:CAPS">
324
+ <ANCHOR id="hb-buffer-serialize-format-from-string" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-serialize-format-from-string">
325
+ <ANCHOR id="hb-buffer-serialize-format-t" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-serialize-format-t">
326
+ <ANCHOR id="HB-BUFFER-SERIALIZE-FORMAT-TEXT:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-SERIALIZE-FORMAT-TEXT:CAPS">
327
+ <ANCHOR id="HB-BUFFER-SERIALIZE-FORMAT-JSON:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-SERIALIZE-FORMAT-JSON:CAPS">
328
+ <ANCHOR id="HB-BUFFER-SERIALIZE-FORMAT-INVALID:CAPS" href="harfbuzz/harfbuzz-hb-buffer.html#HB-BUFFER-SERIALIZE-FORMAT-INVALID:CAPS">
329
+ <ANCHOR id="hb-buffer-serialize-format-to-string" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-serialize-format-to-string">
330
+ <ANCHOR id="hb-buffer-serialize-glyphs" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-serialize-glyphs">
331
+ <ANCHOR id="hb-buffer-serialize-list-formats" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-serialize-list-formats">
332
+ <ANCHOR id="hb-buffer-set-content-type" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-content-type">
333
+ <ANCHOR id="hb-buffer-set-direction" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-direction">
334
+ <ANCHOR id="hb-buffer-set-flags" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-flags">
335
+ <ANCHOR id="hb-buffer-set-language" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-language">
336
+ <ANCHOR id="hb-buffer-set-length" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-length">
337
+ <ANCHOR id="hb-buffer-set-script" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-script">
338
+ <ANCHOR id="hb-buffer-set-segment-properties" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-segment-properties">
339
+ <ANCHOR id="hb-buffer-set-unicode-funcs" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-unicode-funcs">
340
+ <ANCHOR id="hb-buffer-set-user-data" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-set-user-data">
341
+ <ANCHOR id="hb-buffer-t" href="harfbuzz/harfbuzz-hb-buffer.html#hb-buffer-t">
342
+ <ANCHOR id="hb-glyph-info-t" href="harfbuzz/harfbuzz-hb-buffer.html#hb-glyph-info-t">
343
+ <ANCHOR id="hb-glyph-position-t" href="harfbuzz/harfbuzz-hb-buffer.html#hb-glyph-position-t">
344
+ <ANCHOR id="hb-segment-properties-equal" href="harfbuzz/harfbuzz-hb-buffer.html#hb-segment-properties-equal">
345
+ <ANCHOR id="hb-segment-properties-hash" href="harfbuzz/harfbuzz-hb-buffer.html#hb-segment-properties-hash">
346
+ <ANCHOR id="hb-segment-properties-t" href="harfbuzz/harfbuzz-hb-buffer.html#hb-segment-properties-t">
347
+ <ANCHOR id="harfbuzz-hb-blob" href="harfbuzz/harfbuzz-hb-blob.html">
348
+ <ANCHOR id="harfbuzz-hb-blob.synopsis" href="harfbuzz/harfbuzz-hb-blob.html#harfbuzz-hb-blob.synopsis">
349
+ <ANCHOR id="harfbuzz-hb-blob.description" href="harfbuzz/harfbuzz-hb-blob.html#harfbuzz-hb-blob.description">
350
+ <ANCHOR id="harfbuzz-hb-blob.details" href="harfbuzz/harfbuzz-hb-blob.html#harfbuzz-hb-blob.details">
351
+ <ANCHOR id="hb-blob-create" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-create">
352
+ <ANCHOR id="hb-blob-create-sub-blob" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-create-sub-blob">
353
+ <ANCHOR id="hb-blob-destroy" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-destroy">
354
+ <ANCHOR id="hb-blob-get-data" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-get-data">
355
+ <ANCHOR id="hb-blob-get-data-writable" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-get-data-writable">
356
+ <ANCHOR id="hb-blob-get-empty" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-get-empty">
357
+ <ANCHOR id="hb-blob-get-length" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-get-length">
358
+ <ANCHOR id="hb-blob-get-user-data" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-get-user-data">
359
+ <ANCHOR id="hb-blob-is-immutable" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-is-immutable">
360
+ <ANCHOR id="hb-blob-make-immutable" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-make-immutable">
361
+ <ANCHOR id="hb-blob-reference" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-reference">
362
+ <ANCHOR id="hb-blob-set-user-data" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-set-user-data">
363
+ <ANCHOR id="hb-blob-t" href="harfbuzz/harfbuzz-hb-blob.html#hb-blob-t">
364
+ <ANCHOR id="hb-memory-mode-t" href="harfbuzz/harfbuzz-hb-blob.html#hb-memory-mode-t">
365
+ <ANCHOR id="HB-MEMORY-MODE-DUPLICATE:CAPS" href="harfbuzz/harfbuzz-hb-blob.html#HB-MEMORY-MODE-DUPLICATE:CAPS">
366
+ <ANCHOR id="HB-MEMORY-MODE-READONLY:CAPS" href="harfbuzz/harfbuzz-hb-blob.html#HB-MEMORY-MODE-READONLY:CAPS">
367
+ <ANCHOR id="HB-MEMORY-MODE-WRITABLE:CAPS" href="harfbuzz/harfbuzz-hb-blob.html#HB-MEMORY-MODE-WRITABLE:CAPS">
368
+ <ANCHOR id="HB-MEMORY-MODE-READONLY-MAY-MAKE-WRITABLE:CAPS" href="harfbuzz/harfbuzz-hb-blob.html#HB-MEMORY-MODE-READONLY-MAY-MAKE-WRITABLE:CAPS">
369
+ <ANCHOR id="harfbuzz-hb-face" href="harfbuzz/harfbuzz-hb-face.html">
370
+ <ANCHOR id="harfbuzz-hb-face.synopsis" href="harfbuzz/harfbuzz-hb-face.html#harfbuzz-hb-face.synopsis">
371
+ <ANCHOR id="harfbuzz-hb-face.description" href="harfbuzz/harfbuzz-hb-face.html#harfbuzz-hb-face.description">
372
+ <ANCHOR id="harfbuzz-hb-face.details" href="harfbuzz/harfbuzz-hb-face.html#harfbuzz-hb-face.details">
373
+ <ANCHOR id="hb-face-create" href="harfbuzz/harfbuzz-hb-face.html#hb-face-create">
374
+ <ANCHOR id="hb-face-create-for-tables" href="harfbuzz/harfbuzz-hb-face.html#hb-face-create-for-tables">
375
+ <ANCHOR id="hb-face-destroy" href="harfbuzz/harfbuzz-hb-face.html#hb-face-destroy">
376
+ <ANCHOR id="hb-face-get-empty" href="harfbuzz/harfbuzz-hb-face.html#hb-face-get-empty">
377
+ <ANCHOR id="hb-face-get-glyph-count" href="harfbuzz/harfbuzz-hb-face.html#hb-face-get-glyph-count">
378
+ <ANCHOR id="hb-face-get-index" href="harfbuzz/harfbuzz-hb-face.html#hb-face-get-index">
379
+ <ANCHOR id="hb-face-get-upem" href="harfbuzz/harfbuzz-hb-face.html#hb-face-get-upem">
380
+ <ANCHOR id="hb-face-get-user-data" href="harfbuzz/harfbuzz-hb-face.html#hb-face-get-user-data">
381
+ <ANCHOR id="hb-face-is-immutable" href="harfbuzz/harfbuzz-hb-face.html#hb-face-is-immutable">
382
+ <ANCHOR id="hb-face-make-immutable" href="harfbuzz/harfbuzz-hb-face.html#hb-face-make-immutable">
383
+ <ANCHOR id="hb-face-reference" href="harfbuzz/harfbuzz-hb-face.html#hb-face-reference">
384
+ <ANCHOR id="hb-face-reference-blob" href="harfbuzz/harfbuzz-hb-face.html#hb-face-reference-blob">
385
+ <ANCHOR id="hb-face-reference-table" href="harfbuzz/harfbuzz-hb-face.html#hb-face-reference-table">
386
+ <ANCHOR id="hb-face-set-glyph-count" href="harfbuzz/harfbuzz-hb-face.html#hb-face-set-glyph-count">
387
+ <ANCHOR id="hb-face-set-index" href="harfbuzz/harfbuzz-hb-face.html#hb-face-set-index">
388
+ <ANCHOR id="hb-face-set-upem" href="harfbuzz/harfbuzz-hb-face.html#hb-face-set-upem">
389
+ <ANCHOR id="hb-face-set-user-data" href="harfbuzz/harfbuzz-hb-face.html#hb-face-set-user-data">
390
+ <ANCHOR id="hb-face-t" href="harfbuzz/harfbuzz-hb-face.html#hb-face-t">
391
+ <ANCHOR id="harfbuzz-hb-font" href="harfbuzz/harfbuzz-hb-font.html">
392
+ <ANCHOR id="harfbuzz-hb-font.synopsis" href="harfbuzz/harfbuzz-hb-font.html#harfbuzz-hb-font.synopsis">
393
+ <ANCHOR id="harfbuzz-hb-font.description" href="harfbuzz/harfbuzz-hb-font.html#harfbuzz-hb-font.description">
394
+ <ANCHOR id="harfbuzz-hb-font.details" href="harfbuzz/harfbuzz-hb-font.html#harfbuzz-hb-font.details">
395
+ <ANCHOR id="hb-font-add-glyph-origin-for-direction" href="harfbuzz/harfbuzz-hb-font.html#hb-font-add-glyph-origin-for-direction">
396
+ <ANCHOR id="hb-font-create" href="harfbuzz/harfbuzz-hb-font.html#hb-font-create">
397
+ <ANCHOR id="hb-font-create-sub-font" href="harfbuzz/harfbuzz-hb-font.html#hb-font-create-sub-font">
398
+ <ANCHOR id="hb-font-destroy" href="harfbuzz/harfbuzz-hb-font.html#hb-font-destroy">
399
+ <ANCHOR id="hb-font-funcs-create" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-create">
400
+ <ANCHOR id="hb-font-funcs-destroy" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-destroy">
401
+ <ANCHOR id="hb-font-funcs-get-empty" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-get-empty">
402
+ <ANCHOR id="hb-font-funcs-get-user-data" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-get-user-data">
403
+ <ANCHOR id="hb-font-funcs-is-immutable" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-is-immutable">
404
+ <ANCHOR id="hb-font-funcs-make-immutable" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-make-immutable">
405
+ <ANCHOR id="hb-font-funcs-reference" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-reference">
406
+ <ANCHOR id="hb-font-funcs-set-glyph-contour-point-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-contour-point-func">
407
+ <ANCHOR id="hb-font-funcs-set-glyph-extents-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-extents-func">
408
+ <ANCHOR id="hb-font-funcs-set-glyph-from-name-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-from-name-func">
409
+ <ANCHOR id="hb-font-funcs-set-glyph-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-func">
410
+ <ANCHOR id="hb-font-funcs-set-glyph-h-advance-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-h-advance-func">
411
+ <ANCHOR id="hb-font-funcs-set-glyph-h-kerning-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-h-kerning-func">
412
+ <ANCHOR id="hb-font-funcs-set-glyph-h-origin-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-h-origin-func">
413
+ <ANCHOR id="hb-font-funcs-set-glyph-name-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-name-func">
414
+ <ANCHOR id="hb-font-funcs-set-glyph-v-advance-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-v-advance-func">
415
+ <ANCHOR id="hb-font-funcs-set-glyph-v-kerning-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-v-kerning-func">
416
+ <ANCHOR id="hb-font-funcs-set-glyph-v-origin-func" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-glyph-v-origin-func">
417
+ <ANCHOR id="hb-font-funcs-set-user-data" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-set-user-data">
418
+ <ANCHOR id="hb-font-funcs-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-funcs-t">
419
+ <ANCHOR id="hb-font-get-empty" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-empty">
420
+ <ANCHOR id="hb-font-get-face" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-face">
421
+ <ANCHOR id="hb-font-get-glyph" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph">
422
+ <ANCHOR id="hb-font-get-glyph-advance-for-direction" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-advance-for-direction">
423
+ <ANCHOR id="hb-font-get-glyph-advance-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-advance-func-t">
424
+ <ANCHOR id="hb-font-get-glyph-contour-point" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-contour-point">
425
+ <ANCHOR id="hb-font-get-glyph-contour-point-for-origin" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-contour-point-for-origin">
426
+ <ANCHOR id="hb-font-get-glyph-contour-point-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-contour-point-func-t">
427
+ <ANCHOR id="hb-font-get-glyph-extents" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-extents">
428
+ <ANCHOR id="hb-font-get-glyph-extents-for-origin" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-extents-for-origin">
429
+ <ANCHOR id="hb-font-get-glyph-extents-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-extents-func-t">
430
+ <ANCHOR id="hb-font-get-glyph-from-name" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-from-name">
431
+ <ANCHOR id="hb-font-get-glyph-from-name-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-from-name-func-t">
432
+ <ANCHOR id="hb-font-get-glyph-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-func-t">
433
+ <ANCHOR id="hb-font-get-glyph-h-advance" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-h-advance">
434
+ <ANCHOR id="hb-font-get-glyph-h-advance-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-h-advance-func-t">
435
+ <ANCHOR id="hb-font-get-glyph-h-kerning" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-h-kerning">
436
+ <ANCHOR id="hb-font-get-glyph-h-kerning-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-h-kerning-func-t">
437
+ <ANCHOR id="hb-font-get-glyph-h-origin" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-h-origin">
438
+ <ANCHOR id="hb-font-get-glyph-h-origin-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-h-origin-func-t">
439
+ <ANCHOR id="hb-font-get-glyph-kerning-for-direction" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-kerning-for-direction">
440
+ <ANCHOR id="hb-font-get-glyph-kerning-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-kerning-func-t">
441
+ <ANCHOR id="hb-font-get-glyph-name" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-name">
442
+ <ANCHOR id="hb-font-get-glyph-name-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-name-func-t">
443
+ <ANCHOR id="hb-font-get-glyph-origin-for-direction" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-origin-for-direction">
444
+ <ANCHOR id="hb-font-get-glyph-origin-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-origin-func-t">
445
+ <ANCHOR id="hb-font-get-glyph-v-advance" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-v-advance">
446
+ <ANCHOR id="hb-font-get-glyph-v-advance-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-v-advance-func-t">
447
+ <ANCHOR id="hb-font-get-glyph-v-kerning" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-v-kerning">
448
+ <ANCHOR id="hb-font-get-glyph-v-kerning-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-v-kerning-func-t">
449
+ <ANCHOR id="hb-font-get-glyph-v-origin" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-v-origin">
450
+ <ANCHOR id="hb-font-get-glyph-v-origin-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-glyph-v-origin-func-t">
451
+ <ANCHOR id="hb-font-get-parent" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-parent">
452
+ <ANCHOR id="hb-font-get-ppem" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-ppem">
453
+ <ANCHOR id="hb-font-get-scale" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-scale">
454
+ <ANCHOR id="hb-font-get-user-data" href="harfbuzz/harfbuzz-hb-font.html#hb-font-get-user-data">
455
+ <ANCHOR id="hb-font-glyph-from-string" href="harfbuzz/harfbuzz-hb-font.html#hb-font-glyph-from-string">
456
+ <ANCHOR id="hb-font-glyph-to-string" href="harfbuzz/harfbuzz-hb-font.html#hb-font-glyph-to-string">
457
+ <ANCHOR id="hb-font-is-immutable" href="harfbuzz/harfbuzz-hb-font.html#hb-font-is-immutable">
458
+ <ANCHOR id="hb-font-make-immutable" href="harfbuzz/harfbuzz-hb-font.html#hb-font-make-immutable">
459
+ <ANCHOR id="hb-font-reference" href="harfbuzz/harfbuzz-hb-font.html#hb-font-reference">
460
+ <ANCHOR id="hb-font-set-funcs" href="harfbuzz/harfbuzz-hb-font.html#hb-font-set-funcs">
461
+ <ANCHOR id="hb-font-set-funcs-data" href="harfbuzz/harfbuzz-hb-font.html#hb-font-set-funcs-data">
462
+ <ANCHOR id="hb-font-set-ppem" href="harfbuzz/harfbuzz-hb-font.html#hb-font-set-ppem">
463
+ <ANCHOR id="hb-font-set-scale" href="harfbuzz/harfbuzz-hb-font.html#hb-font-set-scale">
464
+ <ANCHOR id="hb-font-set-user-data" href="harfbuzz/harfbuzz-hb-font.html#hb-font-set-user-data">
465
+ <ANCHOR id="hb-font-subtract-glyph-origin-for-direction" href="harfbuzz/harfbuzz-hb-font.html#hb-font-subtract-glyph-origin-for-direction">
466
+ <ANCHOR id="hb-font-t" href="harfbuzz/harfbuzz-hb-font.html#hb-font-t">
467
+ <ANCHOR id="hb-reference-table-func-t" href="harfbuzz/harfbuzz-hb-font.html#hb-reference-table-func-t">
468
+ <ANCHOR id="harfbuzz-hb-shape" href="harfbuzz/harfbuzz-hb-shape.html">
469
+ <ANCHOR id="harfbuzz-hb-shape.synopsis" href="harfbuzz/harfbuzz-hb-shape.html#harfbuzz-hb-shape.synopsis">
470
+ <ANCHOR id="harfbuzz-hb-shape.description" href="harfbuzz/harfbuzz-hb-shape.html#harfbuzz-hb-shape.description">
471
+ <ANCHOR id="harfbuzz-hb-shape.details" href="harfbuzz/harfbuzz-hb-shape.html#harfbuzz-hb-shape.details">
472
+ <ANCHOR id="hb-feature-from-string" href="harfbuzz/harfbuzz-hb-shape.html#hb-feature-from-string">
473
+ <ANCHOR id="hb-feature-t" href="harfbuzz/harfbuzz-hb-shape.html#hb-feature-t">
474
+ <ANCHOR id="hb-feature-to-string" href="harfbuzz/harfbuzz-hb-shape.html#hb-feature-to-string">
475
+ <ANCHOR id="hb-shape" href="harfbuzz/harfbuzz-hb-shape.html#hb-shape">
476
+ <ANCHOR id="hb-shape-full" href="harfbuzz/harfbuzz-hb-shape.html#hb-shape-full">
477
+ <ANCHOR id="hb-shape-list-shapers" href="harfbuzz/harfbuzz-hb-shape.html#hb-shape-list-shapers">
478
+ <ANCHOR id="harfbuzz-hb-version" href="harfbuzz/harfbuzz-hb-version.html">
479
+ <ANCHOR id="harfbuzz-hb-version.synopsis" href="harfbuzz/harfbuzz-hb-version.html#harfbuzz-hb-version.synopsis">
480
+ <ANCHOR id="harfbuzz-hb-version.description" href="harfbuzz/harfbuzz-hb-version.html#harfbuzz-hb-version.description">
481
+ <ANCHOR id="harfbuzz-hb-version.details" href="harfbuzz/harfbuzz-hb-version.html#harfbuzz-hb-version.details">
482
+ <ANCHOR id="HB-VERSION-CHECK:CAPS" href="harfbuzz/harfbuzz-hb-version.html#HB-VERSION-CHECK:CAPS">
483
+ <ANCHOR id="HB-VERSION-MAJOR:CAPS" href="harfbuzz/harfbuzz-hb-version.html#HB-VERSION-MAJOR:CAPS">
484
+ <ANCHOR id="HB-VERSION-MICRO:CAPS" href="harfbuzz/harfbuzz-hb-version.html#HB-VERSION-MICRO:CAPS">
485
+ <ANCHOR id="HB-VERSION-MINOR:CAPS" href="harfbuzz/harfbuzz-hb-version.html#HB-VERSION-MINOR:CAPS">
486
+ <ANCHOR id="HB-VERSION-STRING:CAPS" href="harfbuzz/harfbuzz-hb-version.html#HB-VERSION-STRING:CAPS">
487
+ <ANCHOR id="hb-version" href="harfbuzz/harfbuzz-hb-version.html#hb-version">
488
+ <ANCHOR id="hb-version-check" href="harfbuzz/harfbuzz-hb-version.html#hb-version-check">
489
+ <ANCHOR id="hb-version-string" href="harfbuzz/harfbuzz-hb-version.html#hb-version-string">
490
+ <ANCHOR id="harfbuzz-hb-deprecated" href="harfbuzz/harfbuzz-hb-deprecated.html">
491
+ <ANCHOR id="harfbuzz-hb-deprecated.synopsis" href="harfbuzz/harfbuzz-hb-deprecated.html#harfbuzz-hb-deprecated.synopsis">
492
+ <ANCHOR id="harfbuzz-hb-deprecated.description" href="harfbuzz/harfbuzz-hb-deprecated.html#harfbuzz-hb-deprecated.description">
493
+ <ANCHOR id="harfbuzz-hb-deprecated.details" href="harfbuzz/harfbuzz-hb-deprecated.html#harfbuzz-hb-deprecated.details">
494
+ <ANCHOR id="HB-BUFFER-FLAGS-DEFAULT:CAPS" href="harfbuzz/harfbuzz-hb-deprecated.html#HB-BUFFER-FLAGS-DEFAULT:CAPS">
495
+ <ANCHOR id="HB-BUFFER-SERIALIZE-FLAGS-DEFAULT:CAPS" href="harfbuzz/harfbuzz-hb-deprecated.html#HB-BUFFER-SERIALIZE-FLAGS-DEFAULT:CAPS">
496
+ <ANCHOR id="HB-SCRIPT-CANADIAN-ABORIGINAL:CAPS" href="harfbuzz/harfbuzz-hb-deprecated.html#HB-SCRIPT-CANADIAN-ABORIGINAL:CAPS">
497
+ <ANCHOR id="harfbuzz-hb-set" href="harfbuzz/harfbuzz-hb-set.html">
498
+ <ANCHOR id="harfbuzz-hb-set.synopsis" href="harfbuzz/harfbuzz-hb-set.html#harfbuzz-hb-set.synopsis">
499
+ <ANCHOR id="harfbuzz-hb-set.description" href="harfbuzz/harfbuzz-hb-set.html#harfbuzz-hb-set.description">
500
+ <ANCHOR id="harfbuzz-hb-set.details" href="harfbuzz/harfbuzz-hb-set.html#harfbuzz-hb-set.details">
501
+ <ANCHOR id="hb-set-add" href="harfbuzz/harfbuzz-hb-set.html#hb-set-add">
502
+ <ANCHOR id="hb-set-add-range" href="harfbuzz/harfbuzz-hb-set.html#hb-set-add-range">
503
+ <ANCHOR id="hb-set-allocation-successful" href="harfbuzz/harfbuzz-hb-set.html#hb-set-allocation-successful">
504
+ <ANCHOR id="hb-set-clear" href="harfbuzz/harfbuzz-hb-set.html#hb-set-clear">
505
+ <ANCHOR id="hb-set-create" href="harfbuzz/harfbuzz-hb-set.html#hb-set-create">
506
+ <ANCHOR id="hb-set-del" href="harfbuzz/harfbuzz-hb-set.html#hb-set-del">
507
+ <ANCHOR id="hb-set-del-range" href="harfbuzz/harfbuzz-hb-set.html#hb-set-del-range">
508
+ <ANCHOR id="hb-set-destroy" href="harfbuzz/harfbuzz-hb-set.html#hb-set-destroy">
509
+ <ANCHOR id="hb-set-get-empty" href="harfbuzz/harfbuzz-hb-set.html#hb-set-get-empty">
510
+ <ANCHOR id="hb-set-get-max" href="harfbuzz/harfbuzz-hb-set.html#hb-set-get-max">
511
+ <ANCHOR id="hb-set-get-min" href="harfbuzz/harfbuzz-hb-set.html#hb-set-get-min">
512
+ <ANCHOR id="hb-set-get-population" href="harfbuzz/harfbuzz-hb-set.html#hb-set-get-population">
513
+ <ANCHOR id="hb-set-get-user-data" href="harfbuzz/harfbuzz-hb-set.html#hb-set-get-user-data">
514
+ <ANCHOR id="hb-set-has" href="harfbuzz/harfbuzz-hb-set.html#hb-set-has">
515
+ <ANCHOR id="hb-set-intersect" href="harfbuzz/harfbuzz-hb-set.html#hb-set-intersect">
516
+ <ANCHOR id="hb-set-invert" href="harfbuzz/harfbuzz-hb-set.html#hb-set-invert">
517
+ <ANCHOR id="hb-set-is-empty" href="harfbuzz/harfbuzz-hb-set.html#hb-set-is-empty">
518
+ <ANCHOR id="hb-set-is-equal" href="harfbuzz/harfbuzz-hb-set.html#hb-set-is-equal">
519
+ <ANCHOR id="hb-set-next" href="harfbuzz/harfbuzz-hb-set.html#hb-set-next">
520
+ <ANCHOR id="hb-set-next-range" href="harfbuzz/harfbuzz-hb-set.html#hb-set-next-range">
521
+ <ANCHOR id="hb-set-reference" href="harfbuzz/harfbuzz-hb-set.html#hb-set-reference">
522
+ <ANCHOR id="hb-set-set" href="harfbuzz/harfbuzz-hb-set.html#hb-set-set">
523
+ <ANCHOR id="hb-set-set-user-data" href="harfbuzz/harfbuzz-hb-set.html#hb-set-set-user-data">
524
+ <ANCHOR id="hb-set-subtract" href="harfbuzz/harfbuzz-hb-set.html#hb-set-subtract">
525
+ <ANCHOR id="hb-set-symmetric-difference" href="harfbuzz/harfbuzz-hb-set.html#hb-set-symmetric-difference">
526
+ <ANCHOR id="hb-set-t" href="harfbuzz/harfbuzz-hb-set.html#hb-set-t">
527
+ <ANCHOR id="hb-set-union" href="harfbuzz/harfbuzz-hb-set.html#hb-set-union">
528
+ <ANCHOR id="harfbuzz-hb-ot" href="harfbuzz/harfbuzz-hb-ot.html">
529
+ <ANCHOR id="harfbuzz-hb-ot.synopsis" href="harfbuzz/harfbuzz-hb-ot.html#harfbuzz-hb-ot.synopsis">
530
+ <ANCHOR id="harfbuzz-hb-ot.description" href="harfbuzz/harfbuzz-hb-ot.html#harfbuzz-hb-ot.description">
531
+ <ANCHOR id="harfbuzz-hb-ot.details" href="harfbuzz/harfbuzz-hb-ot.html#harfbuzz-hb-ot.details">
532
+ <ANCHOR id="hb-ot-shape-glyphs-closure" href="harfbuzz/harfbuzz-hb-ot.html#hb-ot-shape-glyphs-closure">
533
+ <ANCHOR id="harfbuzz-hb-ot-layout" href="harfbuzz/harfbuzz-hb-ot-layout.html">
534
+ <ANCHOR id="harfbuzz-hb-ot-layout.synopsis" href="harfbuzz/harfbuzz-hb-ot-layout.html#harfbuzz-hb-ot-layout.synopsis">
535
+ <ANCHOR id="harfbuzz-hb-ot-layout.description" href="harfbuzz/harfbuzz-hb-ot-layout.html#harfbuzz-hb-ot-layout.description">
536
+ <ANCHOR id="harfbuzz-hb-ot-layout.details" href="harfbuzz/harfbuzz-hb-ot-layout.html#harfbuzz-hb-ot-layout.details">
537
+ <ANCHOR id="HB-OT-LAYOUT-DEFAULT-LANGUAGE-INDEX:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-LAYOUT-DEFAULT-LANGUAGE-INDEX:CAPS">
538
+ <ANCHOR id="HB-OT-LAYOUT-NO-FEATURE-INDEX:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-LAYOUT-NO-FEATURE-INDEX:CAPS">
539
+ <ANCHOR id="HB-OT-LAYOUT-NO-SCRIPT-INDEX:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-LAYOUT-NO-SCRIPT-INDEX:CAPS">
540
+ <ANCHOR id="HB-OT-TAG-GDEF:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-TAG-GDEF:CAPS">
541
+ <ANCHOR id="HB-OT-TAG-GPOS:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-TAG-GPOS:CAPS">
542
+ <ANCHOR id="HB-OT-TAG-GSUB:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-TAG-GSUB:CAPS">
543
+ <ANCHOR id="hb-ot-layout-collect-lookups" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-collect-lookups">
544
+ <ANCHOR id="hb-ot-layout-feature-get-lookups" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-feature-get-lookups">
545
+ <ANCHOR id="hb-ot-layout-get-attach-points" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-get-attach-points">
546
+ <ANCHOR id="hb-ot-layout-get-glyph-class" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-get-glyph-class">
547
+ <ANCHOR id="hb-ot-layout-get-glyphs-in-class" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-get-glyphs-in-class">
548
+ <ANCHOR id="hb-ot-layout-get-ligature-carets" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-get-ligature-carets">
549
+ <ANCHOR id="hb-ot-layout-get-size-params" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-get-size-params">
550
+ <ANCHOR id="hb-ot-layout-glyph-class-t" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-glyph-class-t">
551
+ <ANCHOR id="HB-OT-LAYOUT-GLYPH-CLASS-UNCLASSIFIED:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-LAYOUT-GLYPH-CLASS-UNCLASSIFIED:CAPS">
552
+ <ANCHOR id="HB-OT-LAYOUT-GLYPH-CLASS-BASE-GLYPH:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-LAYOUT-GLYPH-CLASS-BASE-GLYPH:CAPS">
553
+ <ANCHOR id="HB-OT-LAYOUT-GLYPH-CLASS-LIGATURE:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-LAYOUT-GLYPH-CLASS-LIGATURE:CAPS">
554
+ <ANCHOR id="HB-OT-LAYOUT-GLYPH-CLASS-MARK:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-LAYOUT-GLYPH-CLASS-MARK:CAPS">
555
+ <ANCHOR id="HB-OT-LAYOUT-GLYPH-CLASS-COMPONENT:CAPS" href="harfbuzz/harfbuzz-hb-ot-layout.html#HB-OT-LAYOUT-GLYPH-CLASS-COMPONENT:CAPS">
556
+ <ANCHOR id="hb-ot-layout-glyph-sequence-func-t" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-glyph-sequence-func-t">
557
+ <ANCHOR id="hb-ot-layout-has-glyph-classes" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-has-glyph-classes">
558
+ <ANCHOR id="hb-ot-layout-has-positioning" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-has-positioning">
559
+ <ANCHOR id="hb-ot-layout-has-substitution" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-has-substitution">
560
+ <ANCHOR id="hb-ot-layout-language-find-feature" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-language-find-feature">
561
+ <ANCHOR id="hb-ot-layout-language-get-feature-indexes" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-language-get-feature-indexes">
562
+ <ANCHOR id="hb-ot-layout-language-get-feature-tags" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-language-get-feature-tags">
563
+ <ANCHOR id="hb-ot-layout-language-get-required-feature-index" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-language-get-required-feature-index">
564
+ <ANCHOR id="hb-ot-layout-lookup-collect-glyphs" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-lookup-collect-glyphs">
565
+ <ANCHOR id="hb-ot-layout-lookup-substitute-closure" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-lookup-substitute-closure">
566
+ <ANCHOR id="hb-ot-layout-lookup-would-substitute" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-lookup-would-substitute">
567
+ <ANCHOR id="hb-ot-layout-script-find-language" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-script-find-language">
568
+ <ANCHOR id="hb-ot-layout-script-get-language-tags" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-script-get-language-tags">
569
+ <ANCHOR id="hb-ot-layout-table-choose-script" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-table-choose-script">
570
+ <ANCHOR id="hb-ot-layout-table-find-script" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-table-find-script">
571
+ <ANCHOR id="hb-ot-layout-table-get-feature-tags" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-table-get-feature-tags">
572
+ <ANCHOR id="hb-ot-layout-table-get-script-tags" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-layout-table-get-script-tags">
573
+ <ANCHOR id="hb-ot-shape-plan-collect-lookups" href="harfbuzz/harfbuzz-hb-ot-layout.html#hb-ot-shape-plan-collect-lookups">
574
+ <ANCHOR id="harfbuzz-hb-ot-tag" href="harfbuzz/harfbuzz-hb-ot-tag.html">
575
+ <ANCHOR id="harfbuzz-hb-ot-tag.synopsis" href="harfbuzz/harfbuzz-hb-ot-tag.html#harfbuzz-hb-ot-tag.synopsis">
576
+ <ANCHOR id="harfbuzz-hb-ot-tag.description" href="harfbuzz/harfbuzz-hb-ot-tag.html#harfbuzz-hb-ot-tag.description">
577
+ <ANCHOR id="harfbuzz-hb-ot-tag.details" href="harfbuzz/harfbuzz-hb-ot-tag.html#harfbuzz-hb-ot-tag.details">
578
+ <ANCHOR id="HB-OT-TAG-DEFAULT-LANGUAGE:CAPS" href="harfbuzz/harfbuzz-hb-ot-tag.html#HB-OT-TAG-DEFAULT-LANGUAGE:CAPS">
579
+ <ANCHOR id="HB-OT-TAG-DEFAULT-SCRIPT:CAPS" href="harfbuzz/harfbuzz-hb-ot-tag.html#HB-OT-TAG-DEFAULT-SCRIPT:CAPS">
580
+ <ANCHOR id="hb-ot-tag-from-language" href="harfbuzz/harfbuzz-hb-ot-tag.html#hb-ot-tag-from-language">
581
+ <ANCHOR id="hb-ot-tag-to-language" href="harfbuzz/harfbuzz-hb-ot-tag.html#hb-ot-tag-to-language">
582
+ <ANCHOR id="hb-ot-tag-to-script" href="harfbuzz/harfbuzz-hb-ot-tag.html#hb-ot-tag-to-script">
583
+ <ANCHOR id="hb-ot-tags-from-script" href="harfbuzz/harfbuzz-hb-ot-tag.html#hb-ot-tags-from-script">
584
+ <ANCHOR id="harfbuzz-hb-shape-plan" href="harfbuzz/harfbuzz-hb-shape-plan.html">
585
+ <ANCHOR id="harfbuzz-hb-shape-plan.synopsis" href="harfbuzz/harfbuzz-hb-shape-plan.html#harfbuzz-hb-shape-plan.synopsis">
586
+ <ANCHOR id="harfbuzz-hb-shape-plan.description" href="harfbuzz/harfbuzz-hb-shape-plan.html#harfbuzz-hb-shape-plan.description">
587
+ <ANCHOR id="harfbuzz-hb-shape-plan.details" href="harfbuzz/harfbuzz-hb-shape-plan.html#harfbuzz-hb-shape-plan.details">
588
+ <ANCHOR id="hb-shape-plan-create" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-create">
589
+ <ANCHOR id="hb-shape-plan-create-cached" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-create-cached">
590
+ <ANCHOR id="hb-shape-plan-destroy" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-destroy">
591
+ <ANCHOR id="hb-shape-plan-execute" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-execute">
592
+ <ANCHOR id="hb-shape-plan-get-empty" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-get-empty">
593
+ <ANCHOR id="hb-shape-plan-get-shaper" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-get-shaper">
594
+ <ANCHOR id="hb-shape-plan-get-user-data" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-get-user-data">
595
+ <ANCHOR id="hb-shape-plan-reference" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-reference">
596
+ <ANCHOR id="hb-shape-plan-set-user-data" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-set-user-data">
597
+ <ANCHOR id="hb-shape-plan-t" href="harfbuzz/harfbuzz-hb-shape-plan.html#hb-shape-plan-t">
598
+ <ANCHOR id="harfbuzz-hb-glib" href="harfbuzz/harfbuzz-hb-glib.html">
599
+ <ANCHOR id="harfbuzz-hb-glib.synopsis" href="harfbuzz/harfbuzz-hb-glib.html#harfbuzz-hb-glib.synopsis">
600
+ <ANCHOR id="harfbuzz-hb-glib.description" href="harfbuzz/harfbuzz-hb-glib.html#harfbuzz-hb-glib.description">
601
+ <ANCHOR id="harfbuzz-hb-glib.details" href="harfbuzz/harfbuzz-hb-glib.html#harfbuzz-hb-glib.details">
602
+ <ANCHOR id="hb-glib-get-unicode-funcs" href="harfbuzz/harfbuzz-hb-glib.html#hb-glib-get-unicode-funcs">
603
+ <ANCHOR id="hb-glib-script-from-script" href="harfbuzz/harfbuzz-hb-glib.html#hb-glib-script-from-script">
604
+ <ANCHOR id="hb-glib-script-to-script" href="harfbuzz/harfbuzz-hb-glib.html#hb-glib-script-to-script">
605
+ <ANCHOR id="harfbuzz-hb-icu" href="harfbuzz/harfbuzz-hb-icu.html">
606
+ <ANCHOR id="harfbuzz-hb-icu.synopsis" href="harfbuzz/harfbuzz-hb-icu.html#harfbuzz-hb-icu.synopsis">
607
+ <ANCHOR id="harfbuzz-hb-icu.description" href="harfbuzz/harfbuzz-hb-icu.html#harfbuzz-hb-icu.description">
608
+ <ANCHOR id="harfbuzz-hb-icu.details" href="harfbuzz/harfbuzz-hb-icu.html#harfbuzz-hb-icu.details">
609
+ <ANCHOR id="hb-icu-get-unicode-funcs" href="harfbuzz/harfbuzz-hb-icu.html#hb-icu-get-unicode-funcs">
610
+ <ANCHOR id="hb-icu-script-from-script" href="harfbuzz/harfbuzz-hb-icu.html#hb-icu-script-from-script">
611
+ <ANCHOR id="hb-icu-script-to-script" href="harfbuzz/harfbuzz-hb-icu.html#hb-icu-script-to-script">
612
+ <ANCHOR id="harfbuzz-hb-ft" href="harfbuzz/harfbuzz-hb-ft.html">
613
+ <ANCHOR id="harfbuzz-hb-ft.synopsis" href="harfbuzz/harfbuzz-hb-ft.html#harfbuzz-hb-ft.synopsis">
614
+ <ANCHOR id="harfbuzz-hb-ft.description" href="harfbuzz/harfbuzz-hb-ft.html#harfbuzz-hb-ft.description">
615
+ <ANCHOR id="harfbuzz-hb-ft.details" href="harfbuzz/harfbuzz-hb-ft.html#harfbuzz-hb-ft.details">
616
+ <ANCHOR id="hb-ft-face-create" href="harfbuzz/harfbuzz-hb-ft.html#hb-ft-face-create">
617
+ <ANCHOR id="hb-ft-face-create-cached" href="harfbuzz/harfbuzz-hb-ft.html#hb-ft-face-create-cached">
618
+ <ANCHOR id="hb-ft-font-create" href="harfbuzz/harfbuzz-hb-ft.html#hb-ft-font-create">
619
+ <ANCHOR id="hb-ft-font-get-face" href="harfbuzz/harfbuzz-hb-ft.html#hb-ft-font-get-face">
620
+ <ANCHOR id="hb-ft-font-set-funcs" href="harfbuzz/harfbuzz-hb-ft.html#hb-ft-font-set-funcs">
621
+ <ANCHOR id="harfbuzz-hb-graphite2" href="harfbuzz/harfbuzz-hb-graphite2.html">
622
+ <ANCHOR id="harfbuzz-hb-graphite2.synopsis" href="harfbuzz/harfbuzz-hb-graphite2.html#harfbuzz-hb-graphite2.synopsis">
623
+ <ANCHOR id="harfbuzz-hb-graphite2.description" href="harfbuzz/harfbuzz-hb-graphite2.html#harfbuzz-hb-graphite2.description">
624
+ <ANCHOR id="harfbuzz-hb-graphite2.details" href="harfbuzz/harfbuzz-hb-graphite2.html#harfbuzz-hb-graphite2.details">
625
+ <ANCHOR id="HB-GRAPHITE2-TAG-SILF:CAPS" href="harfbuzz/harfbuzz-hb-graphite2.html#HB-GRAPHITE2-TAG-SILF:CAPS">
626
+ <ANCHOR id="hb-graphite2-face-get-gr-face" href="harfbuzz/harfbuzz-hb-graphite2.html#hb-graphite2-face-get-gr-face">
627
+ <ANCHOR id="hb-graphite2-font-get-gr-font" href="harfbuzz/harfbuzz-hb-graphite2.html#hb-graphite2-font-get-gr-font">
628
+ <ANCHOR id="harfbuzz-hb-uniscribe" href="harfbuzz/harfbuzz-hb-uniscribe.html">
629
+ <ANCHOR id="harfbuzz-hb-uniscribe.synopsis" href="harfbuzz/harfbuzz-hb-uniscribe.html#harfbuzz-hb-uniscribe.synopsis">
630
+ <ANCHOR id="harfbuzz-hb-uniscribe.description" href="harfbuzz/harfbuzz-hb-uniscribe.html#harfbuzz-hb-uniscribe.description">
631
+ <ANCHOR id="harfbuzz-hb-uniscribe.details" href="harfbuzz/harfbuzz-hb-uniscribe.html#harfbuzz-hb-uniscribe.details">
632
+ <ANCHOR id="hb-uniscribe-font-get-hfont" href="harfbuzz/harfbuzz-hb-uniscribe.html#hb-uniscribe-font-get-hfont">
633
+ <ANCHOR id="hb-uniscribe-font-get-logfontw" href="harfbuzz/harfbuzz-hb-uniscribe.html#hb-uniscribe-font-get-logfontw">
634
+ <ANCHOR id="harfbuzz-hb-coretext" href="harfbuzz/harfbuzz-hb-coretext.html">
635
+ <ANCHOR id="harfbuzz-hb-coretext.synopsis" href="harfbuzz/harfbuzz-hb-coretext.html#harfbuzz-hb-coretext.synopsis">
636
+ <ANCHOR id="harfbuzz-hb-coretext.description" href="harfbuzz/harfbuzz-hb-coretext.html#harfbuzz-hb-coretext.description">
637
+ <ANCHOR id="harfbuzz-hb-coretext.details" href="harfbuzz/harfbuzz-hb-coretext.html#harfbuzz-hb-coretext.details">
638
+ <ANCHOR id="hb-coretext-face-get-cg-font" href="harfbuzz/harfbuzz-hb-coretext.html#hb-coretext-face-get-cg-font">
639
+ <ANCHOR id="hb-coretext-font-get-ct-font" href="harfbuzz/harfbuzz-hb-coretext.html#hb-coretext-font-get-ct-font">
640
+ <ANCHOR id="harfbuzz-hb-gobject" href="harfbuzz/harfbuzz-hb-gobject.html">
641
+ <ANCHOR id="harfbuzz-hb-gobject.synopsis" href="harfbuzz/harfbuzz-hb-gobject.html#harfbuzz-hb-gobject.synopsis">
642
+ <ANCHOR id="harfbuzz-hb-gobject.description" href="harfbuzz/harfbuzz-hb-gobject.html#harfbuzz-hb-gobject.description">
643
+ <ANCHOR id="harfbuzz-hb-gobject.details" href="harfbuzz/harfbuzz-hb-gobject.html#harfbuzz-hb-gobject.details">
644
+ <ANCHOR id="annotation-glossterm-array" href="harfbuzz/annotation-glossary.html#annotation-glossterm-array">
645
+ <ANCHOR id="annotation-glossterm-out" href="harfbuzz/annotation-glossary.html#annotation-glossterm-out">
646
+ <ANCHOR id="annotation-glossterm-inout" href="harfbuzz/annotation-glossary.html#annotation-glossterm-inout">
647
+ <ANCHOR id="annotation-glossterm-transfer full" href="harfbuzz/annotation-glossary.html#annotation-glossterm-transfer full">
648
+ <ANCHOR id="annotation-glossterm-closure" href="harfbuzz/annotation-glossary.html#annotation-glossterm-closure">
649
+ <ANCHOR id="annotation-glossterm-scope notified" href="harfbuzz/annotation-glossary.html#annotation-glossterm-scope notified">
650
+ <ANCHOR id="annotation-glossterm-transfer none" href="harfbuzz/annotation-glossary.html#annotation-glossterm-transfer none">