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>hb-ot-tag</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="up" href="ch01.html" title="[Insert title here]">
9
+ <link rel="prev" href="harfbuzz-hb-ot-layout.html" title="hb-ot-layout">
10
+ <link rel="next" href="harfbuzz-hb-shape-plan.html" title="hb-shape-plan">
11
+ <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
16
+ <td width="100%" align="left">
17
+ <a href="#" class="shortcut">Top</a>
18
+  | 
19
+ <a href="#harfbuzz-hb-ot-tag.description" class="shortcut">Description</a>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="harfbuzz-hb-ot-layout.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="harfbuzz-hb-shape-plan.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="harfbuzz-hb-ot-tag"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="harfbuzz-hb-ot-tag.top_of_page"></a>hb-ot-tag</span></h2>
31
+ <p>hb-ot-tag</p>
32
+ </td>
33
+ <td valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsynopsisdiv">
36
+ <a name="harfbuzz-hb-ot-tag.synopsis"></a><h2>Synopsis</h2>
37
+ <pre class="synopsis">#define <a class="link" href="harfbuzz-hb-ot-tag.html#HB-OT-TAG-DEFAULT-LANGUAGE:CAPS" title="HB_OT_TAG_DEFAULT_LANGUAGE">HB_OT_TAG_DEFAULT_LANGUAGE</a>
38
+ #define <a class="link" href="harfbuzz-hb-ot-tag.html#HB-OT-TAG-DEFAULT-SCRIPT:CAPS" title="HB_OT_TAG_DEFAULT_SCRIPT">HB_OT_TAG_DEFAULT_SCRIPT</a>
39
+ <a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="returnvalue">hb_tag_t</span></a> <a class="link" href="harfbuzz-hb-ot-tag.html#hb-ot-tag-from-language" title="hb_ot_tag_from_language ()">hb_ot_tag_from_language</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-language-t" title="hb_language_t"><span class="type">hb_language_t</span></a> language</code></em>);
40
+ <a class="link" href="harfbuzz-hb-common.html#hb-language-t" title="hb_language_t"><span class="returnvalue">hb_language_t</span></a> <a class="link" href="harfbuzz-hb-ot-tag.html#hb-ot-tag-to-language" title="hb_ot_tag_to_language ()">hb_ot_tag_to_language</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> tag</code></em>);
41
+ <a class="link" href="harfbuzz-hb-common.html#hb-script-t" title="enum hb_script_t"><span class="returnvalue">hb_script_t</span></a> <a class="link" href="harfbuzz-hb-ot-tag.html#hb-ot-tag-to-script" title="hb_ot_tag_to_script ()">hb_ot_tag_to_script</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> tag</code></em>);
42
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-ot-tag.html#hb-ot-tags-from-script" title="hb_ot_tags_from_script ()">hb_ot_tags_from_script</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-script-t" title="enum hb_script_t"><span class="type">hb_script_t</span></a> script</code></em>,
43
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> *script_tag_1</code></em>,
44
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> *script_tag_2</code></em>);
45
+ </pre>
46
+ </div>
47
+ <div class="refsect1">
48
+ <a name="harfbuzz-hb-ot-tag.description"></a><h2>Description</h2>
49
+ <p>
50
+ </p>
51
+ </div>
52
+ <div class="refsect1">
53
+ <a name="harfbuzz-hb-ot-tag.details"></a><h2>Details</h2>
54
+ <div class="refsect2">
55
+ <a name="HB-OT-TAG-DEFAULT-LANGUAGE:CAPS"></a><h3>HB_OT_TAG_DEFAULT_LANGUAGE</h3>
56
+ <pre class="programlisting">#define HB_OT_TAG_DEFAULT_LANGUAGE HB_TAG ('d', 'f', 'l', 't')
57
+ </pre>
58
+ <p>
59
+ </p>
60
+ </div>
61
+ <hr>
62
+ <div class="refsect2">
63
+ <a name="HB-OT-TAG-DEFAULT-SCRIPT:CAPS"></a><h3>HB_OT_TAG_DEFAULT_SCRIPT</h3>
64
+ <pre class="programlisting">#define HB_OT_TAG_DEFAULT_SCRIPT HB_TAG ('D', 'F', 'L', 'T')
65
+ </pre>
66
+ <p>
67
+ </p>
68
+ </div>
69
+ <hr>
70
+ <div class="refsect2">
71
+ <a name="hb-ot-tag-from-language"></a><h3>hb_ot_tag_from_language ()</h3>
72
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="returnvalue">hb_tag_t</span></a> hb_ot_tag_from_language (<em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-language-t" title="hb_language_t"><span class="type">hb_language_t</span></a> language</code></em>);</pre>
73
+ <p>
74
+ </p>
75
+ </div>
76
+ <hr>
77
+ <div class="refsect2">
78
+ <a name="hb-ot-tag-to-language"></a><h3>hb_ot_tag_to_language ()</h3>
79
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-language-t" title="hb_language_t"><span class="returnvalue">hb_language_t</span></a> hb_ot_tag_to_language (<em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> tag</code></em>);</pre>
80
+ <p>
81
+ </p>
82
+ </div>
83
+ <hr>
84
+ <div class="refsect2">
85
+ <a name="hb-ot-tag-to-script"></a><h3>hb_ot_tag_to_script ()</h3>
86
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-script-t" title="enum hb_script_t"><span class="returnvalue">hb_script_t</span></a> hb_ot_tag_to_script (<em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> tag</code></em>);</pre>
87
+ <p>
88
+ </p>
89
+ </div>
90
+ <hr>
91
+ <div class="refsect2">
92
+ <a name="hb-ot-tags-from-script"></a><h3>hb_ot_tags_from_script ()</h3>
93
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_ot_tags_from_script (<em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-script-t" title="enum hb_script_t"><span class="type">hb_script_t</span></a> script</code></em>,
94
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> *script_tag_1</code></em>,
95
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> *script_tag_2</code></em>);</pre>
96
+ <p>
97
+ </p>
98
+ </div>
99
+ </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,67 @@
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>hb-ot</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="up" href="ch01.html" title="[Insert title here]">
9
+ <link rel="prev" href="harfbuzz-hb-set.html" title="hb-set">
10
+ <link rel="next" href="harfbuzz-hb-ot-layout.html" title="hb-ot-layout">
11
+ <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
16
+ <td width="100%" align="left">
17
+ <a href="#" class="shortcut">Top</a>
18
+  | 
19
+ <a href="#harfbuzz-hb-ot.description" class="shortcut">Description</a>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="harfbuzz-hb-set.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="harfbuzz-hb-ot-layout.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="harfbuzz-hb-ot"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="harfbuzz-hb-ot.top_of_page"></a>hb-ot</span></h2>
31
+ <p>hb-ot</p>
32
+ </td>
33
+ <td valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsynopsisdiv">
36
+ <a name="harfbuzz-hb-ot.synopsis"></a><h2>Synopsis</h2>
37
+ <pre class="synopsis"><span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-ot.html#hb-ot-shape-glyphs-closure" title="hb_ot_shape_glyphs_closure ()">hb_ot_shape_glyphs_closure</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
38
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-buffer.html#hb-buffer-t" title="hb_buffer_t"><span class="type">hb_buffer_t</span></a> *buffer</code></em>,
39
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-shape.html#hb-feature-t" title="hb_feature_t"><span class="type">hb_feature_t</span></a> *features</code></em>,
40
+ <em class="parameter"><code>unsigned <span class="type">int</span> num_features</code></em>,
41
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *glyphs</code></em>);
42
+ </pre>
43
+ </div>
44
+ <div class="refsect1">
45
+ <a name="harfbuzz-hb-ot.description"></a><h2>Description</h2>
46
+ <p>
47
+ </p>
48
+ </div>
49
+ <div class="refsect1">
50
+ <a name="harfbuzz-hb-ot.details"></a><h2>Details</h2>
51
+ <div class="refsect2">
52
+ <a name="hb-ot-shape-glyphs-closure"></a><h3>hb_ot_shape_glyphs_closure ()</h3>
53
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_ot_shape_glyphs_closure (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
54
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-buffer.html#hb-buffer-t" title="hb_buffer_t"><span class="type">hb_buffer_t</span></a> *buffer</code></em>,
55
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-shape.html#hb-feature-t" title="hb_feature_t"><span class="type">hb_feature_t</span></a> *features</code></em>,
56
+ <em class="parameter"><code>unsigned <span class="type">int</span> num_features</code></em>,
57
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *glyphs</code></em>);</pre>
58
+ <p>
59
+ </p>
60
+ </div>
61
+ </div>
62
+ </div>
63
+ <div class="footer">
64
+ <hr>
65
+ Generated by GTK-Doc V1.19.1</div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,540 @@
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>hb-set</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="up" href="ch01.html" title="[Insert title here]">
9
+ <link rel="prev" href="harfbuzz-hb-deprecated.html" title="hb-deprecated">
10
+ <link rel="next" href="harfbuzz-hb-ot.html" title="hb-ot">
11
+ <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
16
+ <td width="100%" align="left">
17
+ <a href="#" class="shortcut">Top</a>
18
+  | 
19
+ <a href="#harfbuzz-hb-set.description" class="shortcut">Description</a>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="harfbuzz-hb-deprecated.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="harfbuzz-hb-ot.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="harfbuzz-hb-set"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="harfbuzz-hb-set.top_of_page"></a>hb-set</span></h2>
31
+ <p>hb-set</p>
32
+ </td>
33
+ <td valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsynopsisdiv">
36
+ <a name="harfbuzz-hb-set.synopsis"></a><h2>Synopsis</h2>
37
+ <pre class="synopsis"><span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-add" title="hb_set_add ()">hb_set_add</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
38
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> codepoint</code></em>);
39
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-add-range" title="hb_set_add_range ()">hb_set_add_range</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
40
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> first</code></em>,
41
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> last</code></em>);
42
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-allocation-successful" title="hb_set_allocation_successful ()">hb_set_allocation_successful</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
43
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-clear" title="hb_set_clear ()">hb_set_clear</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
44
+ <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="returnvalue">hb_set_t</span></a> * <a class="link" href="harfbuzz-hb-set.html#hb-set-create" title="hb_set_create ()">hb_set_create</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
45
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-del" title="hb_set_del ()">hb_set_del</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
46
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> codepoint</code></em>);
47
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-del-range" title="hb_set_del_range ()">hb_set_del_range</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
48
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> first</code></em>,
49
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> last</code></em>);
50
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-destroy" title="hb_set_destroy ()">hb_set_destroy</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
51
+ <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="returnvalue">hb_set_t</span></a> * <a class="link" href="harfbuzz-hb-set.html#hb-set-get-empty" title="hb_set_get_empty ()">hb_set_get_empty</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
52
+ <a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="returnvalue">hb_codepoint_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-get-max" title="hb_set_get_max ()">hb_set_get_max</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
53
+ <a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="returnvalue">hb_codepoint_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-get-min" title="hb_set_get_min ()">hb_set_get_min</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
54
+ unsigned <span class="returnvalue">int</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-get-population" title="hb_set_get_population ()">hb_set_get_population</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
55
+ <span class="returnvalue">void</span> * <a class="link" href="harfbuzz-hb-set.html#hb-set-get-user-data" title="hb_set_get_user_data ()">hb_set_get_user_data</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
56
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>);
57
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-has" title="hb_set_has ()">hb_set_has</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
58
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> codepoint</code></em>);
59
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-intersect" title="hb_set_intersect ()">hb_set_intersect</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
60
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);
61
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-invert" title="hb_set_invert ()">hb_set_invert</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
62
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-is-empty" title="hb_set_is_empty ()">hb_set_is_empty</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
63
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-is-equal" title="hb_set_is_equal ()">hb_set_is_equal</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
64
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);
65
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-next" title="hb_set_next ()">hb_set_next</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
66
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *codepoint</code></em>);
67
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-next-range" title="hb_set_next_range ()">hb_set_next_range</a> (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
68
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *first</code></em>,
69
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *last</code></em>);
70
+ <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="returnvalue">hb_set_t</span></a> * <a class="link" href="harfbuzz-hb-set.html#hb-set-reference" title="hb_set_reference ()">hb_set_reference</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);
71
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-set" title="hb_set_set ()">hb_set_set</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
72
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);
73
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-set.html#hb-set-set-user-data" title="hb_set_set_user_data ()">hb_set_set_user_data</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
74
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>,
75
+ <em class="parameter"><code><span class="type">void</span> *data</code></em>,
76
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>,
77
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="type">hb_bool_t</span></a> replace</code></em>);
78
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-subtract" title="hb_set_subtract ()">hb_set_subtract</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
79
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);
80
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-symmetric-difference" title="hb_set_symmetric_difference ()">hb_set_symmetric_difference</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
81
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);
82
+ typedef <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t">hb_set_t</a>;
83
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-set.html#hb-set-union" title="hb_set_union ()">hb_set_union</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
84
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);
85
+ </pre>
86
+ </div>
87
+ <div class="refsect1">
88
+ <a name="harfbuzz-hb-set.description"></a><h2>Description</h2>
89
+ <p>
90
+ </p>
91
+ </div>
92
+ <div class="refsect1">
93
+ <a name="harfbuzz-hb-set.details"></a><h2>Details</h2>
94
+ <div class="refsect2">
95
+ <a name="hb-set-add"></a><h3>hb_set_add ()</h3>
96
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_add (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
97
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> codepoint</code></em>);</pre>
98
+ <div class="variablelist"><table border="0">
99
+ <col align="left" valign="top">
100
+ <tbody><tr>
101
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
102
+ <td>a set.</td>
103
+ </tr></tbody>
104
+ </table></div>
105
+ <p class="since">Since 1.0</p>
106
+ </div>
107
+ <hr>
108
+ <div class="refsect2">
109
+ <a name="hb-set-add-range"></a><h3>hb_set_add_range ()</h3>
110
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_add_range (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
111
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> first</code></em>,
112
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> last</code></em>);</pre>
113
+ <div class="variablelist"><table border="0">
114
+ <col align="left" valign="top">
115
+ <tbody><tr>
116
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
117
+ <td>a set.</td>
118
+ </tr></tbody>
119
+ </table></div>
120
+ <p class="since">Since 1.0</p>
121
+ </div>
122
+ <hr>
123
+ <div class="refsect2">
124
+ <a name="hb-set-allocation-successful"></a><h3>hb_set_allocation_successful ()</h3>
125
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_set_allocation_successful (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
126
+ <div class="variablelist"><table border="0">
127
+ <col align="left" valign="top">
128
+ <tbody><tr>
129
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
130
+ <td>a set.</td>
131
+ </tr></tbody>
132
+ </table></div>
133
+ <p class="since">Since 1.0</p>
134
+ </div>
135
+ <hr>
136
+ <div class="refsect2">
137
+ <a name="hb-set-clear"></a><h3>hb_set_clear ()</h3>
138
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_clear (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
139
+ <div class="variablelist"><table border="0">
140
+ <col align="left" valign="top">
141
+ <tbody><tr>
142
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
143
+ <td>a set.</td>
144
+ </tr></tbody>
145
+ </table></div>
146
+ <p class="since">Since 1.0</p>
147
+ </div>
148
+ <hr>
149
+ <div class="refsect2">
150
+ <a name="hb-set-create"></a><h3>hb_set_create ()</h3>
151
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="returnvalue">hb_set_t</span></a> * hb_set_create (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
152
+ <p>
153
+ </p>
154
+ </div>
155
+ <hr>
156
+ <div class="refsect2">
157
+ <a name="hb-set-del"></a><h3>hb_set_del ()</h3>
158
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_del (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
159
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> codepoint</code></em>);</pre>
160
+ <div class="variablelist"><table border="0">
161
+ <col align="left" valign="top">
162
+ <tbody><tr>
163
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
164
+ <td>a set.</td>
165
+ </tr></tbody>
166
+ </table></div>
167
+ <p class="since">Since 1.0</p>
168
+ </div>
169
+ <hr>
170
+ <div class="refsect2">
171
+ <a name="hb-set-del-range"></a><h3>hb_set_del_range ()</h3>
172
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_del_range (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
173
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> first</code></em>,
174
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> last</code></em>);</pre>
175
+ <div class="variablelist"><table border="0">
176
+ <col align="left" valign="top">
177
+ <tbody><tr>
178
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
179
+ <td>a set.</td>
180
+ </tr></tbody>
181
+ </table></div>
182
+ <p class="since">Since 1.0</p>
183
+ </div>
184
+ <hr>
185
+ <div class="refsect2">
186
+ <a name="hb-set-destroy"></a><h3>hb_set_destroy ()</h3>
187
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_destroy (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
188
+ <div class="variablelist"><table border="0">
189
+ <col align="left" valign="top">
190
+ <tbody><tr>
191
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
192
+ <td>a set.</td>
193
+ </tr></tbody>
194
+ </table></div>
195
+ <p class="since">Since 1.0</p>
196
+ </div>
197
+ <hr>
198
+ <div class="refsect2">
199
+ <a name="hb-set-get-empty"></a><h3>hb_set_get_empty ()</h3>
200
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="returnvalue">hb_set_t</span></a> * hb_set_get_empty (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
201
+ <div class="variablelist"><table border="0">
202
+ <col align="left" valign="top">
203
+ <tbody><tr>
204
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
205
+ <td>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
206
+ </td>
207
+ </tr></tbody>
208
+ </table></div>
209
+ <p class="since">Since 1.0</p>
210
+ </div>
211
+ <hr>
212
+ <div class="refsect2">
213
+ <a name="hb-set-get-max"></a><h3>hb_set_get_max ()</h3>
214
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="returnvalue">hb_codepoint_t</span></a> hb_set_get_max (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
215
+ <p>
216
+ Finds the maximum number in the set.
217
+ </p>
218
+ <div class="variablelist"><table border="0">
219
+ <col align="left" valign="top">
220
+ <tbody>
221
+ <tr>
222
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
223
+ <td>a set.</td>
224
+ </tr>
225
+ <tr>
226
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
227
+ <td>minimum of the set, or <code class="literal">HB_SET_VALUE_INVALID</code> if set is empty.</td>
228
+ </tr>
229
+ </tbody>
230
+ </table></div>
231
+ <p class="since">Since 1.0</p>
232
+ </div>
233
+ <hr>
234
+ <div class="refsect2">
235
+ <a name="hb-set-get-min"></a><h3>hb_set_get_min ()</h3>
236
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="returnvalue">hb_codepoint_t</span></a> hb_set_get_min (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
237
+ <p>
238
+ Finds the minimum number in the set.
239
+ </p>
240
+ <div class="variablelist"><table border="0">
241
+ <col align="left" valign="top">
242
+ <tbody>
243
+ <tr>
244
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
245
+ <td>a set.</td>
246
+ </tr>
247
+ <tr>
248
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
249
+ <td>minimum of the set, or <code class="literal">HB_SET_VALUE_INVALID</code> if set is empty.</td>
250
+ </tr>
251
+ </tbody>
252
+ </table></div>
253
+ <p class="since">Since 1.0</p>
254
+ </div>
255
+ <hr>
256
+ <div class="refsect2">
257
+ <a name="hb-set-get-population"></a><h3>hb_set_get_population ()</h3>
258
+ <pre class="programlisting">unsigned <span class="returnvalue">int</span> hb_set_get_population (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
259
+ <p>
260
+ Returns the number of numbers in the set.
261
+ </p>
262
+ <div class="variablelist"><table border="0">
263
+ <col align="left" valign="top">
264
+ <tbody>
265
+ <tr>
266
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
267
+ <td>a set.</td>
268
+ </tr>
269
+ <tr>
270
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
271
+ <td>set population.</td>
272
+ </tr>
273
+ </tbody>
274
+ </table></div>
275
+ <p class="since">Since 1.0</p>
276
+ </div>
277
+ <hr>
278
+ <div class="refsect2">
279
+ <a name="hb-set-get-user-data"></a><h3>hb_set_get_user_data ()</h3>
280
+ <pre class="programlisting"><span class="returnvalue">void</span> * hb_set_get_user_data (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
281
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>);</pre>
282
+ <div class="variablelist"><table border="0">
283
+ <col align="left" valign="top">
284
+ <tbody>
285
+ <tr>
286
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
287
+ <td>a set.</td>
288
+ </tr>
289
+ <tr>
290
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
291
+ <td>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
292
+ </td>
293
+ </tr>
294
+ </tbody>
295
+ </table></div>
296
+ <p class="since">Since 1.0</p>
297
+ </div>
298
+ <hr>
299
+ <div class="refsect2">
300
+ <a name="hb-set-has"></a><h3>hb_set_has ()</h3>
301
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_set_has (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
302
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> codepoint</code></em>);</pre>
303
+ <div class="variablelist"><table border="0">
304
+ <col align="left" valign="top">
305
+ <tbody><tr>
306
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
307
+ <td>a set.</td>
308
+ </tr></tbody>
309
+ </table></div>
310
+ <p class="since">Since 1.0</p>
311
+ </div>
312
+ <hr>
313
+ <div class="refsect2">
314
+ <a name="hb-set-intersect"></a><h3>hb_set_intersect ()</h3>
315
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_intersect (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
316
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);</pre>
317
+ <div class="variablelist"><table border="0">
318
+ <col align="left" valign="top">
319
+ <tbody><tr>
320
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
321
+ <td>a set.</td>
322
+ </tr></tbody>
323
+ </table></div>
324
+ <p class="since">Since 1.0</p>
325
+ </div>
326
+ <hr>
327
+ <div class="refsect2">
328
+ <a name="hb-set-invert"></a><h3>hb_set_invert ()</h3>
329
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_invert (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
330
+ <div class="variablelist"><table border="0">
331
+ <col align="left" valign="top">
332
+ <tbody><tr>
333
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
334
+ <td>a set.</td>
335
+ </tr></tbody>
336
+ </table></div>
337
+ <p class="since">Since 1.0</p>
338
+ </div>
339
+ <hr>
340
+ <div class="refsect2">
341
+ <a name="hb-set-is-empty"></a><h3>hb_set_is_empty ()</h3>
342
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_set_is_empty (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
343
+ <div class="variablelist"><table border="0">
344
+ <col align="left" valign="top">
345
+ <tbody><tr>
346
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
347
+ <td>a set.</td>
348
+ </tr></tbody>
349
+ </table></div>
350
+ <p class="since">Since 1.0</p>
351
+ </div>
352
+ <hr>
353
+ <div class="refsect2">
354
+ <a name="hb-set-is-equal"></a><h3>hb_set_is_equal ()</h3>
355
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_set_is_equal (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
356
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);</pre>
357
+ <div class="variablelist"><table border="0">
358
+ <col align="left" valign="top">
359
+ <tbody><tr>
360
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
361
+ <td>a set.</td>
362
+ </tr></tbody>
363
+ </table></div>
364
+ <p class="since">Since 1.0</p>
365
+ </div>
366
+ <hr>
367
+ <div class="refsect2">
368
+ <a name="hb-set-next"></a><h3>hb_set_next ()</h3>
369
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_set_next (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
370
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *codepoint</code></em>);</pre>
371
+ <div class="variablelist"><table border="0">
372
+ <col align="left" valign="top">
373
+ <tbody>
374
+ <tr>
375
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
376
+ <td>a set.</td>
377
+ </tr>
378
+ <tr>
379
+ <td><p><span class="term"><em class="parameter"><code>codepoint</code></em> :</span></p></td>
380
+ <td>. <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
381
+ </td>
382
+ </tr>
383
+ <tr>
384
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
385
+ <td>whether there was a next value.</td>
386
+ </tr>
387
+ </tbody>
388
+ </table></div>
389
+ <p class="since">Since 1.0</p>
390
+ </div>
391
+ <hr>
392
+ <div class="refsect2">
393
+ <a name="hb-set-next-range"></a><h3>hb_set_next_range ()</h3>
394
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_set_next_range (<em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
395
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *first</code></em>,
396
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *last</code></em>);</pre>
397
+ <p>
398
+ Gets the next consecutive range of numbers in <em class="parameter"><code>set</code></em> that
399
+ are greater than current value of <em class="parameter"><code>last</code></em>.
400
+ </p>
401
+ <div class="variablelist"><table border="0">
402
+ <col align="left" valign="top">
403
+ <tbody>
404
+ <tr>
405
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
406
+ <td>a set.</td>
407
+ </tr>
408
+ <tr>
409
+ <td><p><span class="term"><em class="parameter"><code>first</code></em> :</span></p></td>
410
+ <td>output first codepoint in the range. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
411
+ </td>
412
+ </tr>
413
+ <tr>
414
+ <td><p><span class="term"><em class="parameter"><code>last</code></em> :</span></p></td>
415
+ <td>input current last and output last codepoint in the range. <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
416
+ </td>
417
+ </tr>
418
+ <tr>
419
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
420
+ <td>whether there was a next range.</td>
421
+ </tr>
422
+ </tbody>
423
+ </table></div>
424
+ <p class="since">Since 1.0</p>
425
+ </div>
426
+ <hr>
427
+ <div class="refsect2">
428
+ <a name="hb-set-reference"></a><h3>hb_set_reference ()</h3>
429
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="returnvalue">hb_set_t</span></a> * hb_set_reference (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>);</pre>
430
+ <div class="variablelist"><table border="0">
431
+ <col align="left" valign="top">
432
+ <tbody>
433
+ <tr>
434
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
435
+ <td>a set.</td>
436
+ </tr>
437
+ <tr>
438
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
439
+ <td>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
440
+ </td>
441
+ </tr>
442
+ </tbody>
443
+ </table></div>
444
+ <p class="since">Since 1.0</p>
445
+ </div>
446
+ <hr>
447
+ <div class="refsect2">
448
+ <a name="hb-set-set"></a><h3>hb_set_set ()</h3>
449
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_set (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
450
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);</pre>
451
+ <div class="variablelist"><table border="0">
452
+ <col align="left" valign="top">
453
+ <tbody><tr>
454
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
455
+ <td>a set.</td>
456
+ </tr></tbody>
457
+ </table></div>
458
+ <p class="since">Since 1.0</p>
459
+ </div>
460
+ <hr>
461
+ <div class="refsect2">
462
+ <a name="hb-set-set-user-data"></a><h3>hb_set_set_user_data ()</h3>
463
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_set_set_user_data (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
464
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>,
465
+ <em class="parameter"><code><span class="type">void</span> *data</code></em>,
466
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>,
467
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="type">hb_bool_t</span></a> replace</code></em>);</pre>
468
+ <div class="variablelist"><table border="0">
469
+ <col align="left" valign="top">
470
+ <tbody>
471
+ <tr>
472
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
473
+ <td>a set.</td>
474
+ </tr>
475
+ <tr>
476
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
477
+ <td>
478
+ <em class="parameter"><code>destroy</code></em> (closure data):</td>
479
+ </tr>
480
+ </tbody>
481
+ </table></div>
482
+ <p class="since">Since 1.0</p>
483
+ </div>
484
+ <hr>
485
+ <div class="refsect2">
486
+ <a name="hb-set-subtract"></a><h3>hb_set_subtract ()</h3>
487
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_subtract (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
488
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);</pre>
489
+ <div class="variablelist"><table border="0">
490
+ <col align="left" valign="top">
491
+ <tbody><tr>
492
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
493
+ <td>a set.</td>
494
+ </tr></tbody>
495
+ </table></div>
496
+ <p class="since">Since 1.0</p>
497
+ </div>
498
+ <hr>
499
+ <div class="refsect2">
500
+ <a name="hb-set-symmetric-difference"></a><h3>hb_set_symmetric_difference ()</h3>
501
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_symmetric_difference (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
502
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);</pre>
503
+ <div class="variablelist"><table border="0">
504
+ <col align="left" valign="top">
505
+ <tbody><tr>
506
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
507
+ <td>a set.</td>
508
+ </tr></tbody>
509
+ </table></div>
510
+ <p class="since">Since 1.0</p>
511
+ </div>
512
+ <hr>
513
+ <div class="refsect2">
514
+ <a name="hb-set-t"></a><h3>hb_set_t</h3>
515
+ <pre class="programlisting">typedef struct hb_set_t hb_set_t;
516
+ </pre>
517
+ <p>
518
+ </p>
519
+ </div>
520
+ <hr>
521
+ <div class="refsect2">
522
+ <a name="hb-set-union"></a><h3>hb_set_union ()</h3>
523
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_set_union (<em class="parameter"><code><a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *set</code></em>,
524
+ <em class="parameter"><code>const <a class="link" href="harfbuzz-hb-set.html#hb-set-t" title="hb_set_t"><span class="type">hb_set_t</span></a> *other</code></em>);</pre>
525
+ <div class="variablelist"><table border="0">
526
+ <col align="left" valign="top">
527
+ <tbody><tr>
528
+ <td><p><span class="term"><em class="parameter"><code>set</code></em> :</span></p></td>
529
+ <td>a set.</td>
530
+ </tr></tbody>
531
+ </table></div>
532
+ <p class="since">Since 1.0</p>
533
+ </div>
534
+ </div>
535
+ </div>
536
+ <div class="footer">
537
+ <hr>
538
+ Generated by GTK-Doc V1.19.1</div>
539
+ </body>
540
+ </html>