glib2 0.90.2-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (875) hide show
  1. data/ChangeLog +3115 -0
  2. data/README +40 -0
  3. data/Rakefile +69 -0
  4. data/ext/glib2/depend +10 -0
  5. data/ext/glib2/extconf.rb +61 -0
  6. data/ext/glib2/glib2.def +89 -0
  7. data/ext/glib2/rbgcompat.h +30 -0
  8. data/ext/glib2/rbglib.c +330 -0
  9. data/ext/glib2/rbglib.h +96 -0
  10. data/ext/glib2/rbglib_bookmarkfile.c +595 -0
  11. data/ext/glib2/rbglib_completion.c +192 -0
  12. data/ext/glib2/rbglib_convert.c +195 -0
  13. data/ext/glib2/rbglib_error.c +95 -0
  14. data/ext/glib2/rbglib_fileutils.c +83 -0
  15. data/ext/glib2/rbglib_i18n.c +44 -0
  16. data/ext/glib2/rbglib_int64.c +157 -0
  17. data/ext/glib2/rbglib_iochannel.c +883 -0
  18. data/ext/glib2/rbglib_keyfile.c +846 -0
  19. data/ext/glib2/rbglib_maincontext.c +915 -0
  20. data/ext/glib2/rbglib_mainloop.c +87 -0
  21. data/ext/glib2/rbglib_messages.c +150 -0
  22. data/ext/glib2/rbglib_pollfd.c +111 -0
  23. data/ext/glib2/rbglib_shell.c +68 -0
  24. data/ext/glib2/rbglib_source.c +190 -0
  25. data/ext/glib2/rbglib_spawn.c +345 -0
  26. data/ext/glib2/rbglib_threads.c +51 -0
  27. data/ext/glib2/rbglib_timer.c +127 -0
  28. data/ext/glib2/rbglib_unicode.c +611 -0
  29. data/ext/glib2/rbglib_utils.c +386 -0
  30. data/ext/glib2/rbglib_win32.c +136 -0
  31. data/ext/glib2/rbgobj_boxed.c +251 -0
  32. data/ext/glib2/rbgobj_closure.c +337 -0
  33. data/ext/glib2/rbgobj_convert.c +167 -0
  34. data/ext/glib2/rbgobj_enums.c +961 -0
  35. data/ext/glib2/rbgobj_fundamental.c +30 -0
  36. data/ext/glib2/rbgobj_object.c +892 -0
  37. data/ext/glib2/rbgobj_param.c +390 -0
  38. data/ext/glib2/rbgobj_paramspecs.c +305 -0
  39. data/ext/glib2/rbgobj_signal.c +963 -0
  40. data/ext/glib2/rbgobj_strv.c +61 -0
  41. data/ext/glib2/rbgobj_type.c +851 -0
  42. data/ext/glib2/rbgobj_typeinstance.c +121 -0
  43. data/ext/glib2/rbgobj_typeinterface.c +148 -0
  44. data/ext/glib2/rbgobj_typemodule.c +66 -0
  45. data/ext/glib2/rbgobj_typeplugin.c +49 -0
  46. data/ext/glib2/rbgobj_value.c +313 -0
  47. data/ext/glib2/rbgobj_valuearray.c +59 -0
  48. data/ext/glib2/rbgobj_valuetypes.c +298 -0
  49. data/ext/glib2/rbgobject.c +406 -0
  50. data/ext/glib2/rbgobject.h +265 -0
  51. data/ext/glib2/rbgprivate.h +88 -0
  52. data/ext/glib2/rbgutil.c +316 -0
  53. data/ext/glib2/rbgutil.h +82 -0
  54. data/ext/glib2/rbgutil_callback.c +231 -0
  55. data/extconf.rb +49 -0
  56. data/lib/1.8/glib2.so +0 -0
  57. data/lib/1.9/glib2.so +0 -0
  58. data/lib/glib-mkenums.rb +199 -0
  59. data/lib/glib2.rb +239 -0
  60. data/lib/gnome2-win32-binary-downloader.rb +92 -0
  61. data/lib/mkmf-gnome2.rb +377 -0
  62. data/sample/bookmarkfile.rb +66 -0
  63. data/sample/completion.rb +45 -0
  64. data/sample/idle.rb +41 -0
  65. data/sample/iochannel.rb +44 -0
  66. data/sample/keyfile.rb +62 -0
  67. data/sample/shell.rb +36 -0
  68. data/sample/spawn.rb +25 -0
  69. data/sample/timeout.rb +28 -0
  70. data/sample/timeout2.rb +35 -0
  71. data/sample/timer.rb +40 -0
  72. data/sample/type-register.rb +103 -0
  73. data/sample/type-register2.rb +104 -0
  74. data/sample/utils.rb +54 -0
  75. data/test/glib-test-init.rb +6 -0
  76. data/test/glib-test-utils.rb +12 -0
  77. data/test/run-test.rb +21 -0
  78. data/test/test_enum.rb +99 -0
  79. data/test/test_file_utils.rb +15 -0
  80. data/test/test_glib2.rb +120 -0
  81. data/test/test_iochannel.rb +275 -0
  82. data/test/test_key_file.rb +38 -0
  83. data/test/test_mkenums.rb +25 -0
  84. data/test/test_signal.rb +20 -0
  85. data/test/test_timeout.rb +28 -0
  86. data/test/test_unicode.rb +369 -0
  87. data/test/test_utils.rb +37 -0
  88. data/test/test_win32.rb +13 -0
  89. data/test-unit/COPYING +56 -0
  90. data/test-unit/GPL +340 -0
  91. data/test-unit/History.txt +232 -0
  92. data/test-unit/Manifest.txt +110 -0
  93. data/test-unit/PSFL +271 -0
  94. data/test-unit/README.txt +75 -0
  95. data/test-unit/Rakefile +53 -0
  96. data/test-unit/TODO +5 -0
  97. data/test-unit/bin/testrb +5 -0
  98. data/test-unit/html/bar.png +0 -0
  99. data/test-unit/html/bar.svg +153 -0
  100. data/test-unit/html/developer.png +0 -0
  101. data/test-unit/html/developer.svg +469 -0
  102. data/test-unit/html/famfamfam-logo.png +0 -0
  103. data/test-unit/html/favicon.ico +0 -0
  104. data/test-unit/html/favicon.png +0 -0
  105. data/test-unit/html/favicon.svg +82 -0
  106. data/test-unit/html/heading-mark.png +0 -0
  107. data/test-unit/html/heading-mark.svg +393 -0
  108. data/test-unit/html/index.html +247 -0
  109. data/test-unit/html/index.html.ja +270 -0
  110. data/test-unit/html/install.png +0 -0
  111. data/test-unit/html/install.svg +636 -0
  112. data/test-unit/html/jp.png +0 -0
  113. data/test-unit/html/kinotan-failure.png +0 -0
  114. data/test-unit/html/kinotan-pass.png +0 -0
  115. data/test-unit/html/logo.png +0 -0
  116. data/test-unit/html/logo.svg +483 -0
  117. data/test-unit/html/reference.png +0 -0
  118. data/test-unit/html/rubyforge.png +0 -0
  119. data/test-unit/html/tango-logo.png +0 -0
  120. data/test-unit/html/test-unit.css +339 -0
  121. data/test-unit/html/tutorial.png +0 -0
  122. data/test-unit/html/tutorial.svg +559 -0
  123. data/test-unit/html/us.png +0 -0
  124. data/test-unit/images/color-diff.png +0 -0
  125. data/test-unit/lib/test/unit/assertionfailederror.rb +25 -0
  126. data/test-unit/lib/test/unit/assertions.rb +1334 -0
  127. data/test-unit/lib/test/unit/attribute.rb +125 -0
  128. data/test-unit/lib/test/unit/autorunner.rb +363 -0
  129. data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
  130. data/test-unit/lib/test/unit/collector/dir.rb +108 -0
  131. data/test-unit/lib/test/unit/collector/load.rb +144 -0
  132. data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
  133. data/test-unit/lib/test/unit/collector.rb +36 -0
  134. data/test-unit/lib/test/unit/color-scheme.rb +106 -0
  135. data/test-unit/lib/test/unit/color.rb +96 -0
  136. data/test-unit/lib/test/unit/diff.rb +740 -0
  137. data/test-unit/lib/test/unit/error.rb +130 -0
  138. data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
  139. data/test-unit/lib/test/unit/failure.rb +136 -0
  140. data/test-unit/lib/test/unit/fixture.rb +176 -0
  141. data/test-unit/lib/test/unit/notification.rb +129 -0
  142. data/test-unit/lib/test/unit/omission.rb +191 -0
  143. data/test-unit/lib/test/unit/pending.rb +150 -0
  144. data/test-unit/lib/test/unit/priority.rb +180 -0
  145. data/test-unit/lib/test/unit/runner/console.rb +52 -0
  146. data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
  147. data/test-unit/lib/test/unit/runner/tap.rb +8 -0
  148. data/test-unit/lib/test/unit/testcase.rb +483 -0
  149. data/test-unit/lib/test/unit/testresult.rb +121 -0
  150. data/test-unit/lib/test/unit/testsuite.rb +110 -0
  151. data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
  152. data/test-unit/lib/test/unit/ui/console/testrunner.rb +430 -0
  153. data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +63 -0
  154. data/test-unit/lib/test/unit/ui/tap/testrunner.rb +82 -0
  155. data/test-unit/lib/test/unit/ui/testrunner.rb +53 -0
  156. data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
  157. data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  158. data/test-unit/lib/test/unit/util/backtracefilter.rb +42 -0
  159. data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
  160. data/test-unit/lib/test/unit/util/observable.rb +90 -0
  161. data/test-unit/lib/test/unit/util/output.rb +31 -0
  162. data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
  163. data/test-unit/lib/test/unit/version.rb +7 -0
  164. data/test-unit/lib/test/unit.rb +328 -0
  165. data/test-unit/sample/adder.rb +13 -0
  166. data/test-unit/sample/subtracter.rb +12 -0
  167. data/test-unit/sample/test_adder.rb +20 -0
  168. data/test-unit/sample/test_subtracter.rb +20 -0
  169. data/test-unit/sample/test_user.rb +23 -0
  170. data/test-unit/test/collector/test-descendant.rb +133 -0
  171. data/test-unit/test/collector/test-load.rb +442 -0
  172. data/test-unit/test/collector/test_dir.rb +406 -0
  173. data/test-unit/test/collector/test_objectspace.rb +100 -0
  174. data/test-unit/test/run-test.rb +15 -0
  175. data/test-unit/test/test-attribute.rb +86 -0
  176. data/test-unit/test/test-color-scheme.rb +69 -0
  177. data/test-unit/test/test-color.rb +47 -0
  178. data/test-unit/test/test-diff.rb +518 -0
  179. data/test-unit/test/test-emacs-runner.rb +60 -0
  180. data/test-unit/test/test-fixture.rb +287 -0
  181. data/test-unit/test/test-notification.rb +33 -0
  182. data/test-unit/test/test-omission.rb +81 -0
  183. data/test-unit/test/test-pending.rb +70 -0
  184. data/test-unit/test/test-priority.rb +119 -0
  185. data/test-unit/test/test-testcase.rb +544 -0
  186. data/test-unit/test/test_assertions.rb +1197 -0
  187. data/test-unit/test/test_error.rb +26 -0
  188. data/test-unit/test/test_failure.rb +33 -0
  189. data/test-unit/test/test_testresult.rb +113 -0
  190. data/test-unit/test/test_testsuite.rb +129 -0
  191. data/test-unit/test/testunit-test-util.rb +14 -0
  192. data/test-unit/test/ui/test_tap.rb +33 -0
  193. data/test-unit/test/ui/test_testrunmediator.rb +20 -0
  194. data/test-unit/test/util/test-method-owner-finder.rb +38 -0
  195. data/test-unit/test/util/test-output.rb +11 -0
  196. data/test-unit/test/util/test_backtracefilter.rb +41 -0
  197. data/test-unit/test/util/test_observable.rb +102 -0
  198. data/test-unit/test/util/test_procwrapper.rb +36 -0
  199. data/vendor/local/bin/envsubst.exe +0 -0
  200. data/vendor/local/bin/gettext.exe +0 -0
  201. data/vendor/local/bin/gettext.sh +123 -0
  202. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  203. data/vendor/local/bin/glib-gettextize +188 -0
  204. data/vendor/local/bin/glib-mkenums +511 -0
  205. data/vendor/local/bin/gobject-query.exe +0 -0
  206. data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
  207. data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
  208. data/vendor/local/bin/intl.dll +0 -0
  209. data/vendor/local/bin/libasprintf-0.dll +0 -0
  210. data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
  211. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  212. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  213. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  214. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  215. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  216. data/vendor/local/bin/ngettext.exe +0 -0
  217. data/vendor/local/include/autosprintf.h +66 -0
  218. data/vendor/local/include/glib-2.0/gio/gappinfo.h +237 -0
  219. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
  220. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
  221. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
  222. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
  223. data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
  224. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
  225. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
  226. data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
  227. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
  228. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
  229. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +133 -0
  230. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
  231. data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
  232. data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
  233. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
  234. data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
  235. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
  236. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
  237. data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
  238. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
  239. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
  240. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
  241. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
  242. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
  243. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
  244. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
  245. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
  246. data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
  247. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
  248. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
  249. data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
  250. data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
  251. data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
  252. data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
  253. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
  254. data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
  255. data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
  256. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
  257. data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
  258. data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
  259. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
  260. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
  261. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
  262. data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
  263. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
  264. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
  265. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
  266. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
  267. data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
  268. data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
  269. data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
  270. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
  271. data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
  272. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
  273. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
  274. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
  275. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
  276. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
  277. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
  278. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
  279. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
  280. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
  281. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
  282. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
  283. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  284. data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
  285. data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
  286. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
  287. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
  288. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
  289. data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
  290. data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
  291. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
  292. data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
  293. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
  294. data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
  295. data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
  296. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
  297. data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
  298. data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
  299. data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
  300. data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
  301. data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
  302. data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
  303. data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
  304. data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
  305. data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
  306. data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
  307. data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
  308. data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
  309. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
  310. data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
  311. data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
  312. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
  313. data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
  314. data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
  315. data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
  316. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
  317. data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
  318. data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
  319. data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
  320. data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
  321. data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
  322. data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
  323. data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
  324. data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
  325. data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
  326. data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
  327. data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
  328. data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
  329. data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
  330. data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
  331. data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
  332. data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
  333. data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
  334. data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
  335. data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
  336. data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
  337. data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
  338. data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
  339. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
  340. data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
  341. data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
  342. data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
  343. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
  344. data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
  345. data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
  346. data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
  347. data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
  348. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
  349. data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
  350. data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
  351. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
  352. data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
  353. data/vendor/local/include/glib-2.0/glib-object.h +41 -0
  354. data/vendor/local/include/glib-2.0/glib.h +97 -0
  355. data/vendor/local/include/glib-2.0/gmodule.h +101 -0
  356. data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
  357. data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
  358. data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
  359. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
  360. data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
  361. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
  362. data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
  363. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
  364. data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
  365. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
  366. data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
  367. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
  368. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  369. data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
  370. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
  371. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
  372. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
  373. data/vendor/local/include/libintl.h +464 -0
  374. data/vendor/local/lib/GNU.Gettext.dll +0 -0
  375. data/vendor/local/lib/gio-2.0.def +800 -0
  376. data/vendor/local/lib/gio-2.0.lib +0 -0
  377. data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
  378. data/vendor/local/lib/glib-2.0.def +1381 -0
  379. data/vendor/local/lib/glib-2.0.lib +0 -0
  380. data/vendor/local/lib/gmodule-2.0.def +11 -0
  381. data/vendor/local/lib/gmodule-2.0.lib +0 -0
  382. data/vendor/local/lib/gobject-2.0.def +349 -0
  383. data/vendor/local/lib/gobject-2.0.lib +0 -0
  384. data/vendor/local/lib/gthread-2.0.def +3 -0
  385. data/vendor/local/lib/gthread-2.0.lib +0 -0
  386. data/vendor/local/lib/intl.lib +0 -0
  387. data/vendor/local/lib/libasprintf.dll.a +0 -0
  388. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  389. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  390. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  391. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  392. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  393. data/vendor/local/lib/libintl.def +31 -0
  394. data/vendor/local/lib/libintl.dll.a +0 -0
  395. data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
  396. data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
  397. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  398. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  399. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
  400. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  401. data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
  402. data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
  403. data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
  404. data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
  405. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  406. data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
  407. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
  408. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
  409. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  410. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  411. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  412. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  413. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  414. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  415. data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
  416. data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
  417. data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
  418. data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
  419. data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
  420. data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
  421. data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
  422. data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
  423. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  424. data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
  425. data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
  426. data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
  427. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
  428. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
  429. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
  430. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
  431. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
  432. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
  433. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
  434. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
  435. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
  436. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
  437. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
  438. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
  439. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
  440. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
  441. data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
  442. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
  443. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
  444. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
  445. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
  446. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
  447. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
  448. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
  449. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
  450. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
  451. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
  452. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
  453. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
  454. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
  455. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
  456. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
  457. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
  458. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
  459. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
  460. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
  461. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
  462. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
  463. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
  464. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
  465. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
  466. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
  467. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
  468. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
  469. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
  470. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
  471. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
  472. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
  473. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
  474. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
  475. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
  476. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
  477. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
  478. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
  479. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
  480. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
  481. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
  482. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
  483. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
  484. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
  485. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
  486. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
  487. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
  488. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
  489. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
  490. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
  491. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
  492. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
  493. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
  494. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
  495. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
  496. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
  497. data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
  498. data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
  499. data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
  500. data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
  501. data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
  502. data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
  503. data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
  504. data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
  505. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  506. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -0
  507. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  508. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  509. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  510. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  511. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
  512. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
  513. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
  514. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
  515. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
  516. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
  517. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
  518. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
  519. data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
  520. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
  521. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
  522. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
  523. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -0
  524. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  525. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +47 -0
  526. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  527. data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
  528. data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
  529. data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
  530. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
  532. data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
  533. data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
  534. data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
  535. data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
  536. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  537. data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
  538. data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
  539. data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
  540. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  541. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  542. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  543. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
  544. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
  545. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
  546. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
  547. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
  548. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
  549. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
  550. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
  551. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
  552. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
  553. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
  554. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
  555. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
  556. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -0
  557. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  558. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
  559. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
  560. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
  561. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
  562. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
  563. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
  564. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
  565. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
  566. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
  567. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
  568. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
  569. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
  570. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
  571. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
  572. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
  573. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
  574. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
  575. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
  576. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
  577. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
  578. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
  579. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
  580. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
  581. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
  582. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
  583. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
  584. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
  585. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
  586. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
  587. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
  588. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
  589. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
  590. data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
  591. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
  592. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
  593. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
  594. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
  595. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
  596. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
  597. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
  598. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
  599. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
  600. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
  601. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
  602. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
  603. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
  604. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
  605. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
  606. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
  607. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
  608. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
  609. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
  610. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
  611. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
  612. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
  613. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
  614. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
  615. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
  616. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
  617. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
  618. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
  619. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
  620. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
  621. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
  622. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
  623. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
  624. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
  625. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
  626. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
  627. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
  628. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
  629. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
  630. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
  631. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
  632. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
  633. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
  634. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
  635. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
  636. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
  637. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
  638. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
  639. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
  640. data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
  641. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
  642. data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
  643. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
  644. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  645. data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
  646. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -0
  647. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  648. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  649. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  650. data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
  651. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  652. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  653. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
  654. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
  655. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
  656. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
  657. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
  658. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
  659. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
  660. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
  661. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
  662. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
  663. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
  664. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
  665. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
  666. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
  667. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  668. data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
  669. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
  670. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  671. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  672. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  673. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +355 -0
  674. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -0
  675. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  676. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +406 -0
  677. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
  678. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
  679. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
  680. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
  681. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
  682. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
  683. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
  684. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
  685. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
  686. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -0
  687. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  688. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
  689. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
  690. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
  691. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
  692. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
  693. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
  694. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
  695. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  696. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  697. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
  698. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
  699. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
  700. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
  701. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
  702. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
  703. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
  704. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
  705. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
  706. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  707. data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
  708. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -0
  709. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  710. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  711. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  712. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
  713. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  714. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  715. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
  716. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  717. data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
  718. data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -0
  719. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  720. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  721. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  722. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
  723. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  724. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  725. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  726. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  727. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  728. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  729. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  730. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  731. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  732. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  733. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  734. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  735. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  736. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  737. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  738. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  739. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  740. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  741. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  742. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  743. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  744. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  745. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  746. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  747. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  748. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  749. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  750. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  751. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  752. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  753. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  754. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  755. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  756. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  757. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  758. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  759. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  760. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  761. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  762. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  763. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  764. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  765. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  766. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  767. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  768. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  769. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  770. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  771. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  772. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  773. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  774. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  775. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  776. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  777. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  778. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  779. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  780. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  781. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  782. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  783. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  784. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  785. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  786. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  787. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  788. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  789. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  790. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  791. data/vendor/local/share/locale/locale.alias +77 -0
  792. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  793. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  794. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  795. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  796. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  797. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  798. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  799. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  800. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  801. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  802. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  803. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  804. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  805. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  806. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  807. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  808. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  809. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  810. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  811. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  812. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  813. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  814. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  815. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  816. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  817. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  818. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  819. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  820. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  821. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  822. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  823. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  824. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  825. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  826. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  827. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  828. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  829. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  830. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  831. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  832. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  833. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  834. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  835. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  836. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  837. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  838. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  839. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  840. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  841. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  842. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  843. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  844. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  845. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  846. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  847. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  848. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  849. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  850. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  851. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  852. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  853. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  854. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  855. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  856. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  857. data/vendor/local/share/man/man1/gettext.1 +69 -0
  858. data/vendor/local/share/man/man1/glib-genmarshal.1 +307 -0
  859. data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
  860. data/vendor/local/share/man/man1/gobject-query.1 +83 -0
  861. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  862. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  863. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  864. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  865. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  866. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  867. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  868. data/vendor/local/share/man/man3/gettext.3 +99 -0
  869. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  870. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  871. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
  872. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
  873. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
  874. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
  875. metadata +940 -0
@@ -0,0 +1,2556 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
3
+ <book xmlns="http://www.devhelp.net/book" title="GLib Reference Manual" link="index.html" author="" name="glib" version="2" language="c">
4
+ <chapters>
5
+ <sub name="GLib Overview" link="glib.html">
6
+ <sub name="Compiling the GLib package" link="glib-building.html"/>
7
+ <sub name="Cross-compiling the GLib package" link="glib-cross-compiling.html"/>
8
+ <sub name="Compiling GLib Applications" link="glib-compiling.html"/>
9
+ <sub name="Running GLib Applications" link="glib-running.html"/>
10
+ <sub name="Changes to GLib" link="glib-changes.html"/>
11
+ <sub name="Regular expression syntax" link="glib-regex-syntax.html"/>
12
+ <sub name="Mailing lists and bug reports" link="glib-resources.html"/>
13
+ </sub>
14
+ <sub name="GLib Fundamentals" link="glib-fundamentals.html">
15
+ <sub name="Version Information" link="glib-Version-Information.html"/>
16
+ <sub name="Basic Types" link="glib-Basic-Types.html"/>
17
+ <sub name="Limits of Basic Types" link="glib-Limits-of-Basic-Types.html"/>
18
+ <sub name="Standard Macros" link="glib-Standard-Macros.html"/>
19
+ <sub name="Type Conversion Macros" link="glib-Type-Conversion-Macros.html"/>
20
+ <sub name="Byte Order Macros" link="glib-Byte-Order-Macros.html"/>
21
+ <sub name="Numerical Definitions" link="glib-Numerical-Definitions.html"/>
22
+ <sub name="Miscellaneous Macros" link="glib-Miscellaneous-Macros.html"/>
23
+ <sub name="Atomic Operations" link="glib-Atomic-Operations.html"/>
24
+ </sub>
25
+ <sub name="GLib Core Application Support" link="glib-core.html">
26
+ <sub name="The Main Event Loop" link="glib-The-Main-Event-Loop.html"/>
27
+ <sub name="Threads" link="glib-Threads.html"/>
28
+ <sub name="Thread Pools" link="glib-Thread-Pools.html"/>
29
+ <sub name="Asynchronous Queues" link="glib-Asynchronous-Queues.html"/>
30
+ <sub name="Dynamic Loading of Modules" link="glib-Dynamic-Loading-of-Modules.html"/>
31
+ <sub name="Memory Allocation" link="glib-Memory-Allocation.html"/>
32
+ <sub name="IO Channels" link="glib-IO-Channels.html"/>
33
+ <sub name="Error Reporting" link="glib-Error-Reporting.html"/>
34
+ <sub name="Message Output and Debugging Functions" link="glib-Warnings-and-Assertions.html"/>
35
+ <sub name="Message Logging" link="glib-Message-Logging.html"/>
36
+ </sub>
37
+ <sub name="GLib Utilities" link="glib-utilities.html">
38
+ <sub name="String Utility Functions" link="glib-String-Utility-Functions.html"/>
39
+ <sub name="Character Set Conversion" link="glib-Character-Set-Conversion.html"/>
40
+ <sub name="Unicode Manipulation" link="glib-Unicode-Manipulation.html"/>
41
+ <sub name="Base64 Encoding" link="glib-Base64-Encoding.html"/>
42
+ <sub name="Data Checksums" link="glib-Data-Checksums.html"/>
43
+ <sub name="Internationalization" link="glib-I18N.html"/>
44
+ <sub name="Date and Time Functions" link="glib-Date-and-Time-Functions.html"/>
45
+ <sub name="Random Numbers" link="glib-Random-Numbers.html"/>
46
+ <sub name="Hook Functions" link="glib-Hook-Functions.html"/>
47
+ <sub name="Miscellaneous Utility Functions" link="glib-Miscellaneous-Utility-Functions.html"/>
48
+ <sub name="Lexical Scanner" link="glib-Lexical-Scanner.html"/>
49
+ <sub name="Automatic String Completion" link="glib-Automatic-String-Completion.html"/>
50
+ <sub name="Timers" link="glib-Timers.html"/>
51
+ <sub name="Spawning Processes" link="glib-Spawning-Processes.html"/>
52
+ <sub name="File Utilities" link="glib-File-Utilities.html"/>
53
+ <sub name="URI Functions" link="glib-URI-Functions.html"/>
54
+ <sub name="Hostname Utilities" link="glib-Hostname-Utilities.html"/>
55
+ <sub name="Shell-related Utilities" link="glib-Shell-related-Utilities.html"/>
56
+ <sub name="Commandline option parser" link="glib-Commandline-option-parser.html"/>
57
+ <sub name="Glob-style pattern matching" link="glib-Glob-style-pattern-matching.html"/>
58
+ <sub name="Perl-compatible regular expressions" link="glib-Perl-compatible-regular-expressions.html"/>
59
+ <sub name="Simple XML Subset Parser" link="glib-Simple-XML-Subset-Parser.html"/>
60
+ <sub name="Key-value file parser" link="glib-Key-value-file-parser.html"/>
61
+ <sub name="Bookmark file parser" link="glib-Bookmark-file-parser.html"/>
62
+ <sub name="Testing" link="glib-Testing.html"/>
63
+ <sub name="Windows Compatibility Functions" link="glib-Windows-Compatibility-Functions.html"/>
64
+ </sub>
65
+ <sub name="GLib Data Types" link="glib-data-types.html">
66
+ <sub name="Memory Slices" link="glib-Memory-Slices.html"/>
67
+ <sub name="Memory Chunks" link="glib-Memory-Chunks.html"/>
68
+ <sub name="Doubly-Linked Lists" link="glib-Doubly-Linked-Lists.html"/>
69
+ <sub name="Singly-Linked Lists" link="glib-Singly-Linked-Lists.html"/>
70
+ <sub name="Double-ended Queues" link="glib-Double-ended-Queues.html"/>
71
+ <sub name="Sequences" link="glib-Sequences.html"/>
72
+ <sub name="Trash Stacks" link="glib-Trash-Stacks.html"/>
73
+ <sub name="Hash Tables" link="glib-Hash-Tables.html"/>
74
+ <sub name="Strings" link="glib-Strings.html"/>
75
+ <sub name="String Chunks" link="glib-String-Chunks.html"/>
76
+ <sub name="Arrays" link="glib-Arrays.html"/>
77
+ <sub name="Pointer Arrays" link="glib-Pointer-Arrays.html"/>
78
+ <sub name="Byte Arrays" link="glib-Byte-Arrays.html"/>
79
+ <sub name="Balanced Binary Trees" link="glib-Balanced-Binary-Trees.html"/>
80
+ <sub name="N-ary Trees" link="glib-N-ary-Trees.html"/>
81
+ <sub name="Quarks" link="glib-Quarks.html"/>
82
+ <sub name="Keyed Data Lists" link="glib-Keyed-Data-Lists.html"/>
83
+ <sub name="Datasets" link="glib-Datasets.html"/>
84
+ <sub name="Relations and Tuples" link="glib-Relations-and-Tuples.html"/>
85
+ <sub name="Caches" link="glib-Caches.html"/>
86
+ <sub name="Memory Allocators" link="glib-Memory-Allocators.html"/>
87
+ <sub name="GVariantType" link="glib-GVariantType.html"/>
88
+ <sub name="GVariant" link="glib-GVariant.html"/>
89
+ <sub name="GVariant Format Strings" link="gvariant-format-strings.html"/>
90
+ </sub>
91
+ <sub name="GLib Tools" link="tools.html">
92
+ <sub name="glib-gettextize" link="glib-gettextize.html"/>
93
+ <sub name="gtester" link="gtester.html"/>
94
+ <sub name="gtester-report" link="gtester-report.html"/>
95
+ </sub>
96
+ <sub name="Index" link="api-index-full.html"/>
97
+ <sub name="Index of deprecated symbols" link="api-index-deprecated.html"/>
98
+ <sub name="Index of new symbols in 2.2" link="api-index-2-2.html"/>
99
+ <sub name="Index of new symbols in 2.4" link="api-index-2-4.html"/>
100
+ <sub name="Index of new symbols in 2.6" link="api-index-2-6.html"/>
101
+ <sub name="Index of new symbols in 2.8" link="api-index-2-8.html"/>
102
+ <sub name="Index of new symbols in 2.10" link="api-index-2-10.html"/>
103
+ <sub name="Index of new symbols in 2.12" link="api-index-2-12.html"/>
104
+ <sub name="Index of new symbols in 2.14" link="api-index-2-14.html"/>
105
+ <sub name="Index of new symbols in 2.16" link="api-index-2-16.html"/>
106
+ <sub name="Index of new symbols in 2.18" link="api-index-2-18.html"/>
107
+ <sub name="Index of new symbols in 2.20" link="api-index-2-20.html"/>
108
+ <sub name="Index of new symbols in 2.22" link="api-index-2-22.html"/>
109
+ <sub name="Index of new symbols in 2.24" link="api-index-2-24.html"/>
110
+ </chapters>
111
+ <functions>
112
+ <keyword type="" name="Environment variables" link="glib-running.html#id518677"/>
113
+ <keyword type="" name="Locale" link="glib-running.html#setlocale"/>
114
+ <keyword type="" name="Traps and traces" link="glib-running.html#id537594"/>
115
+ <keyword type="" name="Gdb debugging macros" link="glib-running.html#id506414"/>
116
+ <keyword type="" name="Memory statistics" link="glib-running.html#id506449"/>
117
+ <keyword type="" name="Non-printing characters" link="glib-regex-syntax.html#id554647"/>
118
+ <keyword type="" name="Absolute and relative back references" link="glib-regex-syntax.html#id555185"/>
119
+ <keyword type="" name="Generic character types" link="glib-regex-syntax.html#id555198"/>
120
+ <keyword type="" name="Newline sequences" link="glib-regex-syntax.html#id555348"/>
121
+ <keyword type="" name="Unicode character properties" link="glib-regex-syntax.html#id555363"/>
122
+ <keyword type="" name="Simple assertions" link="glib-regex-syntax.html#id556316"/>
123
+ <keyword type="" name="Lookahead assertions" link="glib-regex-syntax.html#id552063"/>
124
+ <keyword type="" name="Lookbehind assertions" link="glib-regex-syntax.html#id552113"/>
125
+ <keyword type="" name="Using multiple assertions" link="glib-regex-syntax.html#id552228"/>
126
+ <keyword type="" name="Checking for a used subpattern by number" link="glib-regex-syntax.html#id552320"/>
127
+ <keyword type="" name="Checking for a used subpattern by name" link="glib-regex-syntax.html#id552356"/>
128
+ <keyword type="" name="Checking for pattern recursion" link="glib-regex-syntax.html#id552382"/>
129
+ <keyword type="" name="Defining subpatterns for use by reference only" link="glib-regex-syntax.html#id552411"/>
130
+ <keyword type="" name="Assertion conditions" link="glib-regex-syntax.html#id552443"/>
131
+ <keyword type="macro" name="GLIB_MAJOR_VERSION" link="glib-Version-Information.html#GLIB-MAJOR-VERSION:CAPS"/>
132
+ <keyword type="macro" name="GLIB_MINOR_VERSION" link="glib-Version-Information.html#GLIB-MINOR-VERSION:CAPS"/>
133
+ <keyword type="macro" name="GLIB_MICRO_VERSION" link="glib-Version-Information.html#GLIB-MICRO-VERSION:CAPS"/>
134
+ <keyword type="macro" name="GLIB_CHECK_VERSION()" link="glib-Version-Information.html#GLIB-CHECK-VERSION:CAPS"/>
135
+ <keyword type="typedef" name="gboolean" link="glib-Basic-Types.html#gboolean"/>
136
+ <keyword type="typedef" name="gpointer" link="glib-Basic-Types.html#gpointer"/>
137
+ <keyword type="typedef" name="gconstpointer" link="glib-Basic-Types.html#gconstpointer"/>
138
+ <keyword type="typedef" name="gchar" link="glib-Basic-Types.html#gchar"/>
139
+ <keyword type="typedef" name="guchar" link="glib-Basic-Types.html#guchar"/>
140
+ <keyword type="typedef" name="gint" link="glib-Basic-Types.html#gint"/>
141
+ <keyword type="typedef" name="guint" link="glib-Basic-Types.html#guint"/>
142
+ <keyword type="typedef" name="gshort" link="glib-Basic-Types.html#gshort"/>
143
+ <keyword type="typedef" name="gushort" link="glib-Basic-Types.html#gushort"/>
144
+ <keyword type="typedef" name="glong" link="glib-Basic-Types.html#glong"/>
145
+ <keyword type="typedef" name="gulong" link="glib-Basic-Types.html#gulong"/>
146
+ <keyword type="typedef" name="gint8" link="glib-Basic-Types.html#gint8"/>
147
+ <keyword type="typedef" name="guint8" link="glib-Basic-Types.html#guint8"/>
148
+ <keyword type="typedef" name="gint16" link="glib-Basic-Types.html#gint16"/>
149
+ <keyword type="typedef" name="guint16" link="glib-Basic-Types.html#guint16"/>
150
+ <keyword type="typedef" name="gint32" link="glib-Basic-Types.html#gint32"/>
151
+ <keyword type="typedef" name="guint32" link="glib-Basic-Types.html#guint32"/>
152
+ <keyword type="macro" name="G_HAVE_GINT64" link="glib-Basic-Types.html#G-HAVE-GINT64:CAPS" deprecated=""/>
153
+ <keyword type="typedef" name="gint64" link="glib-Basic-Types.html#gint64"/>
154
+ <keyword type="typedef" name="guint64" link="glib-Basic-Types.html#guint64"/>
155
+ <keyword type="macro" name="G_GINT64_CONSTANT()" link="glib-Basic-Types.html#G-GINT64-CONSTANT:CAPS"/>
156
+ <keyword type="macro" name="G_GUINT64_CONSTANT()" link="glib-Basic-Types.html#G-GUINT64-CONSTANT:CAPS" since="2.10"/>
157
+ <keyword type="typedef" name="gfloat" link="glib-Basic-Types.html#gfloat"/>
158
+ <keyword type="typedef" name="gdouble" link="glib-Basic-Types.html#gdouble"/>
159
+ <keyword type="typedef" name="gsize" link="glib-Basic-Types.html#gsize"/>
160
+ <keyword type="typedef" name="gssize" link="glib-Basic-Types.html#gssize"/>
161
+ <keyword type="typedef" name="goffset" link="glib-Basic-Types.html#goffset"/>
162
+ <keyword type="macro" name="G_GOFFSET_CONSTANT()" link="glib-Basic-Types.html#G-GOFFSET-CONSTANT:CAPS"/>
163
+ <keyword type="typedef" name="gintptr" link="glib-Basic-Types.html#gintptr"/>
164
+ <keyword type="typedef" name="guintptr" link="glib-Basic-Types.html#guintptr"/>
165
+ <keyword type="macro" name="G_MININT" link="glib-Limits-of-Basic-Types.html#G-MININT:CAPS"/>
166
+ <keyword type="macro" name="G_MAXINT" link="glib-Limits-of-Basic-Types.html#G-MAXINT:CAPS"/>
167
+ <keyword type="macro" name="G_MAXUINT" link="glib-Limits-of-Basic-Types.html#G-MAXUINT:CAPS"/>
168
+ <keyword type="macro" name="G_MINSHORT" link="glib-Limits-of-Basic-Types.html#G-MINSHORT:CAPS"/>
169
+ <keyword type="macro" name="G_MAXSHORT" link="glib-Limits-of-Basic-Types.html#G-MAXSHORT:CAPS"/>
170
+ <keyword type="macro" name="G_MAXUSHORT" link="glib-Limits-of-Basic-Types.html#G-MAXUSHORT:CAPS"/>
171
+ <keyword type="macro" name="G_MINLONG" link="glib-Limits-of-Basic-Types.html#G-MINLONG:CAPS"/>
172
+ <keyword type="macro" name="G_MAXLONG" link="glib-Limits-of-Basic-Types.html#G-MAXLONG:CAPS"/>
173
+ <keyword type="macro" name="G_MAXULONG" link="glib-Limits-of-Basic-Types.html#G-MAXULONG:CAPS"/>
174
+ <keyword type="macro" name="G_MININT8" link="glib-Limits-of-Basic-Types.html#G-MININT8:CAPS" since="2.4"/>
175
+ <keyword type="macro" name="G_MAXINT8" link="glib-Limits-of-Basic-Types.html#G-MAXINT8:CAPS" since="2.4"/>
176
+ <keyword type="macro" name="G_MAXUINT8" link="glib-Limits-of-Basic-Types.html#G-MAXUINT8:CAPS" since="2.4"/>
177
+ <keyword type="macro" name="G_MININT16" link="glib-Limits-of-Basic-Types.html#G-MININT16:CAPS" since="2.4"/>
178
+ <keyword type="macro" name="G_MAXINT16" link="glib-Limits-of-Basic-Types.html#G-MAXINT16:CAPS" since="2.4"/>
179
+ <keyword type="macro" name="G_MAXUINT16" link="glib-Limits-of-Basic-Types.html#G-MAXUINT16:CAPS" since="2.4"/>
180
+ <keyword type="macro" name="G_MININT32" link="glib-Limits-of-Basic-Types.html#G-MININT32:CAPS" since="2.4"/>
181
+ <keyword type="macro" name="G_MAXINT32" link="glib-Limits-of-Basic-Types.html#G-MAXINT32:CAPS" since="2.4"/>
182
+ <keyword type="macro" name="G_MAXUINT32" link="glib-Limits-of-Basic-Types.html#G-MAXUINT32:CAPS" since="2.4"/>
183
+ <keyword type="macro" name="G_MININT64" link="glib-Limits-of-Basic-Types.html#G-MININT64:CAPS"/>
184
+ <keyword type="macro" name="G_MAXINT64" link="glib-Limits-of-Basic-Types.html#G-MAXINT64:CAPS"/>
185
+ <keyword type="macro" name="G_MAXUINT64" link="glib-Limits-of-Basic-Types.html#G-MAXUINT64:CAPS"/>
186
+ <keyword type="macro" name="G_MAXSIZE" link="glib-Limits-of-Basic-Types.html#G-MAXSIZE:CAPS" since="2.4"/>
187
+ <keyword type="macro" name="G_MINSSIZE" link="glib-Limits-of-Basic-Types.html#G-MINSSIZE:CAPS" since="2.14"/>
188
+ <keyword type="macro" name="G_MAXSSIZE" link="glib-Limits-of-Basic-Types.html#G-MAXSSIZE:CAPS" since="2.14"/>
189
+ <keyword type="macro" name="G_MINOFFSET" link="glib-Limits-of-Basic-Types.html#G-MINOFFSET:CAPS"/>
190
+ <keyword type="macro" name="G_MAXOFFSET" link="glib-Limits-of-Basic-Types.html#G-MAXOFFSET:CAPS"/>
191
+ <keyword type="macro" name="G_MINFLOAT" link="glib-Limits-of-Basic-Types.html#G-MINFLOAT:CAPS"/>
192
+ <keyword type="macro" name="G_MAXFLOAT" link="glib-Limits-of-Basic-Types.html#G-MAXFLOAT:CAPS"/>
193
+ <keyword type="macro" name="G_MINDOUBLE" link="glib-Limits-of-Basic-Types.html#G-MINDOUBLE:CAPS"/>
194
+ <keyword type="macro" name="G_MAXDOUBLE" link="glib-Limits-of-Basic-Types.html#G-MAXDOUBLE:CAPS"/>
195
+ <keyword type="macro" name="G_OS_WIN32" link="glib-Standard-Macros.html#G-OS-WIN32:CAPS"/>
196
+ <keyword type="macro" name="G_OS_BEOS" link="glib-Standard-Macros.html#G-OS-BEOS:CAPS"/>
197
+ <keyword type="macro" name="G_OS_UNIX" link="glib-Standard-Macros.html#G-OS-UNIX:CAPS"/>
198
+ <keyword type="macro" name="G_DIR_SEPARATOR" link="glib-Standard-Macros.html#G-DIR-SEPARATOR:CAPS"/>
199
+ <keyword type="macro" name="G_DIR_SEPARATOR_S" link="glib-Standard-Macros.html#G-DIR-SEPARATOR-S:CAPS"/>
200
+ <keyword type="macro" name="G_IS_DIR_SEPARATOR()" link="glib-Standard-Macros.html#G-IS-DIR-SEPARATOR:CAPS" since="2.6"/>
201
+ <keyword type="macro" name="G_SEARCHPATH_SEPARATOR" link="glib-Standard-Macros.html#G-SEARCHPATH-SEPARATOR:CAPS"/>
202
+ <keyword type="macro" name="G_SEARCHPATH_SEPARATOR_S" link="glib-Standard-Macros.html#G-SEARCHPATH-SEPARATOR-S:CAPS"/>
203
+ <keyword type="macro" name="TRUE" link="glib-Standard-Macros.html#TRUE:CAPS"/>
204
+ <keyword type="macro" name="FALSE" link="glib-Standard-Macros.html#FALSE:CAPS"/>
205
+ <keyword type="macro" name="NULL" link="glib-Standard-Macros.html#NULL:CAPS"/>
206
+ <keyword type="macro" name="MIN()" link="glib-Standard-Macros.html#MIN:CAPS"/>
207
+ <keyword type="macro" name="MAX()" link="glib-Standard-Macros.html#MAX:CAPS"/>
208
+ <keyword type="macro" name="ABS()" link="glib-Standard-Macros.html#ABS:CAPS"/>
209
+ <keyword type="macro" name="CLAMP()" link="glib-Standard-Macros.html#CLAMP:CAPS"/>
210
+ <keyword type="macro" name="G_STRUCT_MEMBER()" link="glib-Standard-Macros.html#G-STRUCT-MEMBER:CAPS"/>
211
+ <keyword type="macro" name="G_STRUCT_MEMBER_P()" link="glib-Standard-Macros.html#G-STRUCT-MEMBER-P:CAPS"/>
212
+ <keyword type="macro" name="G_STRUCT_OFFSET()" link="glib-Standard-Macros.html#G-STRUCT-OFFSET:CAPS"/>
213
+ <keyword type="macro" name="G_MEM_ALIGN" link="glib-Standard-Macros.html#G-MEM-ALIGN:CAPS"/>
214
+ <keyword type="macro" name="G_CONST_RETURN" link="glib-Standard-Macros.html#G-CONST-RETURN:CAPS"/>
215
+ <keyword type="macro" name="GINT_TO_POINTER()" link="glib-Type-Conversion-Macros.html#GINT-TO-POINTER:CAPS"/>
216
+ <keyword type="macro" name="GPOINTER_TO_INT()" link="glib-Type-Conversion-Macros.html#GPOINTER-TO-INT:CAPS"/>
217
+ <keyword type="macro" name="GUINT_TO_POINTER()" link="glib-Type-Conversion-Macros.html#GUINT-TO-POINTER:CAPS"/>
218
+ <keyword type="macro" name="GPOINTER_TO_UINT()" link="glib-Type-Conversion-Macros.html#GPOINTER-TO-UINT:CAPS"/>
219
+ <keyword type="macro" name="GSIZE_TO_POINTER()" link="glib-Type-Conversion-Macros.html#GSIZE-TO-POINTER:CAPS"/>
220
+ <keyword type="macro" name="GPOINTER_TO_SIZE()" link="glib-Type-Conversion-Macros.html#GPOINTER-TO-SIZE:CAPS"/>
221
+ <keyword type="macro" name="G_BYTE_ORDER" link="glib-Byte-Order-Macros.html#G-BYTE-ORDER:CAPS"/>
222
+ <keyword type="macro" name="G_LITTLE_ENDIAN" link="glib-Byte-Order-Macros.html#G-LITTLE-ENDIAN:CAPS"/>
223
+ <keyword type="macro" name="G_BIG_ENDIAN" link="glib-Byte-Order-Macros.html#G-BIG-ENDIAN:CAPS"/>
224
+ <keyword type="macro" name="G_PDP_ENDIAN" link="glib-Byte-Order-Macros.html#G-PDP-ENDIAN:CAPS"/>
225
+ <keyword type="macro" name="g_htonl()" link="glib-Byte-Order-Macros.html#g-htonl"/>
226
+ <keyword type="macro" name="g_htons()" link="glib-Byte-Order-Macros.html#g-htons"/>
227
+ <keyword type="macro" name="g_ntohl()" link="glib-Byte-Order-Macros.html#g-ntohl"/>
228
+ <keyword type="macro" name="g_ntohs()" link="glib-Byte-Order-Macros.html#g-ntohs"/>
229
+ <keyword type="macro" name="GINT_FROM_BE()" link="glib-Byte-Order-Macros.html#GINT-FROM-BE:CAPS"/>
230
+ <keyword type="macro" name="GINT_FROM_LE()" link="glib-Byte-Order-Macros.html#GINT-FROM-LE:CAPS"/>
231
+ <keyword type="macro" name="GINT_TO_BE()" link="glib-Byte-Order-Macros.html#GINT-TO-BE:CAPS"/>
232
+ <keyword type="macro" name="GINT_TO_LE()" link="glib-Byte-Order-Macros.html#GINT-TO-LE:CAPS"/>
233
+ <keyword type="macro" name="GUINT_FROM_BE()" link="glib-Byte-Order-Macros.html#GUINT-FROM-BE:CAPS"/>
234
+ <keyword type="macro" name="GUINT_FROM_LE()" link="glib-Byte-Order-Macros.html#GUINT-FROM-LE:CAPS"/>
235
+ <keyword type="macro" name="GUINT_TO_BE()" link="glib-Byte-Order-Macros.html#GUINT-TO-BE:CAPS"/>
236
+ <keyword type="macro" name="GUINT_TO_LE()" link="glib-Byte-Order-Macros.html#GUINT-TO-LE:CAPS"/>
237
+ <keyword type="macro" name="GLONG_FROM_BE()" link="glib-Byte-Order-Macros.html#GLONG-FROM-BE:CAPS"/>
238
+ <keyword type="macro" name="GLONG_FROM_LE()" link="glib-Byte-Order-Macros.html#GLONG-FROM-LE:CAPS"/>
239
+ <keyword type="macro" name="GLONG_TO_BE()" link="glib-Byte-Order-Macros.html#GLONG-TO-BE:CAPS"/>
240
+ <keyword type="macro" name="GLONG_TO_LE()" link="glib-Byte-Order-Macros.html#GLONG-TO-LE:CAPS"/>
241
+ <keyword type="macro" name="GULONG_FROM_BE()" link="glib-Byte-Order-Macros.html#GULONG-FROM-BE:CAPS"/>
242
+ <keyword type="macro" name="GULONG_FROM_LE()" link="glib-Byte-Order-Macros.html#GULONG-FROM-LE:CAPS"/>
243
+ <keyword type="macro" name="GULONG_TO_BE()" link="glib-Byte-Order-Macros.html#GULONG-TO-BE:CAPS"/>
244
+ <keyword type="macro" name="GULONG_TO_LE()" link="glib-Byte-Order-Macros.html#GULONG-TO-LE:CAPS"/>
245
+ <keyword type="macro" name="GSIZE_FROM_BE()" link="glib-Byte-Order-Macros.html#GSIZE-FROM-BE:CAPS"/>
246
+ <keyword type="macro" name="GSIZE_FROM_LE()" link="glib-Byte-Order-Macros.html#GSIZE-FROM-LE:CAPS"/>
247
+ <keyword type="macro" name="GSIZE_TO_BE()" link="glib-Byte-Order-Macros.html#GSIZE-TO-BE:CAPS"/>
248
+ <keyword type="macro" name="GSIZE_TO_LE()" link="glib-Byte-Order-Macros.html#GSIZE-TO-LE:CAPS"/>
249
+ <keyword type="macro" name="GSSIZE_FROM_BE()" link="glib-Byte-Order-Macros.html#GSSIZE-FROM-BE:CAPS"/>
250
+ <keyword type="macro" name="GSSIZE_FROM_LE()" link="glib-Byte-Order-Macros.html#GSSIZE-FROM-LE:CAPS"/>
251
+ <keyword type="macro" name="GSSIZE_TO_BE()" link="glib-Byte-Order-Macros.html#GSSIZE-TO-BE:CAPS"/>
252
+ <keyword type="macro" name="GSSIZE_TO_LE()" link="glib-Byte-Order-Macros.html#GSSIZE-TO-LE:CAPS"/>
253
+ <keyword type="macro" name="GINT16_FROM_BE()" link="glib-Byte-Order-Macros.html#GINT16-FROM-BE:CAPS"/>
254
+ <keyword type="macro" name="GINT16_FROM_LE()" link="glib-Byte-Order-Macros.html#GINT16-FROM-LE:CAPS"/>
255
+ <keyword type="macro" name="GINT16_TO_BE()" link="glib-Byte-Order-Macros.html#GINT16-TO-BE:CAPS"/>
256
+ <keyword type="macro" name="GINT16_TO_LE()" link="glib-Byte-Order-Macros.html#GINT16-TO-LE:CAPS"/>
257
+ <keyword type="macro" name="GUINT16_FROM_BE()" link="glib-Byte-Order-Macros.html#GUINT16-FROM-BE:CAPS"/>
258
+ <keyword type="macro" name="GUINT16_FROM_LE()" link="glib-Byte-Order-Macros.html#GUINT16-FROM-LE:CAPS"/>
259
+ <keyword type="macro" name="GUINT16_TO_BE()" link="glib-Byte-Order-Macros.html#GUINT16-TO-BE:CAPS"/>
260
+ <keyword type="macro" name="GUINT16_TO_LE()" link="glib-Byte-Order-Macros.html#GUINT16-TO-LE:CAPS"/>
261
+ <keyword type="macro" name="GINT32_FROM_BE()" link="glib-Byte-Order-Macros.html#GINT32-FROM-BE:CAPS"/>
262
+ <keyword type="macro" name="GINT32_FROM_LE()" link="glib-Byte-Order-Macros.html#GINT32-FROM-LE:CAPS"/>
263
+ <keyword type="macro" name="GINT32_TO_BE()" link="glib-Byte-Order-Macros.html#GINT32-TO-BE:CAPS"/>
264
+ <keyword type="macro" name="GINT32_TO_LE()" link="glib-Byte-Order-Macros.html#GINT32-TO-LE:CAPS"/>
265
+ <keyword type="macro" name="GUINT32_FROM_BE()" link="glib-Byte-Order-Macros.html#GUINT32-FROM-BE:CAPS"/>
266
+ <keyword type="macro" name="GUINT32_FROM_LE()" link="glib-Byte-Order-Macros.html#GUINT32-FROM-LE:CAPS"/>
267
+ <keyword type="macro" name="GUINT32_TO_BE()" link="glib-Byte-Order-Macros.html#GUINT32-TO-BE:CAPS"/>
268
+ <keyword type="macro" name="GUINT32_TO_LE()" link="glib-Byte-Order-Macros.html#GUINT32-TO-LE:CAPS"/>
269
+ <keyword type="macro" name="GINT64_FROM_BE()" link="glib-Byte-Order-Macros.html#GINT64-FROM-BE:CAPS"/>
270
+ <keyword type="macro" name="GINT64_FROM_LE()" link="glib-Byte-Order-Macros.html#GINT64-FROM-LE:CAPS"/>
271
+ <keyword type="macro" name="GINT64_TO_BE()" link="glib-Byte-Order-Macros.html#GINT64-TO-BE:CAPS"/>
272
+ <keyword type="macro" name="GINT64_TO_LE()" link="glib-Byte-Order-Macros.html#GINT64-TO-LE:CAPS"/>
273
+ <keyword type="macro" name="GUINT64_FROM_BE()" link="glib-Byte-Order-Macros.html#GUINT64-FROM-BE:CAPS"/>
274
+ <keyword type="macro" name="GUINT64_FROM_LE()" link="glib-Byte-Order-Macros.html#GUINT64-FROM-LE:CAPS"/>
275
+ <keyword type="macro" name="GUINT64_TO_BE()" link="glib-Byte-Order-Macros.html#GUINT64-TO-BE:CAPS"/>
276
+ <keyword type="macro" name="GUINT64_TO_LE()" link="glib-Byte-Order-Macros.html#GUINT64-TO-LE:CAPS"/>
277
+ <keyword type="macro" name="GUINT16_SWAP_BE_PDP()" link="glib-Byte-Order-Macros.html#GUINT16-SWAP-BE-PDP:CAPS"/>
278
+ <keyword type="macro" name="GUINT16_SWAP_LE_BE()" link="glib-Byte-Order-Macros.html#GUINT16-SWAP-LE-BE:CAPS"/>
279
+ <keyword type="macro" name="GUINT16_SWAP_LE_PDP()" link="glib-Byte-Order-Macros.html#GUINT16-SWAP-LE-PDP:CAPS"/>
280
+ <keyword type="macro" name="GUINT32_SWAP_BE_PDP()" link="glib-Byte-Order-Macros.html#GUINT32-SWAP-BE-PDP:CAPS"/>
281
+ <keyword type="macro" name="GUINT32_SWAP_LE_BE()" link="glib-Byte-Order-Macros.html#GUINT32-SWAP-LE-BE:CAPS"/>
282
+ <keyword type="macro" name="GUINT32_SWAP_LE_PDP()" link="glib-Byte-Order-Macros.html#GUINT32-SWAP-LE-PDP:CAPS"/>
283
+ <keyword type="macro" name="GUINT64_SWAP_LE_BE()" link="glib-Byte-Order-Macros.html#GUINT64-SWAP-LE-BE:CAPS"/>
284
+ <keyword type="macro" name="G_IEEE754_FLOAT_BIAS" link="glib-Numerical-Definitions.html#G-IEEE754-FLOAT-BIAS:CAPS"/>
285
+ <keyword type="macro" name="G_IEEE754_DOUBLE_BIAS" link="glib-Numerical-Definitions.html#G-IEEE754-DOUBLE-BIAS:CAPS"/>
286
+ <keyword type="union" name="union GFloatIEEE754" link="glib-Numerical-Definitions.html#GFloatIEEE754"/>
287
+ <keyword type="union" name="union GDoubleIEEE754" link="glib-Numerical-Definitions.html#GDoubleIEEE754"/>
288
+ <keyword type="macro" name="G_E" link="glib-Numerical-Definitions.html#G-E:CAPS"/>
289
+ <keyword type="macro" name="G_LN2" link="glib-Numerical-Definitions.html#G-LN2:CAPS"/>
290
+ <keyword type="macro" name="G_LN10" link="glib-Numerical-Definitions.html#G-LN10:CAPS"/>
291
+ <keyword type="macro" name="G_PI" link="glib-Numerical-Definitions.html#G-PI:CAPS"/>
292
+ <keyword type="macro" name="G_PI_2" link="glib-Numerical-Definitions.html#G-PI-2:CAPS"/>
293
+ <keyword type="macro" name="G_PI_4" link="glib-Numerical-Definitions.html#G-PI-4:CAPS"/>
294
+ <keyword type="macro" name="G_SQRT2" link="glib-Numerical-Definitions.html#G-SQRT2:CAPS"/>
295
+ <keyword type="macro" name="G_LOG_2_BASE_10" link="glib-Numerical-Definitions.html#G-LOG-2-BASE-10:CAPS"/>
296
+ <keyword type="macro" name="G_INLINE_FUNC" link="glib-Miscellaneous-Macros.html#G-INLINE-FUNC:CAPS"/>
297
+ <keyword type="macro" name="G_STMT_START" link="glib-Miscellaneous-Macros.html#G-STMT-START:CAPS"/>
298
+ <keyword type="macro" name="G_STMT_END" link="glib-Miscellaneous-Macros.html#G-STMT-END:CAPS"/>
299
+ <keyword type="macro" name="G_BEGIN_DECLS" link="glib-Miscellaneous-Macros.html#G-BEGIN-DECLS:CAPS"/>
300
+ <keyword type="macro" name="G_END_DECLS" link="glib-Miscellaneous-Macros.html#G-END-DECLS:CAPS"/>
301
+ <keyword type="macro" name="G_N_ELEMENTS()" link="glib-Miscellaneous-Macros.html#G-N-ELEMENTS:CAPS"/>
302
+ <keyword type="macro" name="G_VA_COPY()" link="glib-Miscellaneous-Macros.html#G-VA-COPY:CAPS"/>
303
+ <keyword type="macro" name="G_STRINGIFY()" link="glib-Miscellaneous-Macros.html#G-STRINGIFY:CAPS"/>
304
+ <keyword type="macro" name="G_PASTE()" link="glib-Miscellaneous-Macros.html#G-PASTE:CAPS" since="2.20"/>
305
+ <keyword type="macro" name="G_PASTE_ARGS()" link="glib-Miscellaneous-Macros.html#G-PASTE-ARGS:CAPS"/>
306
+ <keyword type="macro" name="G_STATIC_ASSERT()" link="glib-Miscellaneous-Macros.html#G-STATIC-ASSERT:CAPS" since="2.20"/>
307
+ <keyword type="macro" name="G_GNUC_EXTENSION" link="glib-Miscellaneous-Macros.html#G-GNUC-EXTENSION:CAPS"/>
308
+ <keyword type="macro" name="G_GNUC_CONST" link="glib-Miscellaneous-Macros.html#G-GNUC-CONST:CAPS"/>
309
+ <keyword type="macro" name="G_GNUC_PURE" link="glib-Miscellaneous-Macros.html#G-GNUC-PURE:CAPS"/>
310
+ <keyword type="macro" name="G_GNUC_MALLOC" link="glib-Miscellaneous-Macros.html#G-GNUC-MALLOC:CAPS" since="2.6"/>
311
+ <keyword type="macro" name="G_GNUC_ALLOC_SIZE()" link="glib-Miscellaneous-Macros.html#G-GNUC-ALLOC-SIZE:CAPS" since="2.18"/>
312
+ <keyword type="macro" name="G_GNUC_ALLOC_SIZE2()" link="glib-Miscellaneous-Macros.html#G-GNUC-ALLOC-SIZE2:CAPS" since="2.18"/>
313
+ <keyword type="macro" name="G_GNUC_DEPRECATED" link="glib-Miscellaneous-Macros.html#G-GNUC-DEPRECATED:CAPS" since="2.2"/>
314
+ <keyword type="macro" name="G_GNUC_NORETURN" link="glib-Miscellaneous-Macros.html#G-GNUC-NORETURN:CAPS"/>
315
+ <keyword type="macro" name="G_GNUC_UNUSED" link="glib-Miscellaneous-Macros.html#G-GNUC-UNUSED:CAPS"/>
316
+ <keyword type="macro" name="G_GNUC_PRINTF()" link="glib-Miscellaneous-Macros.html#G-GNUC-PRINTF:CAPS"/>
317
+ <keyword type="macro" name="G_GNUC_SCANF()" link="glib-Miscellaneous-Macros.html#G-GNUC-SCANF:CAPS"/>
318
+ <keyword type="macro" name="G_GNUC_FORMAT()" link="glib-Miscellaneous-Macros.html#G-GNUC-FORMAT:CAPS"/>
319
+ <keyword type="macro" name="G_GNUC_NULL_TERMINATED" link="glib-Miscellaneous-Macros.html#G-GNUC-NULL-TERMINATED:CAPS"/>
320
+ <keyword type="macro" name="G_GNUC_WARN_UNUSED_RESULT" link="glib-Miscellaneous-Macros.html#G-GNUC-WARN-UNUSED-RESULT:CAPS" since="2.10"/>
321
+ <keyword type="macro" name="G_GNUC_FUNCTION" link="glib-Miscellaneous-Macros.html#G-GNUC-FUNCTION:CAPS" deprecated="2.16: Use #G_STRFUNC instead."/>
322
+ <keyword type="macro" name="G_GNUC_PRETTY_FUNCTION" link="glib-Miscellaneous-Macros.html#G-GNUC-PRETTY-FUNCTION:CAPS" deprecated="2.16: Use #G_STRFUNC instead."/>
323
+ <keyword type="macro" name="G_GNUC_NO_INSTRUMENT" link="glib-Miscellaneous-Macros.html#G-GNUC-NO-INSTRUMENT:CAPS"/>
324
+ <keyword type="macro" name="G_HAVE_GNUC_VISIBILITY" link="glib-Miscellaneous-Macros.html#G-HAVE-GNUC-VISIBILITY:CAPS"/>
325
+ <keyword type="macro" name="G_GNUC_INTERNAL" link="glib-Miscellaneous-Macros.html#G-GNUC-INTERNAL:CAPS"/>
326
+ <keyword type="macro" name="G_GNUC_MAY_ALIAS" link="glib-Miscellaneous-Macros.html#G-GNUC-MAY-ALIAS:CAPS"/>
327
+ <keyword type="macro" name="G_LIKELY()" link="glib-Miscellaneous-Macros.html#G-LIKELY:CAPS" since="2.2"/>
328
+ <keyword type="macro" name="G_UNLIKELY()" link="glib-Miscellaneous-Macros.html#G-UNLIKELY:CAPS" since="2.2"/>
329
+ <keyword type="macro" name="G_STRLOC" link="glib-Miscellaneous-Macros.html#G-STRLOC:CAPS"/>
330
+ <keyword type="macro" name="G_STRFUNC" link="glib-Miscellaneous-Macros.html#G-STRFUNC:CAPS" since="2.4"/>
331
+ <keyword type="macro" name="G_GINT16_MODIFIER" link="glib-Miscellaneous-Macros.html#G-GINT16-MODIFIER:CAPS" since="2.4"/>
332
+ <keyword type="macro" name="G_GINT16_FORMAT" link="glib-Miscellaneous-Macros.html#G-GINT16-FORMAT:CAPS"/>
333
+ <keyword type="macro" name="G_GUINT16_FORMAT" link="glib-Miscellaneous-Macros.html#G-GUINT16-FORMAT:CAPS"/>
334
+ <keyword type="macro" name="G_GINT32_MODIFIER" link="glib-Miscellaneous-Macros.html#G-GINT32-MODIFIER:CAPS" since="2.4"/>
335
+ <keyword type="macro" name="G_GINT32_FORMAT" link="glib-Miscellaneous-Macros.html#G-GINT32-FORMAT:CAPS"/>
336
+ <keyword type="macro" name="G_GUINT32_FORMAT" link="glib-Miscellaneous-Macros.html#G-GUINT32-FORMAT:CAPS"/>
337
+ <keyword type="macro" name="G_GINT64_MODIFIER" link="glib-Miscellaneous-Macros.html#G-GINT64-MODIFIER:CAPS" since="2.4"/>
338
+ <keyword type="macro" name="G_GINT64_FORMAT" link="glib-Miscellaneous-Macros.html#G-GINT64-FORMAT:CAPS"/>
339
+ <keyword type="macro" name="G_GUINT64_FORMAT" link="glib-Miscellaneous-Macros.html#G-GUINT64-FORMAT:CAPS"/>
340
+ <keyword type="macro" name="G_GSIZE_MODIFIER" link="glib-Miscellaneous-Macros.html#G-GSIZE-MODIFIER:CAPS" since="2.6"/>
341
+ <keyword type="macro" name="G_GSIZE_FORMAT" link="glib-Miscellaneous-Macros.html#G-GSIZE-FORMAT:CAPS" since="2.6"/>
342
+ <keyword type="macro" name="G_GSSIZE_FORMAT" link="glib-Miscellaneous-Macros.html#G-GSSIZE-FORMAT:CAPS" since="2.6"/>
343
+ <keyword type="macro" name="G_GOFFSET_MODIFIER" link="glib-Miscellaneous-Macros.html#G-GOFFSET-MODIFIER:CAPS" since="2.20"/>
344
+ <keyword type="macro" name="G_GOFFSET_FORMAT" link="glib-Miscellaneous-Macros.html#G-GOFFSET-FORMAT:CAPS"/>
345
+ <keyword type="macro" name="G_GINTPTR_MODIFIER" link="glib-Miscellaneous-Macros.html#G-GINTPTR-MODIFIER:CAPS" since="2.22"/>
346
+ <keyword type="macro" name="G_GINTPTR_FORMAT" link="glib-Miscellaneous-Macros.html#G-GINTPTR-FORMAT:CAPS" since="2.22"/>
347
+ <keyword type="macro" name="G_GUINTPTR_FORMAT" link="glib-Miscellaneous-Macros.html#G-GUINTPTR-FORMAT:CAPS" since="2.22"/>
348
+ <keyword type="function" name="g_atomic_int_get ()" link="glib-Atomic-Operations.html#g-atomic-int-get" since="2.4"/>
349
+ <keyword type="function" name="g_atomic_int_set ()" link="glib-Atomic-Operations.html#g-atomic-int-set" since="2.10"/>
350
+ <keyword type="function" name="g_atomic_int_add ()" link="glib-Atomic-Operations.html#g-atomic-int-add" since="2.4"/>
351
+ <keyword type="function" name="g_atomic_int_exchange_and_add ()" link="glib-Atomic-Operations.html#g-atomic-int-exchange-and-add" since="2.4"/>
352
+ <keyword type="function" name="g_atomic_int_compare_and_exchange ()" link="glib-Atomic-Operations.html#g-atomic-int-compare-and-exchange" since="2.4"/>
353
+ <keyword type="function" name="g_atomic_pointer_get ()" link="glib-Atomic-Operations.html#g-atomic-pointer-get" since="2.4"/>
354
+ <keyword type="function" name="g_atomic_pointer_set ()" link="glib-Atomic-Operations.html#g-atomic-pointer-set" since="2.10"/>
355
+ <keyword type="function" name="g_atomic_pointer_compare_and_exchange ()" link="glib-Atomic-Operations.html#g-atomic-pointer-compare-and-exchange" since="2.4"/>
356
+ <keyword type="function" name="g_atomic_int_inc ()" link="glib-Atomic-Operations.html#g-atomic-int-inc" since="2.4"/>
357
+ <keyword type="function" name="g_atomic_int_dec_and_test ()" link="glib-Atomic-Operations.html#g-atomic-int-dec-and-test" since="2.4"/>
358
+ <keyword type="" name="Creating new sources types" link="glib-The-Main-Event-Loop.html#id573044"/>
359
+ <keyword type="" name="Customizing the main loop iteration" link="glib-The-Main-Event-Loop.html#id573119"/>
360
+ <keyword type="struct" name="GMainLoop" link="glib-The-Main-Event-Loop.html#GMainLoop"/>
361
+ <keyword type="function" name="g_main_loop_new ()" link="glib-The-Main-Event-Loop.html#g-main-loop-new"/>
362
+ <keyword type="function" name="g_main_loop_ref ()" link="glib-The-Main-Event-Loop.html#g-main-loop-ref"/>
363
+ <keyword type="function" name="g_main_loop_unref ()" link="glib-The-Main-Event-Loop.html#g-main-loop-unref"/>
364
+ <keyword type="function" name="g_main_loop_run ()" link="glib-The-Main-Event-Loop.html#g-main-loop-run"/>
365
+ <keyword type="function" name="g_main_loop_quit ()" link="glib-The-Main-Event-Loop.html#g-main-loop-quit"/>
366
+ <keyword type="function" name="g_main_loop_is_running ()" link="glib-The-Main-Event-Loop.html#g-main-loop-is-running"/>
367
+ <keyword type="function" name="g_main_loop_get_context ()" link="glib-The-Main-Event-Loop.html#g-main-loop-get-context"/>
368
+ <keyword type="macro" name="g_main_new()" link="glib-The-Main-Event-Loop.html#g-main-new" deprecated="2.2: Use g_main_loop_new() instead."/>
369
+ <keyword type="macro" name="g_main_destroy()" link="glib-The-Main-Event-Loop.html#g-main-destroy" deprecated="2.2: Use g_main_loop_unref() instead."/>
370
+ <keyword type="macro" name="g_main_run()" link="glib-The-Main-Event-Loop.html#g-main-run" deprecated="2.2: Use g_main_loop_run() instead."/>
371
+ <keyword type="macro" name="g_main_quit()" link="glib-The-Main-Event-Loop.html#g-main-quit" deprecated="2.2: Use g_main_loop_quit() instead."/>
372
+ <keyword type="macro" name="g_main_is_running()" link="glib-The-Main-Event-Loop.html#g-main-is-running" deprecated="2.2: USe g_main_loop_is_running() instead."/>
373
+ <keyword type="macro" name="G_PRIORITY_HIGH" link="glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH:CAPS"/>
374
+ <keyword type="macro" name="G_PRIORITY_DEFAULT" link="glib-The-Main-Event-Loop.html#G-PRIORITY-DEFAULT:CAPS"/>
375
+ <keyword type="macro" name="G_PRIORITY_HIGH_IDLE" link="glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH-IDLE:CAPS"/>
376
+ <keyword type="macro" name="G_PRIORITY_DEFAULT_IDLE" link="glib-The-Main-Event-Loop.html#G-PRIORITY-DEFAULT-IDLE:CAPS"/>
377
+ <keyword type="macro" name="G_PRIORITY_LOW" link="glib-The-Main-Event-Loop.html#G-PRIORITY-LOW:CAPS"/>
378
+ <keyword type="struct" name="GMainContext" link="glib-The-Main-Event-Loop.html#GMainContext"/>
379
+ <keyword type="function" name="g_main_context_new ()" link="glib-The-Main-Event-Loop.html#g-main-context-new"/>
380
+ <keyword type="function" name="g_main_context_ref ()" link="glib-The-Main-Event-Loop.html#g-main-context-ref"/>
381
+ <keyword type="function" name="g_main_context_unref ()" link="glib-The-Main-Event-Loop.html#g-main-context-unref"/>
382
+ <keyword type="function" name="g_main_context_default ()" link="glib-The-Main-Event-Loop.html#g-main-context-default"/>
383
+ <keyword type="function" name="g_main_context_iteration ()" link="glib-The-Main-Event-Loop.html#g-main-context-iteration"/>
384
+ <keyword type="macro" name="g_main_iteration()" link="glib-The-Main-Event-Loop.html#g-main-iteration" deprecated="2.2: Use g_main_context_iteration() instead."/>
385
+ <keyword type="function" name="g_main_context_pending ()" link="glib-The-Main-Event-Loop.html#g-main-context-pending"/>
386
+ <keyword type="macro" name="g_main_pending" link="glib-The-Main-Event-Loop.html#g-main-pending" deprecated="2.2: Use g_main_context_pending() instead."/>
387
+ <keyword type="function" name="g_main_context_find_source_by_id ()" link="glib-The-Main-Event-Loop.html#g-main-context-find-source-by-id"/>
388
+ <keyword type="function" name="g_main_context_find_source_by_user_data ()" link="glib-The-Main-Event-Loop.html#g-main-context-find-source-by-user-data"/>
389
+ <keyword type="function" name="g_main_context_find_source_by_funcs_user_data ()" link="glib-The-Main-Event-Loop.html#g-main-context-find-source-by-funcs-user-data"/>
390
+ <keyword type="function" name="g_main_context_wakeup ()" link="glib-The-Main-Event-Loop.html#g-main-context-wakeup"/>
391
+ <keyword type="function" name="g_main_context_acquire ()" link="glib-The-Main-Event-Loop.html#g-main-context-acquire"/>
392
+ <keyword type="function" name="g_main_context_release ()" link="glib-The-Main-Event-Loop.html#g-main-context-release"/>
393
+ <keyword type="function" name="g_main_context_is_owner ()" link="glib-The-Main-Event-Loop.html#g-main-context-is-owner" since="2.10"/>
394
+ <keyword type="function" name="g_main_context_wait ()" link="glib-The-Main-Event-Loop.html#g-main-context-wait"/>
395
+ <keyword type="function" name="g_main_context_prepare ()" link="glib-The-Main-Event-Loop.html#g-main-context-prepare"/>
396
+ <keyword type="function" name="g_main_context_query ()" link="glib-The-Main-Event-Loop.html#g-main-context-query"/>
397
+ <keyword type="function" name="g_main_context_check ()" link="glib-The-Main-Event-Loop.html#g-main-context-check"/>
398
+ <keyword type="function" name="g_main_context_dispatch ()" link="glib-The-Main-Event-Loop.html#g-main-context-dispatch"/>
399
+ <keyword type="function" name="g_main_context_set_poll_func ()" link="glib-The-Main-Event-Loop.html#g-main-context-set-poll-func"/>
400
+ <keyword type="function" name="g_main_context_get_poll_func ()" link="glib-The-Main-Event-Loop.html#g-main-context-get-poll-func"/>
401
+ <keyword type="function" name="GPollFunc ()" link="glib-The-Main-Event-Loop.html#GPollFunc"/>
402
+ <keyword type="function" name="g_main_context_add_poll ()" link="glib-The-Main-Event-Loop.html#g-main-context-add-poll"/>
403
+ <keyword type="function" name="g_main_context_remove_poll ()" link="glib-The-Main-Event-Loop.html#g-main-context-remove-poll"/>
404
+ <keyword type="function" name="g_main_depth ()" link="glib-The-Main-Event-Loop.html#g-main-depth"/>
405
+ <keyword type="function" name="g_main_current_source ()" link="glib-The-Main-Event-Loop.html#g-main-current-source" since="2.12"/>
406
+ <keyword type="macro" name="g_main_set_poll_func()" link="glib-The-Main-Event-Loop.html#g-main-set-poll-func" deprecated="2.2: Use g_main_context_set_poll_func() instead."/>
407
+ <keyword type="function" name="g_main_context_get_thread_default ()" link="glib-The-Main-Event-Loop.html#g-main-context-get-thread-default" since="2.22"/>
408
+ <keyword type="function" name="g_main_context_push_thread_default ()" link="glib-The-Main-Event-Loop.html#g-main-context-push-thread-default" since="2.22"/>
409
+ <keyword type="function" name="g_main_context_pop_thread_default ()" link="glib-The-Main-Event-Loop.html#g-main-context-pop-thread-default" since="2.22"/>
410
+ <keyword type="function" name="g_timeout_source_new ()" link="glib-The-Main-Event-Loop.html#g-timeout-source-new"/>
411
+ <keyword type="function" name="g_timeout_source_new_seconds ()" link="glib-The-Main-Event-Loop.html#g-timeout-source-new-seconds" since="2.14"/>
412
+ <keyword type="function" name="g_timeout_add ()" link="glib-The-Main-Event-Loop.html#g-timeout-add"/>
413
+ <keyword type="function" name="g_timeout_add_full ()" link="glib-The-Main-Event-Loop.html#g-timeout-add-full"/>
414
+ <keyword type="function" name="g_timeout_add_seconds ()" link="glib-The-Main-Event-Loop.html#g-timeout-add-seconds" since="2.14"/>
415
+ <keyword type="function" name="g_timeout_add_seconds_full ()" link="glib-The-Main-Event-Loop.html#g-timeout-add-seconds-full" since="2.14"/>
416
+ <keyword type="function" name="g_idle_source_new ()" link="glib-The-Main-Event-Loop.html#g-idle-source-new"/>
417
+ <keyword type="function" name="g_idle_add ()" link="glib-The-Main-Event-Loop.html#g-idle-add"/>
418
+ <keyword type="function" name="g_idle_add_full ()" link="glib-The-Main-Event-Loop.html#g-idle-add-full"/>
419
+ <keyword type="function" name="g_idle_remove_by_data ()" link="glib-The-Main-Event-Loop.html#g-idle-remove-by-data"/>
420
+ <keyword type="typedef" name="GPid" link="glib-The-Main-Event-Loop.html#GPid"/>
421
+ <keyword type="function" name="GChildWatchFunc ()" link="glib-The-Main-Event-Loop.html#GChildWatchFunc"/>
422
+ <keyword type="function" name="g_child_watch_source_new ()" link="glib-The-Main-Event-Loop.html#g-child-watch-source-new" since="2.4"/>
423
+ <keyword type="function" name="g_child_watch_add ()" link="glib-The-Main-Event-Loop.html#g-child-watch-add" since="2.4"/>
424
+ <keyword type="function" name="g_child_watch_add_full ()" link="glib-The-Main-Event-Loop.html#g-child-watch-add-full" since="2.4"/>
425
+ <keyword type="struct" name="GPollFD" link="glib-The-Main-Event-Loop.html#GPollFD"/>
426
+ <keyword type="function" name="g_poll ()" link="glib-The-Main-Event-Loop.html#g-poll" since="2.20"/>
427
+ <keyword type="macro" name="G_POLLFD_FORMAT" link="glib-The-Main-Event-Loop.html#G-POLLFD-FORMAT:CAPS"/>
428
+ <keyword type="struct" name="GSource" link="glib-The-Main-Event-Loop.html#GSource"/>
429
+ <keyword type="function" name="GSourceDummyMarshal ()" link="glib-The-Main-Event-Loop.html#GSourceDummyMarshal"/>
430
+ <keyword type="struct" name="GSourceFuncs" link="glib-The-Main-Event-Loop.html#GSourceFuncs"/>
431
+ <keyword type="struct" name="GSourceCallbackFuncs" link="glib-The-Main-Event-Loop.html#GSourceCallbackFuncs"/>
432
+ <keyword type="function" name="g_source_new ()" link="glib-The-Main-Event-Loop.html#g-source-new"/>
433
+ <keyword type="function" name="g_source_ref ()" link="glib-The-Main-Event-Loop.html#g-source-ref"/>
434
+ <keyword type="function" name="g_source_unref ()" link="glib-The-Main-Event-Loop.html#g-source-unref"/>
435
+ <keyword type="function" name="g_source_set_funcs ()" link="glib-The-Main-Event-Loop.html#g-source-set-funcs" since="2.12"/>
436
+ <keyword type="function" name="g_source_attach ()" link="glib-The-Main-Event-Loop.html#g-source-attach"/>
437
+ <keyword type="function" name="g_source_destroy ()" link="glib-The-Main-Event-Loop.html#g-source-destroy"/>
438
+ <keyword type="function" name="g_source_is_destroyed ()" link="glib-The-Main-Event-Loop.html#g-source-is-destroyed" since="2.12"/>
439
+ <keyword type="function" name="g_source_set_priority ()" link="glib-The-Main-Event-Loop.html#g-source-set-priority"/>
440
+ <keyword type="function" name="g_source_get_priority ()" link="glib-The-Main-Event-Loop.html#g-source-get-priority"/>
441
+ <keyword type="function" name="g_source_set_can_recurse ()" link="glib-The-Main-Event-Loop.html#g-source-set-can-recurse"/>
442
+ <keyword type="function" name="g_source_get_can_recurse ()" link="glib-The-Main-Event-Loop.html#g-source-get-can-recurse"/>
443
+ <keyword type="function" name="g_source_get_id ()" link="glib-The-Main-Event-Loop.html#g-source-get-id"/>
444
+ <keyword type="function" name="g_source_get_context ()" link="glib-The-Main-Event-Loop.html#g-source-get-context"/>
445
+ <keyword type="function" name="g_source_set_callback ()" link="glib-The-Main-Event-Loop.html#g-source-set-callback"/>
446
+ <keyword type="function" name="GSourceFunc ()" link="glib-The-Main-Event-Loop.html#GSourceFunc"/>
447
+ <keyword type="function" name="g_source_set_callback_indirect ()" link="glib-The-Main-Event-Loop.html#g-source-set-callback-indirect"/>
448
+ <keyword type="function" name="g_source_add_poll ()" link="glib-The-Main-Event-Loop.html#g-source-add-poll"/>
449
+ <keyword type="function" name="g_source_remove_poll ()" link="glib-The-Main-Event-Loop.html#g-source-remove-poll"/>
450
+ <keyword type="function" name="g_source_get_current_time ()" link="glib-The-Main-Event-Loop.html#g-source-get-current-time"/>
451
+ <keyword type="function" name="g_source_remove ()" link="glib-The-Main-Event-Loop.html#g-source-remove"/>
452
+ <keyword type="function" name="g_source_remove_by_funcs_user_data ()" link="glib-The-Main-Event-Loop.html#g-source-remove-by-funcs-user-data"/>
453
+ <keyword type="function" name="g_source_remove_by_user_data ()" link="glib-The-Main-Event-Loop.html#g-source-remove-by-user-data"/>
454
+ <keyword type="macro" name="G_THREADS_ENABLED" link="glib-Threads.html#G-THREADS-ENABLED:CAPS"/>
455
+ <keyword type="macro" name="G_THREADS_IMPL_POSIX" link="glib-Threads.html#G-THREADS-IMPL-POSIX:CAPS"/>
456
+ <keyword type="macro" name="G_THREADS_IMPL_NONE" link="glib-Threads.html#G-THREADS-IMPL-NONE:CAPS"/>
457
+ <keyword type="macro" name="G_THREAD_ERROR" link="glib-Threads.html#G-THREAD-ERROR:CAPS"/>
458
+ <keyword type="enum" name="enum GThreadError" link="glib-Threads.html#GThreadError"/>
459
+ <keyword type="struct" name="GThreadFunctions" link="glib-Threads.html#GThreadFunctions"/>
460
+ <keyword type="function" name="g_thread_init ()" link="glib-Threads.html#g-thread-init"/>
461
+ <keyword type="function" name="g_thread_supported ()" link="glib-Threads.html#g-thread-supported"/>
462
+ <keyword type="function" name="g_thread_get_initialized ()" link="glib-Threads.html#g-thread-get-initialized" since="2.20"/>
463
+ <keyword type="function" name="GThreadFunc ()" link="glib-Threads.html#GThreadFunc"/>
464
+ <keyword type="enum" name="enum GThreadPriority" link="glib-Threads.html#GThreadPriority"/>
465
+ <keyword type="struct" name="GThread" link="glib-Threads.html#GThread"/>
466
+ <keyword type="function" name="g_thread_create ()" link="glib-Threads.html#g-thread-create"/>
467
+ <keyword type="function" name="g_thread_create_full ()" link="glib-Threads.html#g-thread-create-full"/>
468
+ <keyword type="function" name="g_thread_self ()" link="glib-Threads.html#g-thread-self"/>
469
+ <keyword type="function" name="g_thread_join ()" link="glib-Threads.html#g-thread-join"/>
470
+ <keyword type="function" name="g_thread_set_priority ()" link="glib-Threads.html#g-thread-set-priority"/>
471
+ <keyword type="function" name="g_thread_yield ()" link="glib-Threads.html#g-thread-yield"/>
472
+ <keyword type="function" name="g_thread_exit ()" link="glib-Threads.html#g-thread-exit"/>
473
+ <keyword type="function" name="g_thread_foreach ()" link="glib-Threads.html#g-thread-foreach" since="2.10"/>
474
+ <keyword type="struct" name="GMutex" link="glib-Threads.html#GMutex"/>
475
+ <keyword type="function" name="g_mutex_new ()" link="glib-Threads.html#g-mutex-new"/>
476
+ <keyword type="function" name="g_mutex_lock ()" link="glib-Threads.html#g-mutex-lock"/>
477
+ <keyword type="function" name="g_mutex_trylock ()" link="glib-Threads.html#g-mutex-trylock"/>
478
+ <keyword type="function" name="g_mutex_unlock ()" link="glib-Threads.html#g-mutex-unlock"/>
479
+ <keyword type="function" name="g_mutex_free ()" link="glib-Threads.html#g-mutex-free"/>
480
+ <keyword type="struct" name="GStaticMutex" link="glib-Threads.html#GStaticMutex"/>
481
+ <keyword type="macro" name="G_STATIC_MUTEX_INIT" link="glib-Threads.html#G-STATIC-MUTEX-INIT:CAPS"/>
482
+ <keyword type="function" name="g_static_mutex_init ()" link="glib-Threads.html#g-static-mutex-init"/>
483
+ <keyword type="function" name="g_static_mutex_lock ()" link="glib-Threads.html#g-static-mutex-lock"/>
484
+ <keyword type="function" name="g_static_mutex_trylock ()" link="glib-Threads.html#g-static-mutex-trylock"/>
485
+ <keyword type="function" name="g_static_mutex_unlock ()" link="glib-Threads.html#g-static-mutex-unlock"/>
486
+ <keyword type="function" name="g_static_mutex_get_mutex ()" link="glib-Threads.html#g-static-mutex-get-mutex"/>
487
+ <keyword type="function" name="g_static_mutex_free ()" link="glib-Threads.html#g-static-mutex-free"/>
488
+ <keyword type="macro" name="G_LOCK_DEFINE()" link="glib-Threads.html#G-LOCK-DEFINE:CAPS"/>
489
+ <keyword type="macro" name="G_LOCK_DEFINE_STATIC()" link="glib-Threads.html#G-LOCK-DEFINE-STATIC:CAPS"/>
490
+ <keyword type="macro" name="G_LOCK_EXTERN()" link="glib-Threads.html#G-LOCK-EXTERN:CAPS"/>
491
+ <keyword type="macro" name="G_LOCK()" link="glib-Threads.html#G-LOCK:CAPS"/>
492
+ <keyword type="macro" name="G_TRYLOCK()" link="glib-Threads.html#G-TRYLOCK:CAPS"/>
493
+ <keyword type="macro" name="G_UNLOCK()" link="glib-Threads.html#G-UNLOCK:CAPS"/>
494
+ <keyword type="struct" name="GStaticRecMutex" link="glib-Threads.html#GStaticRecMutex"/>
495
+ <keyword type="macro" name="G_STATIC_REC_MUTEX_INIT" link="glib-Threads.html#G-STATIC-REC-MUTEX-INIT:CAPS"/>
496
+ <keyword type="function" name="g_static_rec_mutex_init ()" link="glib-Threads.html#g-static-rec-mutex-init"/>
497
+ <keyword type="function" name="g_static_rec_mutex_lock ()" link="glib-Threads.html#g-static-rec-mutex-lock"/>
498
+ <keyword type="function" name="g_static_rec_mutex_trylock ()" link="glib-Threads.html#g-static-rec-mutex-trylock"/>
499
+ <keyword type="function" name="g_static_rec_mutex_unlock ()" link="glib-Threads.html#g-static-rec-mutex-unlock"/>
500
+ <keyword type="function" name="g_static_rec_mutex_lock_full ()" link="glib-Threads.html#g-static-rec-mutex-lock-full"/>
501
+ <keyword type="function" name="g_static_rec_mutex_unlock_full ()" link="glib-Threads.html#g-static-rec-mutex-unlock-full"/>
502
+ <keyword type="function" name="g_static_rec_mutex_free ()" link="glib-Threads.html#g-static-rec-mutex-free"/>
503
+ <keyword type="struct" name="GStaticRWLock" link="glib-Threads.html#GStaticRWLock"/>
504
+ <keyword type="macro" name="G_STATIC_RW_LOCK_INIT" link="glib-Threads.html#G-STATIC-RW-LOCK-INIT:CAPS"/>
505
+ <keyword type="function" name="g_static_rw_lock_init ()" link="glib-Threads.html#g-static-rw-lock-init"/>
506
+ <keyword type="function" name="g_static_rw_lock_reader_lock ()" link="glib-Threads.html#g-static-rw-lock-reader-lock"/>
507
+ <keyword type="function" name="g_static_rw_lock_reader_trylock ()" link="glib-Threads.html#g-static-rw-lock-reader-trylock"/>
508
+ <keyword type="function" name="g_static_rw_lock_reader_unlock ()" link="glib-Threads.html#g-static-rw-lock-reader-unlock"/>
509
+ <keyword type="function" name="g_static_rw_lock_writer_lock ()" link="glib-Threads.html#g-static-rw-lock-writer-lock"/>
510
+ <keyword type="function" name="g_static_rw_lock_writer_trylock ()" link="glib-Threads.html#g-static-rw-lock-writer-trylock"/>
511
+ <keyword type="function" name="g_static_rw_lock_writer_unlock ()" link="glib-Threads.html#g-static-rw-lock-writer-unlock"/>
512
+ <keyword type="function" name="g_static_rw_lock_free ()" link="glib-Threads.html#g-static-rw-lock-free"/>
513
+ <keyword type="struct" name="GCond" link="glib-Threads.html#GCond"/>
514
+ <keyword type="function" name="g_cond_new ()" link="glib-Threads.html#g-cond-new"/>
515
+ <keyword type="function" name="g_cond_signal ()" link="glib-Threads.html#g-cond-signal"/>
516
+ <keyword type="function" name="g_cond_broadcast ()" link="glib-Threads.html#g-cond-broadcast"/>
517
+ <keyword type="function" name="g_cond_wait ()" link="glib-Threads.html#g-cond-wait"/>
518
+ <keyword type="function" name="g_cond_timed_wait ()" link="glib-Threads.html#g-cond-timed-wait"/>
519
+ <keyword type="function" name="g_cond_free ()" link="glib-Threads.html#g-cond-free"/>
520
+ <keyword type="struct" name="GPrivate" link="glib-Threads.html#GPrivate"/>
521
+ <keyword type="function" name="g_private_new ()" link="glib-Threads.html#g-private-new"/>
522
+ <keyword type="function" name="g_private_get ()" link="glib-Threads.html#g-private-get"/>
523
+ <keyword type="function" name="g_private_set ()" link="glib-Threads.html#g-private-set"/>
524
+ <keyword type="struct" name="GStaticPrivate" link="glib-Threads.html#GStaticPrivate"/>
525
+ <keyword type="macro" name="G_STATIC_PRIVATE_INIT" link="glib-Threads.html#G-STATIC-PRIVATE-INIT:CAPS"/>
526
+ <keyword type="function" name="g_static_private_init ()" link="glib-Threads.html#g-static-private-init"/>
527
+ <keyword type="function" name="g_static_private_get ()" link="glib-Threads.html#g-static-private-get"/>
528
+ <keyword type="function" name="g_static_private_set ()" link="glib-Threads.html#g-static-private-set"/>
529
+ <keyword type="function" name="g_static_private_free ()" link="glib-Threads.html#g-static-private-free"/>
530
+ <keyword type="struct" name="GOnce" link="glib-Threads.html#GOnce" since="2.4"/>
531
+ <keyword type="enum" name="enum GOnceStatus" link="glib-Threads.html#GOnceStatus" since="2.4"/>
532
+ <keyword type="macro" name="G_ONCE_INIT" link="glib-Threads.html#G-ONCE-INIT:CAPS" since="2.4"/>
533
+ <keyword type="macro" name="g_once()" link="glib-Threads.html#g-once" since="2.4"/>
534
+ <keyword type="function" name="g_once_init_enter ()" link="glib-Threads.html#g-once-init-enter" since="2.14"/>
535
+ <keyword type="function" name="g_once_init_leave ()" link="glib-Threads.html#g-once-init-leave" since="2.14"/>
536
+ <keyword type="function" name="g_bit_lock ()" link="glib-Threads.html#g-bit-lock" since="2.24"/>
537
+ <keyword type="function" name="g_bit_trylock ()" link="glib-Threads.html#g-bit-trylock" since="2.24"/>
538
+ <keyword type="function" name="g_bit_unlock ()" link="glib-Threads.html#g-bit-unlock" since="2.24"/>
539
+ <keyword type="struct" name="GThreadPool" link="glib-Thread-Pools.html#GThreadPool"/>
540
+ <keyword type="function" name="g_thread_pool_new ()" link="glib-Thread-Pools.html#g-thread-pool-new"/>
541
+ <keyword type="function" name="g_thread_pool_push ()" link="glib-Thread-Pools.html#g-thread-pool-push"/>
542
+ <keyword type="function" name="g_thread_pool_set_max_threads ()" link="glib-Thread-Pools.html#g-thread-pool-set-max-threads"/>
543
+ <keyword type="function" name="g_thread_pool_get_max_threads ()" link="glib-Thread-Pools.html#g-thread-pool-get-max-threads"/>
544
+ <keyword type="function" name="g_thread_pool_get_num_threads ()" link="glib-Thread-Pools.html#g-thread-pool-get-num-threads"/>
545
+ <keyword type="function" name="g_thread_pool_unprocessed ()" link="glib-Thread-Pools.html#g-thread-pool-unprocessed"/>
546
+ <keyword type="function" name="g_thread_pool_free ()" link="glib-Thread-Pools.html#g-thread-pool-free"/>
547
+ <keyword type="function" name="g_thread_pool_set_max_unused_threads ()" link="glib-Thread-Pools.html#g-thread-pool-set-max-unused-threads"/>
548
+ <keyword type="function" name="g_thread_pool_get_max_unused_threads ()" link="glib-Thread-Pools.html#g-thread-pool-get-max-unused-threads"/>
549
+ <keyword type="function" name="g_thread_pool_get_num_unused_threads ()" link="glib-Thread-Pools.html#g-thread-pool-get-num-unused-threads"/>
550
+ <keyword type="function" name="g_thread_pool_stop_unused_threads ()" link="glib-Thread-Pools.html#g-thread-pool-stop-unused-threads"/>
551
+ <keyword type="function" name="g_thread_pool_set_sort_function ()" link="glib-Thread-Pools.html#g-thread-pool-set-sort-function" since="2.10"/>
552
+ <keyword type="function" name="g_thread_pool_set_max_idle_time ()" link="glib-Thread-Pools.html#g-thread-pool-set-max-idle-time" since="2.10"/>
553
+ <keyword type="function" name="g_thread_pool_get_max_idle_time ()" link="glib-Thread-Pools.html#g-thread-pool-get-max-idle-time" since="2.10"/>
554
+ <keyword type="struct" name="GAsyncQueue" link="glib-Asynchronous-Queues.html#GAsyncQueue"/>
555
+ <keyword type="function" name="g_async_queue_new ()" link="glib-Asynchronous-Queues.html#g-async-queue-new"/>
556
+ <keyword type="function" name="g_async_queue_new_full ()" link="glib-Asynchronous-Queues.html#g-async-queue-new-full" since="2.16"/>
557
+ <keyword type="function" name="g_async_queue_ref ()" link="glib-Asynchronous-Queues.html#g-async-queue-ref"/>
558
+ <keyword type="function" name="g_async_queue_unref ()" link="glib-Asynchronous-Queues.html#g-async-queue-unref"/>
559
+ <keyword type="function" name="g_async_queue_push ()" link="glib-Asynchronous-Queues.html#g-async-queue-push"/>
560
+ <keyword type="function" name="g_async_queue_push_sorted ()" link="glib-Asynchronous-Queues.html#g-async-queue-push-sorted" since="2.10"/>
561
+ <keyword type="function" name="g_async_queue_pop ()" link="glib-Asynchronous-Queues.html#g-async-queue-pop"/>
562
+ <keyword type="function" name="g_async_queue_try_pop ()" link="glib-Asynchronous-Queues.html#g-async-queue-try-pop"/>
563
+ <keyword type="function" name="g_async_queue_timed_pop ()" link="glib-Asynchronous-Queues.html#g-async-queue-timed-pop"/>
564
+ <keyword type="function" name="g_async_queue_length ()" link="glib-Asynchronous-Queues.html#g-async-queue-length"/>
565
+ <keyword type="function" name="g_async_queue_sort ()" link="glib-Asynchronous-Queues.html#g-async-queue-sort" since="2.10"/>
566
+ <keyword type="function" name="g_async_queue_lock ()" link="glib-Asynchronous-Queues.html#g-async-queue-lock"/>
567
+ <keyword type="function" name="g_async_queue_unlock ()" link="glib-Asynchronous-Queues.html#g-async-queue-unlock"/>
568
+ <keyword type="function" name="g_async_queue_ref_unlocked ()" link="glib-Asynchronous-Queues.html#g-async-queue-ref-unlocked" deprecated=""/>
569
+ <keyword type="function" name="g_async_queue_unref_and_unlock ()" link="glib-Asynchronous-Queues.html#g-async-queue-unref-and-unlock" deprecated=""/>
570
+ <keyword type="function" name="g_async_queue_push_unlocked ()" link="glib-Asynchronous-Queues.html#g-async-queue-push-unlocked"/>
571
+ <keyword type="function" name="g_async_queue_push_sorted_unlocked ()" link="glib-Asynchronous-Queues.html#g-async-queue-push-sorted-unlocked" since="2.10"/>
572
+ <keyword type="function" name="g_async_queue_pop_unlocked ()" link="glib-Asynchronous-Queues.html#g-async-queue-pop-unlocked"/>
573
+ <keyword type="function" name="g_async_queue_try_pop_unlocked ()" link="glib-Asynchronous-Queues.html#g-async-queue-try-pop-unlocked"/>
574
+ <keyword type="function" name="g_async_queue_timed_pop_unlocked ()" link="glib-Asynchronous-Queues.html#g-async-queue-timed-pop-unlocked"/>
575
+ <keyword type="function" name="g_async_queue_length_unlocked ()" link="glib-Asynchronous-Queues.html#g-async-queue-length-unlocked"/>
576
+ <keyword type="function" name="g_async_queue_sort_unlocked ()" link="glib-Asynchronous-Queues.html#g-async-queue-sort-unlocked" since="2.10"/>
577
+ <keyword type="struct" name="GModule" link="glib-Dynamic-Loading-of-Modules.html#GModule"/>
578
+ <keyword type="function" name="g_module_supported ()" link="glib-Dynamic-Loading-of-Modules.html#g-module-supported"/>
579
+ <keyword type="function" name="g_module_build_path ()" link="glib-Dynamic-Loading-of-Modules.html#g-module-build-path"/>
580
+ <keyword type="function" name="g_module_open ()" link="glib-Dynamic-Loading-of-Modules.html#g-module-open"/>
581
+ <keyword type="enum" name="enum GModuleFlags" link="glib-Dynamic-Loading-of-Modules.html#GModuleFlags"/>
582
+ <keyword type="function" name="g_module_symbol ()" link="glib-Dynamic-Loading-of-Modules.html#g-module-symbol"/>
583
+ <keyword type="function" name="g_module_name ()" link="glib-Dynamic-Loading-of-Modules.html#g-module-name"/>
584
+ <keyword type="function" name="g_module_make_resident ()" link="glib-Dynamic-Loading-of-Modules.html#g-module-make-resident"/>
585
+ <keyword type="function" name="g_module_close ()" link="glib-Dynamic-Loading-of-Modules.html#g-module-close"/>
586
+ <keyword type="function" name="g_module_error ()" link="glib-Dynamic-Loading-of-Modules.html#g-module-error"/>
587
+ <keyword type="function" name="GModuleCheckInit ()" link="glib-Dynamic-Loading-of-Modules.html#GModuleCheckInit"/>
588
+ <keyword type="function" name="GModuleUnload ()" link="glib-Dynamic-Loading-of-Modules.html#GModuleUnload"/>
589
+ <keyword type="macro" name="G_MODULE_SUFFIX" link="glib-Dynamic-Loading-of-Modules.html#G-MODULE-SUFFIX:CAPS"/>
590
+ <keyword type="macro" name="G_MODULE_EXPORT" link="glib-Dynamic-Loading-of-Modules.html#G-MODULE-EXPORT:CAPS"/>
591
+ <keyword type="macro" name="G_MODULE_IMPORT" link="glib-Dynamic-Loading-of-Modules.html#G-MODULE-IMPORT:CAPS"/>
592
+ <keyword type="macro" name="g_new()" link="glib-Memory-Allocation.html#g-new"/>
593
+ <keyword type="macro" name="g_new0()" link="glib-Memory-Allocation.html#g-new0"/>
594
+ <keyword type="macro" name="g_renew()" link="glib-Memory-Allocation.html#g-renew"/>
595
+ <keyword type="macro" name="g_try_new()" link="glib-Memory-Allocation.html#g-try-new" since="2.8"/>
596
+ <keyword type="macro" name="g_try_new0()" link="glib-Memory-Allocation.html#g-try-new0" since="2.8"/>
597
+ <keyword type="macro" name="g_try_renew()" link="glib-Memory-Allocation.html#g-try-renew" since="2.8"/>
598
+ <keyword type="function" name="g_malloc ()" link="glib-Memory-Allocation.html#g-malloc"/>
599
+ <keyword type="function" name="g_malloc0 ()" link="glib-Memory-Allocation.html#g-malloc0"/>
600
+ <keyword type="function" name="g_realloc ()" link="glib-Memory-Allocation.html#g-realloc"/>
601
+ <keyword type="function" name="g_try_malloc ()" link="glib-Memory-Allocation.html#g-try-malloc"/>
602
+ <keyword type="function" name="g_try_malloc0 ()" link="glib-Memory-Allocation.html#g-try-malloc0" since="2.8"/>
603
+ <keyword type="function" name="g_try_realloc ()" link="glib-Memory-Allocation.html#g-try-realloc"/>
604
+ <keyword type="function" name="g_malloc_n ()" link="glib-Memory-Allocation.html#g-malloc-n" since="2.24"/>
605
+ <keyword type="function" name="g_malloc0_n ()" link="glib-Memory-Allocation.html#g-malloc0-n" since="2.24"/>
606
+ <keyword type="function" name="g_realloc_n ()" link="glib-Memory-Allocation.html#g-realloc-n" since="2.24"/>
607
+ <keyword type="function" name="g_try_malloc_n ()" link="glib-Memory-Allocation.html#g-try-malloc-n" since="2.24"/>
608
+ <keyword type="function" name="g_try_malloc0_n ()" link="glib-Memory-Allocation.html#g-try-malloc0-n" since="2.24"/>
609
+ <keyword type="function" name="g_try_realloc_n ()" link="glib-Memory-Allocation.html#g-try-realloc-n" since="2.24"/>
610
+ <keyword type="function" name="g_free ()" link="glib-Memory-Allocation.html#g-free"/>
611
+ <keyword type="variable" name="g_mem_gc_friendly" link="glib-Memory-Allocation.html#g-mem-gc-friendly"/>
612
+ <keyword type="macro" name="g_alloca()" link="glib-Memory-Allocation.html#g-alloca"/>
613
+ <keyword type="macro" name="g_newa()" link="glib-Memory-Allocation.html#g-newa"/>
614
+ <keyword type="macro" name="g_memmove()" link="glib-Memory-Allocation.html#g-memmove"/>
615
+ <keyword type="function" name="g_memdup ()" link="glib-Memory-Allocation.html#g-memdup"/>
616
+ <keyword type="struct" name="GMemVTable" link="glib-Memory-Allocation.html#GMemVTable"/>
617
+ <keyword type="function" name="g_mem_set_vtable ()" link="glib-Memory-Allocation.html#g-mem-set-vtable"/>
618
+ <keyword type="function" name="g_mem_is_system_malloc ()" link="glib-Memory-Allocation.html#g-mem-is-system-malloc"/>
619
+ <keyword type="variable" name="glib_mem_profiler_table" link="glib-Memory-Allocation.html#glib-mem-profiler-table"/>
620
+ <keyword type="function" name="g_mem_profile ()" link="glib-Memory-Allocation.html#g-mem-profile"/>
621
+ <keyword type="struct" name="GIOChannel" link="glib-IO-Channels.html#GIOChannel"/>
622
+ <keyword type="function" name="g_io_channel_unix_new ()" link="glib-IO-Channels.html#g-io-channel-unix-new"/>
623
+ <keyword type="function" name="g_io_channel_unix_get_fd ()" link="glib-IO-Channels.html#g-io-channel-unix-get-fd"/>
624
+ <keyword type="function" name="g_io_channel_win32_new_fd ()" link="glib-IO-Channels.html#g-io-channel-win32-new-fd"/>
625
+ <keyword type="function" name="g_io_channel_win32_new_socket ()" link="glib-IO-Channels.html#g-io-channel-win32-new-socket"/>
626
+ <keyword type="function" name="g_io_channel_win32_new_messages ()" link="glib-IO-Channels.html#g-io-channel-win32-new-messages"/>
627
+ <keyword type="function" name="g_io_channel_init ()" link="glib-IO-Channels.html#g-io-channel-init"/>
628
+ <keyword type="function" name="g_io_channel_new_file ()" link="glib-IO-Channels.html#g-io-channel-new-file"/>
629
+ <keyword type="function" name="g_io_channel_read_chars ()" link="glib-IO-Channels.html#g-io-channel-read-chars"/>
630
+ <keyword type="function" name="g_io_channel_read_unichar ()" link="glib-IO-Channels.html#g-io-channel-read-unichar"/>
631
+ <keyword type="function" name="g_io_channel_read_line ()" link="glib-IO-Channels.html#g-io-channel-read-line"/>
632
+ <keyword type="function" name="g_io_channel_read_line_string ()" link="glib-IO-Channels.html#g-io-channel-read-line-string"/>
633
+ <keyword type="function" name="g_io_channel_read_to_end ()" link="glib-IO-Channels.html#g-io-channel-read-to-end"/>
634
+ <keyword type="function" name="g_io_channel_write_chars ()" link="glib-IO-Channels.html#g-io-channel-write-chars"/>
635
+ <keyword type="function" name="g_io_channel_write_unichar ()" link="glib-IO-Channels.html#g-io-channel-write-unichar"/>
636
+ <keyword type="function" name="g_io_channel_flush ()" link="glib-IO-Channels.html#g-io-channel-flush"/>
637
+ <keyword type="function" name="g_io_channel_seek_position ()" link="glib-IO-Channels.html#g-io-channel-seek-position"/>
638
+ <keyword type="enum" name="enum GSeekType" link="glib-IO-Channels.html#GSeekType"/>
639
+ <keyword type="function" name="g_io_channel_shutdown ()" link="glib-IO-Channels.html#g-io-channel-shutdown"/>
640
+ <keyword type="enum" name="enum GIOStatus" link="glib-IO-Channels.html#GIOStatus"/>
641
+ <keyword type="enum" name="enum GIOChannelError" link="glib-IO-Channels.html#GIOChannelError"/>
642
+ <keyword type="macro" name="G_IO_CHANNEL_ERROR" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR:CAPS"/>
643
+ <keyword type="function" name="g_io_channel_error_from_errno ()" link="glib-IO-Channels.html#g-io-channel-error-from-errno"/>
644
+ <keyword type="function" name="g_io_channel_ref ()" link="glib-IO-Channels.html#g-io-channel-ref"/>
645
+ <keyword type="function" name="g_io_channel_unref ()" link="glib-IO-Channels.html#g-io-channel-unref"/>
646
+ <keyword type="function" name="g_io_create_watch ()" link="glib-IO-Channels.html#g-io-create-watch"/>
647
+ <keyword type="function" name="g_io_add_watch ()" link="glib-IO-Channels.html#g-io-add-watch"/>
648
+ <keyword type="function" name="g_io_add_watch_full ()" link="glib-IO-Channels.html#g-io-add-watch-full"/>
649
+ <keyword type="enum" name="enum GIOCondition" link="glib-IO-Channels.html#GIOCondition"/>
650
+ <keyword type="function" name="GIOFunc ()" link="glib-IO-Channels.html#GIOFunc"/>
651
+ <keyword type="struct" name="GIOFuncs" link="glib-IO-Channels.html#GIOFuncs"/>
652
+ <keyword type="function" name="g_io_channel_get_buffer_size ()" link="glib-IO-Channels.html#g-io-channel-get-buffer-size"/>
653
+ <keyword type="function" name="g_io_channel_set_buffer_size ()" link="glib-IO-Channels.html#g-io-channel-set-buffer-size"/>
654
+ <keyword type="function" name="g_io_channel_get_buffer_condition ()" link="glib-IO-Channels.html#g-io-channel-get-buffer-condition"/>
655
+ <keyword type="function" name="g_io_channel_get_flags ()" link="glib-IO-Channels.html#g-io-channel-get-flags"/>
656
+ <keyword type="function" name="g_io_channel_set_flags ()" link="glib-IO-Channels.html#g-io-channel-set-flags"/>
657
+ <keyword type="enum" name="enum GIOFlags" link="glib-IO-Channels.html#GIOFlags"/>
658
+ <keyword type="function" name="g_io_channel_get_line_term ()" link="glib-IO-Channels.html#g-io-channel-get-line-term"/>
659
+ <keyword type="function" name="g_io_channel_set_line_term ()" link="glib-IO-Channels.html#g-io-channel-set-line-term"/>
660
+ <keyword type="function" name="g_io_channel_get_buffered ()" link="glib-IO-Channels.html#g-io-channel-get-buffered"/>
661
+ <keyword type="function" name="g_io_channel_set_buffered ()" link="glib-IO-Channels.html#g-io-channel-set-buffered"/>
662
+ <keyword type="function" name="g_io_channel_get_encoding ()" link="glib-IO-Channels.html#g-io-channel-get-encoding"/>
663
+ <keyword type="function" name="g_io_channel_set_encoding ()" link="glib-IO-Channels.html#g-io-channel-set-encoding"/>
664
+ <keyword type="function" name="g_io_channel_get_close_on_unref ()" link="glib-IO-Channels.html#g-io-channel-get-close-on-unref"/>
665
+ <keyword type="function" name="g_io_channel_set_close_on_unref ()" link="glib-IO-Channels.html#g-io-channel-set-close-on-unref"/>
666
+ <keyword type="function" name="g_io_channel_read ()" link="glib-IO-Channels.html#g-io-channel-read" deprecated="2.2: Use g_io_channel_read_chars() instead."/>
667
+ <keyword type="enum" name="enum GIOError" link="glib-IO-Channels.html#GIOError"/>
668
+ <keyword type="function" name="g_io_channel_write ()" link="glib-IO-Channels.html#g-io-channel-write" deprecated="2.2: Use g_io_channel_write_chars() instead."/>
669
+ <keyword type="function" name="g_io_channel_seek ()" link="glib-IO-Channels.html#g-io-channel-seek" deprecated="2.2: Use g_io_channel_seek_position() instead."/>
670
+ <keyword type="function" name="g_io_channel_close ()" link="glib-IO-Channels.html#g-io-channel-close" deprecated="2.2: Use g_io_channel_shutdown() instead."/>
671
+ <keyword type="struct" name="GError" link="glib-Error-Reporting.html#GError"/>
672
+ <keyword type="function" name="g_error_new ()" link="glib-Error-Reporting.html#g-error-new"/>
673
+ <keyword type="function" name="g_error_new_literal ()" link="glib-Error-Reporting.html#g-error-new-literal"/>
674
+ <keyword type="function" name="g_error_new_valist ()" link="glib-Error-Reporting.html#g-error-new-valist" since="2.22"/>
675
+ <keyword type="function" name="g_error_free ()" link="glib-Error-Reporting.html#g-error-free"/>
676
+ <keyword type="function" name="g_error_copy ()" link="glib-Error-Reporting.html#g-error-copy"/>
677
+ <keyword type="function" name="g_error_matches ()" link="glib-Error-Reporting.html#g-error-matches"/>
678
+ <keyword type="function" name="g_set_error ()" link="glib-Error-Reporting.html#g-set-error"/>
679
+ <keyword type="function" name="g_set_error_literal ()" link="glib-Error-Reporting.html#g-set-error-literal" since="2.18"/>
680
+ <keyword type="function" name="g_propagate_error ()" link="glib-Error-Reporting.html#g-propagate-error"/>
681
+ <keyword type="function" name="g_clear_error ()" link="glib-Error-Reporting.html#g-clear-error"/>
682
+ <keyword type="function" name="g_prefix_error ()" link="glib-Error-Reporting.html#g-prefix-error" since="2.16"/>
683
+ <keyword type="function" name="g_propagate_prefixed_error ()" link="glib-Error-Reporting.html#g-propagate-prefixed-error" since="2.16"/>
684
+ <keyword type="function" name="g_print ()" link="glib-Warnings-and-Assertions.html#g-print"/>
685
+ <keyword type="function" name="g_set_print_handler ()" link="glib-Warnings-and-Assertions.html#g-set-print-handler"/>
686
+ <keyword type="function" name="GPrintFunc ()" link="glib-Warnings-and-Assertions.html#GPrintFunc"/>
687
+ <keyword type="function" name="g_printerr ()" link="glib-Warnings-and-Assertions.html#g-printerr"/>
688
+ <keyword type="function" name="g_set_printerr_handler ()" link="glib-Warnings-and-Assertions.html#g-set-printerr-handler"/>
689
+ <keyword type="macro" name="g_return_if_fail()" link="glib-Warnings-and-Assertions.html#g-return-if-fail"/>
690
+ <keyword type="macro" name="g_return_val_if_fail()" link="glib-Warnings-and-Assertions.html#g-return-val-if-fail"/>
691
+ <keyword type="macro" name="g_return_if_reached" link="glib-Warnings-and-Assertions.html#g-return-if-reached"/>
692
+ <keyword type="macro" name="g_return_val_if_reached()" link="glib-Warnings-and-Assertions.html#g-return-val-if-reached"/>
693
+ <keyword type="macro" name="g_warn_if_fail()" link="glib-Warnings-and-Assertions.html#g-warn-if-fail" since="2.16"/>
694
+ <keyword type="macro" name="g_warn_if_reached" link="glib-Warnings-and-Assertions.html#g-warn-if-reached" since="2.16"/>
695
+ <keyword type="function" name="g_on_error_query ()" link="glib-Warnings-and-Assertions.html#g-on-error-query"/>
696
+ <keyword type="function" name="g_on_error_stack_trace ()" link="glib-Warnings-and-Assertions.html#g-on-error-stack-trace"/>
697
+ <keyword type="macro" name="G_BREAKPOINT" link="glib-Warnings-and-Assertions.html#G-BREAKPOINT:CAPS"/>
698
+ <keyword type="macro" name="G_LOG_DOMAIN" link="glib-Message-Logging.html#G-LOG-DOMAIN:CAPS"/>
699
+ <keyword type="macro" name="G_LOG_FATAL_MASK" link="glib-Message-Logging.html#G-LOG-FATAL-MASK:CAPS"/>
700
+ <keyword type="macro" name="G_LOG_LEVEL_USER_SHIFT" link="glib-Message-Logging.html#G-LOG-LEVEL-USER-SHIFT:CAPS"/>
701
+ <keyword type="function" name="GLogFunc ()" link="glib-Message-Logging.html#GLogFunc"/>
702
+ <keyword type="enum" name="enum GLogLevelFlags" link="glib-Message-Logging.html#GLogLevelFlags"/>
703
+ <keyword type="function" name="g_log ()" link="glib-Message-Logging.html#g-log"/>
704
+ <keyword type="function" name="g_logv ()" link="glib-Message-Logging.html#g-logv"/>
705
+ <keyword type="macro" name="g_message()" link="glib-Message-Logging.html#g-message"/>
706
+ <keyword type="macro" name="g_warning()" link="glib-Message-Logging.html#g-warning"/>
707
+ <keyword type="macro" name="g_critical()" link="glib-Message-Logging.html#g-critical"/>
708
+ <keyword type="macro" name="g_error()" link="glib-Message-Logging.html#g-error"/>
709
+ <keyword type="macro" name="g_debug()" link="glib-Message-Logging.html#g-debug" since="2.6"/>
710
+ <keyword type="function" name="g_log_set_handler ()" link="glib-Message-Logging.html#g-log-set-handler"/>
711
+ <keyword type="function" name="g_log_remove_handler ()" link="glib-Message-Logging.html#g-log-remove-handler"/>
712
+ <keyword type="function" name="g_log_set_always_fatal ()" link="glib-Message-Logging.html#g-log-set-always-fatal"/>
713
+ <keyword type="function" name="g_log_set_fatal_mask ()" link="glib-Message-Logging.html#g-log-set-fatal-mask"/>
714
+ <keyword type="function" name="g_log_default_handler ()" link="glib-Message-Logging.html#g-log-default-handler"/>
715
+ <keyword type="function" name="g_log_set_default_handler ()" link="glib-Message-Logging.html#g-log-set-default-handler" since="2.6"/>
716
+ <keyword type="function" name="g_strdup ()" link="glib-String-Utility-Functions.html#g-strdup"/>
717
+ <keyword type="function" name="g_strndup ()" link="glib-String-Utility-Functions.html#g-strndup"/>
718
+ <keyword type="function" name="g_strdupv ()" link="glib-String-Utility-Functions.html#g-strdupv"/>
719
+ <keyword type="function" name="g_strnfill ()" link="glib-String-Utility-Functions.html#g-strnfill"/>
720
+ <keyword type="function" name="g_stpcpy ()" link="glib-String-Utility-Functions.html#g-stpcpy"/>
721
+ <keyword type="function" name="g_strstr_len ()" link="glib-String-Utility-Functions.html#g-strstr-len"/>
722
+ <keyword type="function" name="g_strrstr ()" link="glib-String-Utility-Functions.html#g-strrstr"/>
723
+ <keyword type="function" name="g_strrstr_len ()" link="glib-String-Utility-Functions.html#g-strrstr-len"/>
724
+ <keyword type="function" name="g_str_has_prefix ()" link="glib-String-Utility-Functions.html#g-str-has-prefix" since="2.2"/>
725
+ <keyword type="function" name="g_str_has_suffix ()" link="glib-String-Utility-Functions.html#g-str-has-suffix" since="2.2"/>
726
+ <keyword type="function" name="g_strcmp0 ()" link="glib-String-Utility-Functions.html#g-strcmp0" since="2.16"/>
727
+ <keyword type="function" name="g_strlcpy ()" link="glib-String-Utility-Functions.html#g-strlcpy"/>
728
+ <keyword type="function" name="g_strlcat ()" link="glib-String-Utility-Functions.html#g-strlcat"/>
729
+ <keyword type="function" name="g_strdup_printf ()" link="glib-String-Utility-Functions.html#g-strdup-printf"/>
730
+ <keyword type="function" name="g_strdup_vprintf ()" link="glib-String-Utility-Functions.html#g-strdup-vprintf"/>
731
+ <keyword type="function" name="g_printf ()" link="glib-String-Utility-Functions.html#g-printf" since="2.2"/>
732
+ <keyword type="function" name="g_vprintf ()" link="glib-String-Utility-Functions.html#g-vprintf" since="2.2"/>
733
+ <keyword type="function" name="g_fprintf ()" link="glib-String-Utility-Functions.html#g-fprintf" since="2.2"/>
734
+ <keyword type="function" name="g_vfprintf ()" link="glib-String-Utility-Functions.html#g-vfprintf" since="2.2"/>
735
+ <keyword type="function" name="g_sprintf ()" link="glib-String-Utility-Functions.html#g-sprintf" since="2.2"/>
736
+ <keyword type="function" name="g_vsprintf ()" link="glib-String-Utility-Functions.html#g-vsprintf" since="2.2"/>
737
+ <keyword type="function" name="g_snprintf ()" link="glib-String-Utility-Functions.html#g-snprintf"/>
738
+ <keyword type="function" name="g_vsnprintf ()" link="glib-String-Utility-Functions.html#g-vsnprintf"/>
739
+ <keyword type="function" name="g_vasprintf ()" link="glib-String-Utility-Functions.html#g-vasprintf" since="2.4"/>
740
+ <keyword type="function" name="g_printf_string_upper_bound ()" link="glib-String-Utility-Functions.html#g-printf-string-upper-bound"/>
741
+ <keyword type="function" name="g_ascii_isalnum ()" link="glib-String-Utility-Functions.html#g-ascii-isalnum"/>
742
+ <keyword type="function" name="g_ascii_isalpha ()" link="glib-String-Utility-Functions.html#g-ascii-isalpha"/>
743
+ <keyword type="function" name="g_ascii_iscntrl ()" link="glib-String-Utility-Functions.html#g-ascii-iscntrl"/>
744
+ <keyword type="function" name="g_ascii_isdigit ()" link="glib-String-Utility-Functions.html#g-ascii-isdigit"/>
745
+ <keyword type="function" name="g_ascii_isgraph ()" link="glib-String-Utility-Functions.html#g-ascii-isgraph"/>
746
+ <keyword type="function" name="g_ascii_islower ()" link="glib-String-Utility-Functions.html#g-ascii-islower"/>
747
+ <keyword type="function" name="g_ascii_isprint ()" link="glib-String-Utility-Functions.html#g-ascii-isprint"/>
748
+ <keyword type="function" name="g_ascii_ispunct ()" link="glib-String-Utility-Functions.html#g-ascii-ispunct"/>
749
+ <keyword type="function" name="g_ascii_isspace ()" link="glib-String-Utility-Functions.html#g-ascii-isspace"/>
750
+ <keyword type="function" name="g_ascii_isupper ()" link="glib-String-Utility-Functions.html#g-ascii-isupper"/>
751
+ <keyword type="function" name="g_ascii_isxdigit ()" link="glib-String-Utility-Functions.html#g-ascii-isxdigit"/>
752
+ <keyword type="function" name="g_ascii_digit_value ()" link="glib-String-Utility-Functions.html#g-ascii-digit-value"/>
753
+ <keyword type="function" name="g_ascii_xdigit_value ()" link="glib-String-Utility-Functions.html#g-ascii-xdigit-value"/>
754
+ <keyword type="function" name="g_ascii_strcasecmp ()" link="glib-String-Utility-Functions.html#g-ascii-strcasecmp"/>
755
+ <keyword type="function" name="g_ascii_strncasecmp ()" link="glib-String-Utility-Functions.html#g-ascii-strncasecmp"/>
756
+ <keyword type="function" name="g_ascii_strup ()" link="glib-String-Utility-Functions.html#g-ascii-strup"/>
757
+ <keyword type="function" name="g_ascii_strdown ()" link="glib-String-Utility-Functions.html#g-ascii-strdown"/>
758
+ <keyword type="function" name="g_ascii_tolower ()" link="glib-String-Utility-Functions.html#g-ascii-tolower"/>
759
+ <keyword type="function" name="g_ascii_toupper ()" link="glib-String-Utility-Functions.html#g-ascii-toupper"/>
760
+ <keyword type="function" name="g_string_ascii_up ()" link="glib-String-Utility-Functions.html#g-string-ascii-up"/>
761
+ <keyword type="function" name="g_string_ascii_down ()" link="glib-String-Utility-Functions.html#g-string-ascii-down"/>
762
+ <keyword type="function" name="g_strup ()" link="glib-String-Utility-Functions.html#g-strup" deprecated=""/>
763
+ <keyword type="function" name="g_strdown ()" link="glib-String-Utility-Functions.html#g-strdown" deprecated=""/>
764
+ <keyword type="function" name="g_strcasecmp ()" link="glib-String-Utility-Functions.html#g-strcasecmp" deprecated=""/>
765
+ <keyword type="function" name="g_strncasecmp ()" link="glib-String-Utility-Functions.html#g-strncasecmp" deprecated=""/>
766
+ <keyword type="function" name="g_strreverse ()" link="glib-String-Utility-Functions.html#g-strreverse"/>
767
+ <keyword type="function" name="g_ascii_strtoll ()" link="glib-String-Utility-Functions.html#g-ascii-strtoll" since="2.12"/>
768
+ <keyword type="function" name="g_ascii_strtoull ()" link="glib-String-Utility-Functions.html#g-ascii-strtoull" since="2.2"/>
769
+ <keyword type="macro" name="G_ASCII_DTOSTR_BUF_SIZE" link="glib-String-Utility-Functions.html#G-ASCII-DTOSTR-BUF-SIZE:CAPS"/>
770
+ <keyword type="function" name="g_ascii_strtod ()" link="glib-String-Utility-Functions.html#g-ascii-strtod"/>
771
+ <keyword type="function" name="g_ascii_dtostr ()" link="glib-String-Utility-Functions.html#g-ascii-dtostr"/>
772
+ <keyword type="function" name="g_ascii_formatd ()" link="glib-String-Utility-Functions.html#g-ascii-formatd"/>
773
+ <keyword type="function" name="g_strtod ()" link="glib-String-Utility-Functions.html#g-strtod"/>
774
+ <keyword type="function" name="g_strchug ()" link="glib-String-Utility-Functions.html#g-strchug"/>
775
+ <keyword type="function" name="g_strchomp ()" link="glib-String-Utility-Functions.html#g-strchomp"/>
776
+ <keyword type="macro" name="g_strstrip()" link="glib-String-Utility-Functions.html#g-strstrip"/>
777
+ <keyword type="function" name="g_strdelimit ()" link="glib-String-Utility-Functions.html#g-strdelimit"/>
778
+ <keyword type="macro" name="G_STR_DELIMITERS" link="glib-String-Utility-Functions.html#G-STR-DELIMITERS:CAPS"/>
779
+ <keyword type="function" name="g_strescape ()" link="glib-String-Utility-Functions.html#g-strescape"/>
780
+ <keyword type="function" name="g_strcompress ()" link="glib-String-Utility-Functions.html#g-strcompress"/>
781
+ <keyword type="function" name="g_strcanon ()" link="glib-String-Utility-Functions.html#g-strcanon"/>
782
+ <keyword type="function" name="g_strsplit ()" link="glib-String-Utility-Functions.html#g-strsplit"/>
783
+ <keyword type="function" name="g_strsplit_set ()" link="glib-String-Utility-Functions.html#g-strsplit-set" since="2.4"/>
784
+ <keyword type="function" name="g_strfreev ()" link="glib-String-Utility-Functions.html#g-strfreev"/>
785
+ <keyword type="function" name="g_strconcat ()" link="glib-String-Utility-Functions.html#g-strconcat"/>
786
+ <keyword type="function" name="g_strjoin ()" link="glib-String-Utility-Functions.html#g-strjoin"/>
787
+ <keyword type="function" name="g_strjoinv ()" link="glib-String-Utility-Functions.html#g-strjoinv"/>
788
+ <keyword type="function" name="g_strv_length ()" link="glib-String-Utility-Functions.html#g-strv-length" since="2.6"/>
789
+ <keyword type="function" name="g_strerror ()" link="glib-String-Utility-Functions.html#g-strerror"/>
790
+ <keyword type="function" name="g_strsignal ()" link="glib-String-Utility-Functions.html#g-strsignal"/>
791
+ <keyword type="" name="File Name Encodings" link="glib-Character-Set-Conversion.html#file-name-encodings"/>
792
+ <keyword type="function" name="g_convert ()" link="glib-Character-Set-Conversion.html#g-convert"/>
793
+ <keyword type="function" name="g_convert_with_fallback ()" link="glib-Character-Set-Conversion.html#g-convert-with-fallback"/>
794
+ <keyword type="struct" name="GIConv" link="glib-Character-Set-Conversion.html#GIConv"/>
795
+ <keyword type="function" name="g_convert_with_iconv ()" link="glib-Character-Set-Conversion.html#g-convert-with-iconv"/>
796
+ <keyword type="macro" name="G_CONVERT_ERROR" link="glib-Character-Set-Conversion.html#G-CONVERT-ERROR:CAPS"/>
797
+ <keyword type="function" name="g_iconv_open ()" link="glib-Character-Set-Conversion.html#g-iconv-open"/>
798
+ <keyword type="function" name="g_iconv ()" link="glib-Character-Set-Conversion.html#g-iconv"/>
799
+ <keyword type="function" name="g_iconv_close ()" link="glib-Character-Set-Conversion.html#g-iconv-close"/>
800
+ <keyword type="function" name="g_locale_to_utf8 ()" link="glib-Character-Set-Conversion.html#g-locale-to-utf8"/>
801
+ <keyword type="function" name="g_filename_to_utf8 ()" link="glib-Character-Set-Conversion.html#g-filename-to-utf8"/>
802
+ <keyword type="function" name="g_filename_from_utf8 ()" link="glib-Character-Set-Conversion.html#g-filename-from-utf8"/>
803
+ <keyword type="function" name="g_filename_from_uri ()" link="glib-Character-Set-Conversion.html#g-filename-from-uri"/>
804
+ <keyword type="function" name="g_filename_to_uri ()" link="glib-Character-Set-Conversion.html#g-filename-to-uri"/>
805
+ <keyword type="function" name="g_get_filename_charsets ()" link="glib-Character-Set-Conversion.html#g-get-filename-charsets" since="2.6"/>
806
+ <keyword type="function" name="g_filename_display_name ()" link="glib-Character-Set-Conversion.html#g-filename-display-name" since="2.6"/>
807
+ <keyword type="function" name="g_filename_display_basename ()" link="glib-Character-Set-Conversion.html#g-filename-display-basename" since="2.6"/>
808
+ <keyword type="function" name="g_locale_from_utf8 ()" link="glib-Character-Set-Conversion.html#g-locale-from-utf8"/>
809
+ <keyword type="enum" name="enum GConvertError" link="glib-Character-Set-Conversion.html#GConvertError"/>
810
+ <keyword type="function" name="g_get_charset ()" link="glib-Character-Set-Conversion.html#g-get-charset"/>
811
+ <keyword type="typedef" name="gunichar" link="glib-Unicode-Manipulation.html#gunichar"/>
812
+ <keyword type="typedef" name="gunichar2" link="glib-Unicode-Manipulation.html#gunichar2"/>
813
+ <keyword type="function" name="g_unichar_validate ()" link="glib-Unicode-Manipulation.html#g-unichar-validate"/>
814
+ <keyword type="function" name="g_unichar_isalnum ()" link="glib-Unicode-Manipulation.html#g-unichar-isalnum"/>
815
+ <keyword type="function" name="g_unichar_isalpha ()" link="glib-Unicode-Manipulation.html#g-unichar-isalpha"/>
816
+ <keyword type="function" name="g_unichar_iscntrl ()" link="glib-Unicode-Manipulation.html#g-unichar-iscntrl"/>
817
+ <keyword type="function" name="g_unichar_isdefined ()" link="glib-Unicode-Manipulation.html#g-unichar-isdefined"/>
818
+ <keyword type="function" name="g_unichar_isdigit ()" link="glib-Unicode-Manipulation.html#g-unichar-isdigit"/>
819
+ <keyword type="function" name="g_unichar_isgraph ()" link="glib-Unicode-Manipulation.html#g-unichar-isgraph"/>
820
+ <keyword type="function" name="g_unichar_islower ()" link="glib-Unicode-Manipulation.html#g-unichar-islower"/>
821
+ <keyword type="function" name="g_unichar_ismark ()" link="glib-Unicode-Manipulation.html#g-unichar-ismark" since="2.14"/>
822
+ <keyword type="function" name="g_unichar_isprint ()" link="glib-Unicode-Manipulation.html#g-unichar-isprint"/>
823
+ <keyword type="function" name="g_unichar_ispunct ()" link="glib-Unicode-Manipulation.html#g-unichar-ispunct"/>
824
+ <keyword type="function" name="g_unichar_isspace ()" link="glib-Unicode-Manipulation.html#g-unichar-isspace"/>
825
+ <keyword type="function" name="g_unichar_istitle ()" link="glib-Unicode-Manipulation.html#g-unichar-istitle"/>
826
+ <keyword type="function" name="g_unichar_isupper ()" link="glib-Unicode-Manipulation.html#g-unichar-isupper"/>
827
+ <keyword type="function" name="g_unichar_isxdigit ()" link="glib-Unicode-Manipulation.html#g-unichar-isxdigit"/>
828
+ <keyword type="function" name="g_unichar_iswide ()" link="glib-Unicode-Manipulation.html#g-unichar-iswide"/>
829
+ <keyword type="function" name="g_unichar_iswide_cjk ()" link="glib-Unicode-Manipulation.html#g-unichar-iswide-cjk" since="2.12"/>
830
+ <keyword type="function" name="g_unichar_iszerowidth ()" link="glib-Unicode-Manipulation.html#g-unichar-iszerowidth" since="2.14"/>
831
+ <keyword type="function" name="g_unichar_toupper ()" link="glib-Unicode-Manipulation.html#g-unichar-toupper"/>
832
+ <keyword type="function" name="g_unichar_tolower ()" link="glib-Unicode-Manipulation.html#g-unichar-tolower"/>
833
+ <keyword type="function" name="g_unichar_totitle ()" link="glib-Unicode-Manipulation.html#g-unichar-totitle"/>
834
+ <keyword type="function" name="g_unichar_digit_value ()" link="glib-Unicode-Manipulation.html#g-unichar-digit-value"/>
835
+ <keyword type="function" name="g_unichar_xdigit_value ()" link="glib-Unicode-Manipulation.html#g-unichar-xdigit-value"/>
836
+ <keyword type="enum" name="enum GUnicodeType" link="glib-Unicode-Manipulation.html#GUnicodeType"/>
837
+ <keyword type="function" name="g_unichar_type ()" link="glib-Unicode-Manipulation.html#g-unichar-type"/>
838
+ <keyword type="enum" name="enum GUnicodeBreakType" link="glib-Unicode-Manipulation.html#GUnicodeBreakType"/>
839
+ <keyword type="function" name="g_unichar_break_type ()" link="glib-Unicode-Manipulation.html#g-unichar-break-type"/>
840
+ <keyword type="function" name="g_unichar_combining_class ()" link="glib-Unicode-Manipulation.html#g-unichar-combining-class" since="2.14"/>
841
+ <keyword type="function" name="g_unicode_canonical_ordering ()" link="glib-Unicode-Manipulation.html#g-unicode-canonical-ordering"/>
842
+ <keyword type="function" name="g_unicode_canonical_decomposition ()" link="glib-Unicode-Manipulation.html#g-unicode-canonical-decomposition"/>
843
+ <keyword type="function" name="g_unichar_get_mirror_char ()" link="glib-Unicode-Manipulation.html#g-unichar-get-mirror-char" since="2.4"/>
844
+ <keyword type="enum" name="enum GUnicodeScript" link="glib-Unicode-Manipulation.html#GUnicodeScript"/>
845
+ <keyword type="function" name="g_unichar_get_script ()" link="glib-Unicode-Manipulation.html#g-unichar-get-script" since="2.14"/>
846
+ <keyword type="macro" name="g_utf8_next_char()" link="glib-Unicode-Manipulation.html#g-utf8-next-char"/>
847
+ <keyword type="function" name="g_utf8_get_char ()" link="glib-Unicode-Manipulation.html#g-utf8-get-char"/>
848
+ <keyword type="function" name="g_utf8_get_char_validated ()" link="glib-Unicode-Manipulation.html#g-utf8-get-char-validated"/>
849
+ <keyword type="function" name="g_utf8_offset_to_pointer ()" link="glib-Unicode-Manipulation.html#g-utf8-offset-to-pointer"/>
850
+ <keyword type="function" name="g_utf8_pointer_to_offset ()" link="glib-Unicode-Manipulation.html#g-utf8-pointer-to-offset"/>
851
+ <keyword type="function" name="g_utf8_prev_char ()" link="glib-Unicode-Manipulation.html#g-utf8-prev-char"/>
852
+ <keyword type="function" name="g_utf8_find_next_char ()" link="glib-Unicode-Manipulation.html#g-utf8-find-next-char"/>
853
+ <keyword type="function" name="g_utf8_find_prev_char ()" link="glib-Unicode-Manipulation.html#g-utf8-find-prev-char"/>
854
+ <keyword type="function" name="g_utf8_strlen ()" link="glib-Unicode-Manipulation.html#g-utf8-strlen"/>
855
+ <keyword type="function" name="g_utf8_strncpy ()" link="glib-Unicode-Manipulation.html#g-utf8-strncpy"/>
856
+ <keyword type="function" name="g_utf8_strchr ()" link="glib-Unicode-Manipulation.html#g-utf8-strchr"/>
857
+ <keyword type="function" name="g_utf8_strrchr ()" link="glib-Unicode-Manipulation.html#g-utf8-strrchr"/>
858
+ <keyword type="function" name="g_utf8_strreverse ()" link="glib-Unicode-Manipulation.html#g-utf8-strreverse" since="2.2"/>
859
+ <keyword type="function" name="g_utf8_validate ()" link="glib-Unicode-Manipulation.html#g-utf8-validate"/>
860
+ <keyword type="function" name="g_utf8_strup ()" link="glib-Unicode-Manipulation.html#g-utf8-strup"/>
861
+ <keyword type="function" name="g_utf8_strdown ()" link="glib-Unicode-Manipulation.html#g-utf8-strdown"/>
862
+ <keyword type="function" name="g_utf8_casefold ()" link="glib-Unicode-Manipulation.html#g-utf8-casefold"/>
863
+ <keyword type="function" name="g_utf8_normalize ()" link="glib-Unicode-Manipulation.html#g-utf8-normalize"/>
864
+ <keyword type="enum" name="enum GNormalizeMode" link="glib-Unicode-Manipulation.html#GNormalizeMode"/>
865
+ <keyword type="function" name="g_utf8_collate ()" link="glib-Unicode-Manipulation.html#g-utf8-collate"/>
866
+ <keyword type="function" name="g_utf8_collate_key ()" link="glib-Unicode-Manipulation.html#g-utf8-collate-key"/>
867
+ <keyword type="function" name="g_utf8_collate_key_for_filename ()" link="glib-Unicode-Manipulation.html#g-utf8-collate-key-for-filename" since="2.8"/>
868
+ <keyword type="function" name="g_utf8_to_utf16 ()" link="glib-Unicode-Manipulation.html#g-utf8-to-utf16"/>
869
+ <keyword type="function" name="g_utf8_to_ucs4 ()" link="glib-Unicode-Manipulation.html#g-utf8-to-ucs4"/>
870
+ <keyword type="function" name="g_utf8_to_ucs4_fast ()" link="glib-Unicode-Manipulation.html#g-utf8-to-ucs4-fast"/>
871
+ <keyword type="function" name="g_utf16_to_ucs4 ()" link="glib-Unicode-Manipulation.html#g-utf16-to-ucs4"/>
872
+ <keyword type="function" name="g_utf16_to_utf8 ()" link="glib-Unicode-Manipulation.html#g-utf16-to-utf8"/>
873
+ <keyword type="function" name="g_ucs4_to_utf16 ()" link="glib-Unicode-Manipulation.html#g-ucs4-to-utf16"/>
874
+ <keyword type="function" name="g_ucs4_to_utf8 ()" link="glib-Unicode-Manipulation.html#g-ucs4-to-utf8"/>
875
+ <keyword type="function" name="g_unichar_to_utf8 ()" link="glib-Unicode-Manipulation.html#g-unichar-to-utf8"/>
876
+ <keyword type="function" name="g_base64_encode_step ()" link="glib-Base64-Encoding.html#g-base64-encode-step" since="2.12"/>
877
+ <keyword type="function" name="g_base64_encode_close ()" link="glib-Base64-Encoding.html#g-base64-encode-close" since="2.12"/>
878
+ <keyword type="function" name="g_base64_encode ()" link="glib-Base64-Encoding.html#g-base64-encode" since="2.12"/>
879
+ <keyword type="function" name="g_base64_decode_step ()" link="glib-Base64-Encoding.html#g-base64-decode-step" since="2.12"/>
880
+ <keyword type="function" name="g_base64_decode ()" link="glib-Base64-Encoding.html#g-base64-decode" since="2.12"/>
881
+ <keyword type="function" name="g_base64_decode_inplace ()" link="glib-Base64-Encoding.html#g-base64-decode-inplace" since="2.20"/>
882
+ <keyword type="enum" name="enum GChecksumType" link="glib-Data-Checksums.html#GChecksumType" since="2.16"/>
883
+ <keyword type="function" name="g_checksum_type_get_length ()" link="glib-Data-Checksums.html#g-checksum-type-get-length" since="2.16"/>
884
+ <keyword type="struct" name="GChecksum" link="glib-Data-Checksums.html#GChecksum" since="2.16"/>
885
+ <keyword type="function" name="g_checksum_new ()" link="glib-Data-Checksums.html#g-checksum-new" since="2.16"/>
886
+ <keyword type="function" name="g_checksum_copy ()" link="glib-Data-Checksums.html#g-checksum-copy" since="2.16"/>
887
+ <keyword type="function" name="g_checksum_free ()" link="glib-Data-Checksums.html#g-checksum-free" since="2.16"/>
888
+ <keyword type="function" name="g_checksum_reset ()" link="glib-Data-Checksums.html#g-checksum-reset" since="2.18"/>
889
+ <keyword type="function" name="g_checksum_update ()" link="glib-Data-Checksums.html#g-checksum-update" since="2.16"/>
890
+ <keyword type="function" name="g_checksum_get_string ()" link="glib-Data-Checksums.html#g-checksum-get-string" since="2.16"/>
891
+ <keyword type="function" name="g_checksum_get_digest ()" link="glib-Data-Checksums.html#g-checksum-get-digest" since="2.16"/>
892
+ <keyword type="function" name="g_compute_checksum_for_data ()" link="glib-Data-Checksums.html#g-compute-checksum-for-data" since="2.16"/>
893
+ <keyword type="function" name="g_compute_checksum_for_string ()" link="glib-Data-Checksums.html#g-compute-checksum-for-string" since="2.16"/>
894
+ <keyword type="macro" name="Q_()" link="glib-I18N.html#Q-:CAPS" since="2.4"/>
895
+ <keyword type="macro" name="C_()" link="glib-I18N.html#C-:CAPS" since="2.16"/>
896
+ <keyword type="macro" name="N_()" link="glib-I18N.html#N-:CAPS" since="2.4"/>
897
+ <keyword type="macro" name="NC_()" link="glib-I18N.html#NC-:CAPS" since="2.18"/>
898
+ <keyword type="function" name="g_dgettext ()" link="glib-I18N.html#g-dgettext" since="2.18"/>
899
+ <keyword type="function" name="g_dngettext ()" link="glib-I18N.html#g-dngettext" since="2.18"/>
900
+ <keyword type="function" name="g_dpgettext ()" link="glib-I18N.html#g-dpgettext" since="2.16"/>
901
+ <keyword type="function" name="g_dpgettext2 ()" link="glib-I18N.html#g-dpgettext2" since="2.18"/>
902
+ <keyword type="function" name="g_strip_context ()" link="glib-I18N.html#g-strip-context" since="2.4"/>
903
+ <keyword type="function" name="g_get_language_names ()" link="glib-I18N.html#g-get-language-names" since="2.6"/>
904
+ <keyword type="macro" name="G_USEC_PER_SEC" link="glib-Date-and-Time-Functions.html#G-USEC-PER-SEC:CAPS"/>
905
+ <keyword type="struct" name="GTimeVal" link="glib-Date-and-Time-Functions.html#GTimeVal"/>
906
+ <keyword type="function" name="g_get_current_time ()" link="glib-Date-and-Time-Functions.html#g-get-current-time"/>
907
+ <keyword type="function" name="g_usleep ()" link="glib-Date-and-Time-Functions.html#g-usleep"/>
908
+ <keyword type="function" name="g_time_val_add ()" link="glib-Date-and-Time-Functions.html#g-time-val-add"/>
909
+ <keyword type="function" name="g_time_val_from_iso8601 ()" link="glib-Date-and-Time-Functions.html#g-time-val-from-iso8601" since="2.12"/>
910
+ <keyword type="function" name="g_time_val_to_iso8601 ()" link="glib-Date-and-Time-Functions.html#g-time-val-to-iso8601" since="2.12"/>
911
+ <keyword type="struct" name="GDate" link="glib-Date-and-Time-Functions.html#GDate"/>
912
+ <keyword type="typedef" name="GTime" link="glib-Date-and-Time-Functions.html#GTime"/>
913
+ <keyword type="enum" name="enum GDateDMY" link="glib-Date-and-Time-Functions.html#GDateDMY"/>
914
+ <keyword type="typedef" name="GDateDay" link="glib-Date-and-Time-Functions.html#GDateDay"/>
915
+ <keyword type="enum" name="enum GDateMonth" link="glib-Date-and-Time-Functions.html#GDateMonth"/>
916
+ <keyword type="typedef" name="GDateYear" link="glib-Date-and-Time-Functions.html#GDateYear"/>
917
+ <keyword type="enum" name="enum GDateWeekday" link="glib-Date-and-Time-Functions.html#GDateWeekday"/>
918
+ <keyword type="macro" name="G_DATE_BAD_DAY" link="glib-Date-and-Time-Functions.html#G-DATE-BAD-DAY:CAPS"/>
919
+ <keyword type="macro" name="G_DATE_BAD_JULIAN" link="glib-Date-and-Time-Functions.html#G-DATE-BAD-JULIAN:CAPS"/>
920
+ <keyword type="macro" name="G_DATE_BAD_YEAR" link="glib-Date-and-Time-Functions.html#G-DATE-BAD-YEAR:CAPS"/>
921
+ <keyword type="function" name="g_date_new ()" link="glib-Date-and-Time-Functions.html#g-date-new"/>
922
+ <keyword type="function" name="g_date_new_dmy ()" link="glib-Date-and-Time-Functions.html#g-date-new-dmy"/>
923
+ <keyword type="function" name="g_date_new_julian ()" link="glib-Date-and-Time-Functions.html#g-date-new-julian"/>
924
+ <keyword type="function" name="g_date_clear ()" link="glib-Date-and-Time-Functions.html#g-date-clear"/>
925
+ <keyword type="function" name="g_date_free ()" link="glib-Date-and-Time-Functions.html#g-date-free"/>
926
+ <keyword type="function" name="g_date_set_day ()" link="glib-Date-and-Time-Functions.html#g-date-set-day"/>
927
+ <keyword type="function" name="g_date_set_month ()" link="glib-Date-and-Time-Functions.html#g-date-set-month"/>
928
+ <keyword type="function" name="g_date_set_year ()" link="glib-Date-and-Time-Functions.html#g-date-set-year"/>
929
+ <keyword type="function" name="g_date_set_dmy ()" link="glib-Date-and-Time-Functions.html#g-date-set-dmy"/>
930
+ <keyword type="function" name="g_date_set_julian ()" link="glib-Date-and-Time-Functions.html#g-date-set-julian"/>
931
+ <keyword type="function" name="g_date_set_time ()" link="glib-Date-and-Time-Functions.html#g-date-set-time" deprecated="2.10: Use g_date_set_time_t() instead."/>
932
+ <keyword type="function" name="g_date_set_time_t ()" link="glib-Date-and-Time-Functions.html#g-date-set-time-t" since="2.10"/>
933
+ <keyword type="function" name="g_date_set_time_val ()" link="glib-Date-and-Time-Functions.html#g-date-set-time-val" since="2.10"/>
934
+ <keyword type="function" name="g_date_set_parse ()" link="glib-Date-and-Time-Functions.html#g-date-set-parse"/>
935
+ <keyword type="function" name="g_date_add_days ()" link="glib-Date-and-Time-Functions.html#g-date-add-days"/>
936
+ <keyword type="function" name="g_date_subtract_days ()" link="glib-Date-and-Time-Functions.html#g-date-subtract-days"/>
937
+ <keyword type="function" name="g_date_add_months ()" link="glib-Date-and-Time-Functions.html#g-date-add-months"/>
938
+ <keyword type="function" name="g_date_subtract_months ()" link="glib-Date-and-Time-Functions.html#g-date-subtract-months"/>
939
+ <keyword type="function" name="g_date_add_years ()" link="glib-Date-and-Time-Functions.html#g-date-add-years"/>
940
+ <keyword type="function" name="g_date_subtract_years ()" link="glib-Date-and-Time-Functions.html#g-date-subtract-years"/>
941
+ <keyword type="function" name="g_date_days_between ()" link="glib-Date-and-Time-Functions.html#g-date-days-between"/>
942
+ <keyword type="function" name="g_date_compare ()" link="glib-Date-and-Time-Functions.html#g-date-compare"/>
943
+ <keyword type="function" name="g_date_clamp ()" link="glib-Date-and-Time-Functions.html#g-date-clamp"/>
944
+ <keyword type="function" name="g_date_order ()" link="glib-Date-and-Time-Functions.html#g-date-order"/>
945
+ <keyword type="function" name="g_date_get_day ()" link="glib-Date-and-Time-Functions.html#g-date-get-day"/>
946
+ <keyword type="function" name="g_date_get_month ()" link="glib-Date-and-Time-Functions.html#g-date-get-month"/>
947
+ <keyword type="function" name="g_date_get_year ()" link="glib-Date-and-Time-Functions.html#g-date-get-year"/>
948
+ <keyword type="function" name="g_date_get_julian ()" link="glib-Date-and-Time-Functions.html#g-date-get-julian"/>
949
+ <keyword type="function" name="g_date_get_weekday ()" link="glib-Date-and-Time-Functions.html#g-date-get-weekday"/>
950
+ <keyword type="function" name="g_date_get_day_of_year ()" link="glib-Date-and-Time-Functions.html#g-date-get-day-of-year"/>
951
+ <keyword type="function" name="g_date_get_days_in_month ()" link="glib-Date-and-Time-Functions.html#g-date-get-days-in-month"/>
952
+ <keyword type="function" name="g_date_is_first_of_month ()" link="glib-Date-and-Time-Functions.html#g-date-is-first-of-month"/>
953
+ <keyword type="function" name="g_date_is_last_of_month ()" link="glib-Date-and-Time-Functions.html#g-date-is-last-of-month"/>
954
+ <keyword type="function" name="g_date_is_leap_year ()" link="glib-Date-and-Time-Functions.html#g-date-is-leap-year"/>
955
+ <keyword type="function" name="g_date_get_monday_week_of_year ()" link="glib-Date-and-Time-Functions.html#g-date-get-monday-week-of-year"/>
956
+ <keyword type="function" name="g_date_get_monday_weeks_in_year ()" link="glib-Date-and-Time-Functions.html#g-date-get-monday-weeks-in-year"/>
957
+ <keyword type="function" name="g_date_get_sunday_week_of_year ()" link="glib-Date-and-Time-Functions.html#g-date-get-sunday-week-of-year"/>
958
+ <keyword type="function" name="g_date_get_sunday_weeks_in_year ()" link="glib-Date-and-Time-Functions.html#g-date-get-sunday-weeks-in-year"/>
959
+ <keyword type="function" name="g_date_get_iso8601_week_of_year ()" link="glib-Date-and-Time-Functions.html#g-date-get-iso8601-week-of-year" since="2.6"/>
960
+ <keyword type="function" name="g_date_strftime ()" link="glib-Date-and-Time-Functions.html#g-date-strftime"/>
961
+ <keyword type="function" name="g_date_to_struct_tm ()" link="glib-Date-and-Time-Functions.html#g-date-to-struct-tm"/>
962
+ <keyword type="function" name="g_date_valid ()" link="glib-Date-and-Time-Functions.html#g-date-valid"/>
963
+ <keyword type="function" name="g_date_valid_day ()" link="glib-Date-and-Time-Functions.html#g-date-valid-day"/>
964
+ <keyword type="function" name="g_date_valid_month ()" link="glib-Date-and-Time-Functions.html#g-date-valid-month"/>
965
+ <keyword type="function" name="g_date_valid_year ()" link="glib-Date-and-Time-Functions.html#g-date-valid-year"/>
966
+ <keyword type="function" name="g_date_valid_dmy ()" link="glib-Date-and-Time-Functions.html#g-date-valid-dmy"/>
967
+ <keyword type="function" name="g_date_valid_julian ()" link="glib-Date-and-Time-Functions.html#g-date-valid-julian"/>
968
+ <keyword type="function" name="g_date_valid_weekday ()" link="glib-Date-and-Time-Functions.html#g-date-valid-weekday"/>
969
+ <keyword type="struct" name="GRand" link="glib-Random-Numbers.html#GRand"/>
970
+ <keyword type="function" name="g_rand_new_with_seed ()" link="glib-Random-Numbers.html#g-rand-new-with-seed"/>
971
+ <keyword type="function" name="g_rand_new_with_seed_array ()" link="glib-Random-Numbers.html#g-rand-new-with-seed-array" since="2.4"/>
972
+ <keyword type="function" name="g_rand_new ()" link="glib-Random-Numbers.html#g-rand-new"/>
973
+ <keyword type="function" name="g_rand_copy ()" link="glib-Random-Numbers.html#g-rand-copy" since="2.4"/>
974
+ <keyword type="function" name="g_rand_free ()" link="glib-Random-Numbers.html#g-rand-free"/>
975
+ <keyword type="function" name="g_rand_set_seed ()" link="glib-Random-Numbers.html#g-rand-set-seed"/>
976
+ <keyword type="function" name="g_rand_set_seed_array ()" link="glib-Random-Numbers.html#g-rand-set-seed-array" since="2.4"/>
977
+ <keyword type="macro" name="g_rand_boolean()" link="glib-Random-Numbers.html#g-rand-boolean"/>
978
+ <keyword type="function" name="g_rand_int ()" link="glib-Random-Numbers.html#g-rand-int"/>
979
+ <keyword type="function" name="g_rand_int_range ()" link="glib-Random-Numbers.html#g-rand-int-range"/>
980
+ <keyword type="function" name="g_rand_double ()" link="glib-Random-Numbers.html#g-rand-double"/>
981
+ <keyword type="function" name="g_rand_double_range ()" link="glib-Random-Numbers.html#g-rand-double-range"/>
982
+ <keyword type="function" name="g_random_set_seed ()" link="glib-Random-Numbers.html#g-random-set-seed"/>
983
+ <keyword type="macro" name="g_random_boolean" link="glib-Random-Numbers.html#g-random-boolean"/>
984
+ <keyword type="function" name="g_random_int ()" link="glib-Random-Numbers.html#g-random-int"/>
985
+ <keyword type="function" name="g_random_int_range ()" link="glib-Random-Numbers.html#g-random-int-range"/>
986
+ <keyword type="function" name="g_random_double ()" link="glib-Random-Numbers.html#g-random-double"/>
987
+ <keyword type="function" name="g_random_double_range ()" link="glib-Random-Numbers.html#g-random-double-range"/>
988
+ <keyword type="struct" name="GHookList" link="glib-Hook-Functions.html#GHookList"/>
989
+ <keyword type="function" name="GHookFinalizeFunc ()" link="glib-Hook-Functions.html#GHookFinalizeFunc"/>
990
+ <keyword type="struct" name="GHook" link="glib-Hook-Functions.html#GHook"/>
991
+ <keyword type="function" name="GHookFunc ()" link="glib-Hook-Functions.html#GHookFunc"/>
992
+ <keyword type="function" name="GHookCheckFunc ()" link="glib-Hook-Functions.html#GHookCheckFunc"/>
993
+ <keyword type="function" name="g_hook_list_init ()" link="glib-Hook-Functions.html#g-hook-list-init"/>
994
+ <keyword type="function" name="g_hook_list_invoke ()" link="glib-Hook-Functions.html#g-hook-list-invoke"/>
995
+ <keyword type="function" name="g_hook_list_invoke_check ()" link="glib-Hook-Functions.html#g-hook-list-invoke-check"/>
996
+ <keyword type="function" name="g_hook_list_marshal ()" link="glib-Hook-Functions.html#g-hook-list-marshal"/>
997
+ <keyword type="function" name="GHookMarshaller ()" link="glib-Hook-Functions.html#GHookMarshaller"/>
998
+ <keyword type="function" name="g_hook_list_marshal_check ()" link="glib-Hook-Functions.html#g-hook-list-marshal-check"/>
999
+ <keyword type="function" name="GHookCheckMarshaller ()" link="glib-Hook-Functions.html#GHookCheckMarshaller"/>
1000
+ <keyword type="function" name="g_hook_list_clear ()" link="glib-Hook-Functions.html#g-hook-list-clear"/>
1001
+ <keyword type="function" name="g_hook_alloc ()" link="glib-Hook-Functions.html#g-hook-alloc"/>
1002
+ <keyword type="macro" name="g_hook_append()" link="glib-Hook-Functions.html#g-hook-append"/>
1003
+ <keyword type="function" name="g_hook_prepend ()" link="glib-Hook-Functions.html#g-hook-prepend"/>
1004
+ <keyword type="function" name="g_hook_insert_before ()" link="glib-Hook-Functions.html#g-hook-insert-before"/>
1005
+ <keyword type="function" name="g_hook_insert_sorted ()" link="glib-Hook-Functions.html#g-hook-insert-sorted"/>
1006
+ <keyword type="function" name="GHookCompareFunc ()" link="glib-Hook-Functions.html#GHookCompareFunc"/>
1007
+ <keyword type="function" name="g_hook_compare_ids ()" link="glib-Hook-Functions.html#g-hook-compare-ids"/>
1008
+ <keyword type="function" name="g_hook_get ()" link="glib-Hook-Functions.html#g-hook-get"/>
1009
+ <keyword type="function" name="g_hook_find ()" link="glib-Hook-Functions.html#g-hook-find"/>
1010
+ <keyword type="function" name="GHookFindFunc ()" link="glib-Hook-Functions.html#GHookFindFunc"/>
1011
+ <keyword type="function" name="g_hook_find_data ()" link="glib-Hook-Functions.html#g-hook-find-data"/>
1012
+ <keyword type="function" name="g_hook_find_func ()" link="glib-Hook-Functions.html#g-hook-find-func"/>
1013
+ <keyword type="function" name="g_hook_find_func_data ()" link="glib-Hook-Functions.html#g-hook-find-func-data"/>
1014
+ <keyword type="function" name="g_hook_first_valid ()" link="glib-Hook-Functions.html#g-hook-first-valid"/>
1015
+ <keyword type="function" name="g_hook_next_valid ()" link="glib-Hook-Functions.html#g-hook-next-valid"/>
1016
+ <keyword type="enum" name="enum GHookFlagMask" link="glib-Hook-Functions.html#GHookFlagMask"/>
1017
+ <keyword type="macro" name="G_HOOK_FLAGS()" link="glib-Hook-Functions.html#G-HOOK-FLAGS:CAPS"/>
1018
+ <keyword type="macro" name="G_HOOK_FLAG_USER_SHIFT" link="glib-Hook-Functions.html#G-HOOK-FLAG-USER-SHIFT:CAPS"/>
1019
+ <keyword type="macro" name="G_HOOK()" link="glib-Hook-Functions.html#G-HOOK:CAPS"/>
1020
+ <keyword type="macro" name="G_HOOK_IS_VALID()" link="glib-Hook-Functions.html#G-HOOK-IS-VALID:CAPS"/>
1021
+ <keyword type="macro" name="G_HOOK_ACTIVE()" link="glib-Hook-Functions.html#G-HOOK-ACTIVE:CAPS"/>
1022
+ <keyword type="macro" name="G_HOOK_IN_CALL()" link="glib-Hook-Functions.html#G-HOOK-IN-CALL:CAPS"/>
1023
+ <keyword type="macro" name="G_HOOK_IS_UNLINKED()" link="glib-Hook-Functions.html#G-HOOK-IS-UNLINKED:CAPS"/>
1024
+ <keyword type="function" name="g_hook_ref ()" link="glib-Hook-Functions.html#g-hook-ref"/>
1025
+ <keyword type="function" name="g_hook_unref ()" link="glib-Hook-Functions.html#g-hook-unref"/>
1026
+ <keyword type="function" name="g_hook_free ()" link="glib-Hook-Functions.html#g-hook-free"/>
1027
+ <keyword type="function" name="g_hook_destroy ()" link="glib-Hook-Functions.html#g-hook-destroy"/>
1028
+ <keyword type="function" name="g_hook_destroy_link ()" link="glib-Hook-Functions.html#g-hook-destroy-link"/>
1029
+ <keyword type="function" name="g_get_application_name ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-application-name" since="2.2"/>
1030
+ <keyword type="function" name="g_set_application_name ()" link="glib-Miscellaneous-Utility-Functions.html#g-set-application-name" since="2.2"/>
1031
+ <keyword type="function" name="g_get_prgname ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-prgname"/>
1032
+ <keyword type="function" name="g_set_prgname ()" link="glib-Miscellaneous-Utility-Functions.html#g-set-prgname"/>
1033
+ <keyword type="function" name="g_getenv ()" link="glib-Miscellaneous-Utility-Functions.html#g-getenv"/>
1034
+ <keyword type="function" name="g_setenv ()" link="glib-Miscellaneous-Utility-Functions.html#g-setenv" since="2.4"/>
1035
+ <keyword type="function" name="g_unsetenv ()" link="glib-Miscellaneous-Utility-Functions.html#g-unsetenv" since="2.4"/>
1036
+ <keyword type="function" name="g_listenv ()" link="glib-Miscellaneous-Utility-Functions.html#g-listenv" since="2.8"/>
1037
+ <keyword type="function" name="g_get_user_name ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-user-name"/>
1038
+ <keyword type="function" name="g_get_real_name ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-real-name"/>
1039
+ <keyword type="function" name="g_get_user_cache_dir ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-user-cache-dir" since="2.6"/>
1040
+ <keyword type="function" name="g_get_user_data_dir ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-user-data-dir" since="2.6"/>
1041
+ <keyword type="function" name="g_get_user_config_dir ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-user-config-dir" since="2.6"/>
1042
+ <keyword type="enum" name="enum GUserDirectory" link="glib-Miscellaneous-Utility-Functions.html#GUserDirectory" since="2.14"/>
1043
+ <keyword type="function" name="g_get_user_special_dir ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-user-special-dir" since="2.14"/>
1044
+ <keyword type="function" name="g_get_system_data_dirs ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-system-data-dirs" since="2.6"/>
1045
+ <keyword type="function" name="g_get_system_config_dirs ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-system-config-dirs" since="2.6"/>
1046
+ <keyword type="function" name="g_reload_user_special_dirs_cache ()" link="glib-Miscellaneous-Utility-Functions.html#g-reload-user-special-dirs-cache" since="2.22"/>
1047
+ <keyword type="function" name="g_get_host_name ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-host-name" since="2.8"/>
1048
+ <keyword type="function" name="g_get_home_dir ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-home-dir"/>
1049
+ <keyword type="function" name="g_get_tmp_dir ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-tmp-dir"/>
1050
+ <keyword type="function" name="g_get_current_dir ()" link="glib-Miscellaneous-Utility-Functions.html#g-get-current-dir"/>
1051
+ <keyword type="function" name="g_basename ()" link="glib-Miscellaneous-Utility-Functions.html#g-basename" deprecated=""/>
1052
+ <keyword type="macro" name="g_dirname" link="glib-Miscellaneous-Utility-Functions.html#g-dirname" deprecated=""/>
1053
+ <keyword type="function" name="g_path_is_absolute ()" link="glib-Miscellaneous-Utility-Functions.html#g-path-is-absolute"/>
1054
+ <keyword type="function" name="g_path_skip_root ()" link="glib-Miscellaneous-Utility-Functions.html#g-path-skip-root"/>
1055
+ <keyword type="function" name="g_path_get_basename ()" link="glib-Miscellaneous-Utility-Functions.html#g-path-get-basename"/>
1056
+ <keyword type="function" name="g_path_get_dirname ()" link="glib-Miscellaneous-Utility-Functions.html#g-path-get-dirname"/>
1057
+ <keyword type="function" name="g_build_filename ()" link="glib-Miscellaneous-Utility-Functions.html#g-build-filename"/>
1058
+ <keyword type="function" name="g_build_filenamev ()" link="glib-Miscellaneous-Utility-Functions.html#g-build-filenamev" since="2.8"/>
1059
+ <keyword type="function" name="g_build_path ()" link="glib-Miscellaneous-Utility-Functions.html#g-build-path"/>
1060
+ <keyword type="function" name="g_build_pathv ()" link="glib-Miscellaneous-Utility-Functions.html#g-build-pathv" since="2.8"/>
1061
+ <keyword type="function" name="g_format_size_for_display ()" link="glib-Miscellaneous-Utility-Functions.html#g-format-size-for-display" since="2.16"/>
1062
+ <keyword type="function" name="g_find_program_in_path ()" link="glib-Miscellaneous-Utility-Functions.html#g-find-program-in-path"/>
1063
+ <keyword type="function" name="g_bit_nth_lsf ()" link="glib-Miscellaneous-Utility-Functions.html#g-bit-nth-lsf"/>
1064
+ <keyword type="function" name="g_bit_nth_msf ()" link="glib-Miscellaneous-Utility-Functions.html#g-bit-nth-msf"/>
1065
+ <keyword type="function" name="g_bit_storage ()" link="glib-Miscellaneous-Utility-Functions.html#g-bit-storage"/>
1066
+ <keyword type="function" name="g_spaced_primes_closest ()" link="glib-Miscellaneous-Utility-Functions.html#g-spaced-primes-closest"/>
1067
+ <keyword type="function" name="g_atexit ()" link="glib-Miscellaneous-Utility-Functions.html#g-atexit"/>
1068
+ <keyword type="function" name="g_parse_debug_string ()" link="glib-Miscellaneous-Utility-Functions.html#g-parse-debug-string"/>
1069
+ <keyword type="struct" name="GDebugKey" link="glib-Miscellaneous-Utility-Functions.html#GDebugKey"/>
1070
+ <keyword type="function" name="GVoidFunc ()" link="glib-Miscellaneous-Utility-Functions.html#GVoidFunc"/>
1071
+ <keyword type="function" name="GFreeFunc ()" link="glib-Miscellaneous-Utility-Functions.html#GFreeFunc"/>
1072
+ <keyword type="function" name="g_qsort_with_data ()" link="glib-Miscellaneous-Utility-Functions.html#g-qsort-with-data"/>
1073
+ <keyword type="function" name="g_nullify_pointer ()" link="glib-Miscellaneous-Utility-Functions.html#g-nullify-pointer"/>
1074
+ <keyword type="struct" name="GScanner" link="glib-Lexical-Scanner.html#GScanner"/>
1075
+ <keyword type="struct" name="GScannerConfig" link="glib-Lexical-Scanner.html#GScannerConfig"/>
1076
+ <keyword type="function" name="g_scanner_new ()" link="glib-Lexical-Scanner.html#g-scanner-new"/>
1077
+ <keyword type="function" name="g_scanner_destroy ()" link="glib-Lexical-Scanner.html#g-scanner-destroy"/>
1078
+ <keyword type="function" name="g_scanner_input_file ()" link="glib-Lexical-Scanner.html#g-scanner-input-file"/>
1079
+ <keyword type="function" name="g_scanner_sync_file_offset ()" link="glib-Lexical-Scanner.html#g-scanner-sync-file-offset"/>
1080
+ <keyword type="function" name="g_scanner_input_text ()" link="glib-Lexical-Scanner.html#g-scanner-input-text"/>
1081
+ <keyword type="function" name="g_scanner_peek_next_token ()" link="glib-Lexical-Scanner.html#g-scanner-peek-next-token"/>
1082
+ <keyword type="function" name="g_scanner_get_next_token ()" link="glib-Lexical-Scanner.html#g-scanner-get-next-token"/>
1083
+ <keyword type="function" name="g_scanner_eof ()" link="glib-Lexical-Scanner.html#g-scanner-eof"/>
1084
+ <keyword type="function" name="g_scanner_cur_line ()" link="glib-Lexical-Scanner.html#g-scanner-cur-line"/>
1085
+ <keyword type="function" name="g_scanner_cur_position ()" link="glib-Lexical-Scanner.html#g-scanner-cur-position"/>
1086
+ <keyword type="function" name="g_scanner_cur_token ()" link="glib-Lexical-Scanner.html#g-scanner-cur-token"/>
1087
+ <keyword type="function" name="g_scanner_cur_value ()" link="glib-Lexical-Scanner.html#g-scanner-cur-value"/>
1088
+ <keyword type="function" name="g_scanner_set_scope ()" link="glib-Lexical-Scanner.html#g-scanner-set-scope"/>
1089
+ <keyword type="function" name="g_scanner_scope_add_symbol ()" link="glib-Lexical-Scanner.html#g-scanner-scope-add-symbol"/>
1090
+ <keyword type="function" name="g_scanner_scope_foreach_symbol ()" link="glib-Lexical-Scanner.html#g-scanner-scope-foreach-symbol"/>
1091
+ <keyword type="function" name="g_scanner_scope_lookup_symbol ()" link="glib-Lexical-Scanner.html#g-scanner-scope-lookup-symbol"/>
1092
+ <keyword type="function" name="g_scanner_scope_remove_symbol ()" link="glib-Lexical-Scanner.html#g-scanner-scope-remove-symbol"/>
1093
+ <keyword type="macro" name="g_scanner_add_symbol()" link="glib-Lexical-Scanner.html#g-scanner-add-symbol" deprecated="2.2: Use g_scanner_scope_add_symbol() instead."/>
1094
+ <keyword type="macro" name="g_scanner_remove_symbol()" link="glib-Lexical-Scanner.html#g-scanner-remove-symbol" deprecated="2.2: Use g_scanner_scope_remove_symbol() instead."/>
1095
+ <keyword type="macro" name="g_scanner_foreach_symbol()" link="glib-Lexical-Scanner.html#g-scanner-foreach-symbol" deprecated="2.2: Use g_scanner_scope_foreach_symbol() instead."/>
1096
+ <keyword type="macro" name="g_scanner_freeze_symbol_table()" link="glib-Lexical-Scanner.html#g-scanner-freeze-symbol-table" deprecated="2.2: This macro does nothing."/>
1097
+ <keyword type="macro" name="g_scanner_thaw_symbol_table()" link="glib-Lexical-Scanner.html#g-scanner-thaw-symbol-table" deprecated="2.2: This macro does nothing."/>
1098
+ <keyword type="function" name="g_scanner_lookup_symbol ()" link="glib-Lexical-Scanner.html#g-scanner-lookup-symbol"/>
1099
+ <keyword type="function" name="g_scanner_warn ()" link="glib-Lexical-Scanner.html#g-scanner-warn"/>
1100
+ <keyword type="function" name="g_scanner_error ()" link="glib-Lexical-Scanner.html#g-scanner-error"/>
1101
+ <keyword type="function" name="g_scanner_unexp_token ()" link="glib-Lexical-Scanner.html#g-scanner-unexp-token"/>
1102
+ <keyword type="function" name="GScannerMsgFunc ()" link="glib-Lexical-Scanner.html#GScannerMsgFunc"/>
1103
+ <keyword type="macro" name="G_CSET_a_2_z" link="glib-Lexical-Scanner.html#G-CSET-a-2-z"/>
1104
+ <keyword type="macro" name="G_CSET_A_2_Z" link="glib-Lexical-Scanner.html#G-CSET-A-2-Z:CAPS"/>
1105
+ <keyword type="macro" name="G_CSET_DIGITS" link="glib-Lexical-Scanner.html#G-CSET-DIGITS:CAPS"/>
1106
+ <keyword type="macro" name="G_CSET_LATINC" link="glib-Lexical-Scanner.html#G-CSET-LATINC:CAPS"/>
1107
+ <keyword type="macro" name="G_CSET_LATINS" link="glib-Lexical-Scanner.html#G-CSET-LATINS:CAPS"/>
1108
+ <keyword type="enum" name="enum GTokenType" link="glib-Lexical-Scanner.html#GTokenType"/>
1109
+ <keyword type="union" name="union GTokenValue" link="glib-Lexical-Scanner.html#GTokenValue"/>
1110
+ <keyword type="enum" name="enum GErrorType" link="glib-Lexical-Scanner.html#GErrorType"/>
1111
+ <keyword type="struct" name="GCompletion" link="glib-Automatic-String-Completion.html#GCompletion"/>
1112
+ <keyword type="function" name="g_completion_new ()" link="glib-Automatic-String-Completion.html#g-completion-new"/>
1113
+ <keyword type="function" name="GCompletionFunc ()" link="glib-Automatic-String-Completion.html#GCompletionFunc"/>
1114
+ <keyword type="function" name="g_completion_add_items ()" link="glib-Automatic-String-Completion.html#g-completion-add-items"/>
1115
+ <keyword type="function" name="g_completion_remove_items ()" link="glib-Automatic-String-Completion.html#g-completion-remove-items"/>
1116
+ <keyword type="function" name="g_completion_clear_items ()" link="glib-Automatic-String-Completion.html#g-completion-clear-items"/>
1117
+ <keyword type="function" name="g_completion_complete ()" link="glib-Automatic-String-Completion.html#g-completion-complete"/>
1118
+ <keyword type="function" name="g_completion_complete_utf8 ()" link="glib-Automatic-String-Completion.html#g-completion-complete-utf8" since="2.4"/>
1119
+ <keyword type="function" name="g_completion_set_compare ()" link="glib-Automatic-String-Completion.html#g-completion-set-compare"/>
1120
+ <keyword type="function" name="GCompletionStrncmpFunc ()" link="glib-Automatic-String-Completion.html#GCompletionStrncmpFunc"/>
1121
+ <keyword type="function" name="g_completion_free ()" link="glib-Automatic-String-Completion.html#g-completion-free"/>
1122
+ <keyword type="struct" name="GTimer" link="glib-Timers.html#GTimer"/>
1123
+ <keyword type="function" name="g_timer_new ()" link="glib-Timers.html#g-timer-new"/>
1124
+ <keyword type="function" name="g_timer_start ()" link="glib-Timers.html#g-timer-start"/>
1125
+ <keyword type="function" name="g_timer_stop ()" link="glib-Timers.html#g-timer-stop"/>
1126
+ <keyword type="function" name="g_timer_continue ()" link="glib-Timers.html#g-timer-continue" since="2.4"/>
1127
+ <keyword type="function" name="g_timer_elapsed ()" link="glib-Timers.html#g-timer-elapsed"/>
1128
+ <keyword type="function" name="g_timer_reset ()" link="glib-Timers.html#g-timer-reset"/>
1129
+ <keyword type="function" name="g_timer_destroy ()" link="glib-Timers.html#g-timer-destroy"/>
1130
+ <keyword type="enum" name="enum GSpawnError" link="glib-Spawning-Processes.html#GSpawnError"/>
1131
+ <keyword type="macro" name="G_SPAWN_ERROR" link="glib-Spawning-Processes.html#G-SPAWN-ERROR:CAPS"/>
1132
+ <keyword type="enum" name="enum GSpawnFlags" link="glib-Spawning-Processes.html#GSpawnFlags"/>
1133
+ <keyword type="function" name="GSpawnChildSetupFunc ()" link="glib-Spawning-Processes.html#GSpawnChildSetupFunc"/>
1134
+ <keyword type="function" name="g_spawn_async_with_pipes ()" link="glib-Spawning-Processes.html#g-spawn-async-with-pipes"/>
1135
+ <keyword type="function" name="g_spawn_async ()" link="glib-Spawning-Processes.html#g-spawn-async"/>
1136
+ <keyword type="function" name="g_spawn_sync ()" link="glib-Spawning-Processes.html#g-spawn-sync"/>
1137
+ <keyword type="function" name="g_spawn_command_line_async ()" link="glib-Spawning-Processes.html#g-spawn-command-line-async"/>
1138
+ <keyword type="function" name="g_spawn_command_line_sync ()" link="glib-Spawning-Processes.html#g-spawn-command-line-sync"/>
1139
+ <keyword type="function" name="g_spawn_close_pid ()" link="glib-Spawning-Processes.html#g-spawn-close-pid"/>
1140
+ <keyword type="enum" name="enum GFileError" link="glib-File-Utilities.html#GFileError"/>
1141
+ <keyword type="macro" name="G_FILE_ERROR" link="glib-File-Utilities.html#G-FILE-ERROR:CAPS"/>
1142
+ <keyword type="enum" name="enum GFileTest" link="glib-File-Utilities.html#GFileTest"/>
1143
+ <keyword type="function" name="g_file_error_from_errno ()" link="glib-File-Utilities.html#g-file-error-from-errno"/>
1144
+ <keyword type="function" name="g_file_get_contents ()" link="glib-File-Utilities.html#g-file-get-contents"/>
1145
+ <keyword type="function" name="g_file_set_contents ()" link="glib-File-Utilities.html#g-file-set-contents" since="2.8"/>
1146
+ <keyword type="function" name="g_file_test ()" link="glib-File-Utilities.html#g-file-test"/>
1147
+ <keyword type="function" name="g_mkstemp ()" link="glib-File-Utilities.html#g-mkstemp"/>
1148
+ <keyword type="function" name="g_mkstemp_full ()" link="glib-File-Utilities.html#g-mkstemp-full" since="2.22"/>
1149
+ <keyword type="function" name="g_file_open_tmp ()" link="glib-File-Utilities.html#g-file-open-tmp"/>
1150
+ <keyword type="function" name="g_file_read_link ()" link="glib-File-Utilities.html#g-file-read-link" since="2.4"/>
1151
+ <keyword type="function" name="g_mkdir_with_parents ()" link="glib-File-Utilities.html#g-mkdir-with-parents" since="2.8"/>
1152
+ <keyword type="struct" name="GDir" link="glib-File-Utilities.html#GDir"/>
1153
+ <keyword type="function" name="g_dir_open ()" link="glib-File-Utilities.html#g-dir-open"/>
1154
+ <keyword type="function" name="g_dir_read_name ()" link="glib-File-Utilities.html#g-dir-read-name"/>
1155
+ <keyword type="function" name="g_dir_rewind ()" link="glib-File-Utilities.html#g-dir-rewind"/>
1156
+ <keyword type="function" name="g_dir_close ()" link="glib-File-Utilities.html#g-dir-close"/>
1157
+ <keyword type="struct" name="GMappedFile" link="glib-File-Utilities.html#GMappedFile"/>
1158
+ <keyword type="function" name="g_mapped_file_new ()" link="glib-File-Utilities.html#g-mapped-file-new" since="2.8"/>
1159
+ <keyword type="function" name="g_mapped_file_ref ()" link="glib-File-Utilities.html#g-mapped-file-ref" since="2.22"/>
1160
+ <keyword type="function" name="g_mapped_file_unref ()" link="glib-File-Utilities.html#g-mapped-file-unref"/>
1161
+ <keyword type="function" name="g_mapped_file_free ()" link="glib-File-Utilities.html#g-mapped-file-free" deprecated="2.22: Use g_mapped_file_unref() instead." since="2.8"/>
1162
+ <keyword type="function" name="g_mapped_file_get_length ()" link="glib-File-Utilities.html#g-mapped-file-get-length" since="2.8"/>
1163
+ <keyword type="function" name="g_mapped_file_get_contents ()" link="glib-File-Utilities.html#g-mapped-file-get-contents" since="2.8"/>
1164
+ <keyword type="function" name="g_open ()" link="glib-File-Utilities.html#g-open" since="2.6"/>
1165
+ <keyword type="function" name="g_rename ()" link="glib-File-Utilities.html#g-rename" since="2.6"/>
1166
+ <keyword type="function" name="g_mkdir ()" link="glib-File-Utilities.html#g-mkdir" since="2.6"/>
1167
+ <keyword type="function" name="g_stat ()" link="glib-File-Utilities.html#g-stat" since="2.6"/>
1168
+ <keyword type="function" name="g_lstat ()" link="glib-File-Utilities.html#g-lstat" since="2.6"/>
1169
+ <keyword type="function" name="g_unlink ()" link="glib-File-Utilities.html#g-unlink" since="2.6"/>
1170
+ <keyword type="function" name="g_remove ()" link="glib-File-Utilities.html#g-remove" since="2.6"/>
1171
+ <keyword type="function" name="g_rmdir ()" link="glib-File-Utilities.html#g-rmdir" since="2.6"/>
1172
+ <keyword type="function" name="g_fopen ()" link="glib-File-Utilities.html#g-fopen" since="2.6"/>
1173
+ <keyword type="function" name="g_freopen ()" link="glib-File-Utilities.html#g-freopen" since="2.6"/>
1174
+ <keyword type="function" name="g_chmod ()" link="glib-File-Utilities.html#g-chmod" since="2.8"/>
1175
+ <keyword type="function" name="g_access ()" link="glib-File-Utilities.html#g-access" since="2.8"/>
1176
+ <keyword type="function" name="g_creat ()" link="glib-File-Utilities.html#g-creat" since="2.8"/>
1177
+ <keyword type="function" name="g_chdir ()" link="glib-File-Utilities.html#g-chdir" since="2.8"/>
1178
+ <keyword type="function" name="g_utime ()" link="glib-File-Utilities.html#g-utime" since="2.18"/>
1179
+ <keyword type="macro" name="G_URI_RESERVED_CHARS_ALLOWED_IN_PATH" link="glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-PATH:CAPS"/>
1180
+ <keyword type="macro" name="G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT" link="glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-PATH-ELEMENT:CAPS"/>
1181
+ <keyword type="macro" name="G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO" link="glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-USERINFO:CAPS"/>
1182
+ <keyword type="macro" name="G_URI_RESERVED_CHARS_GENERIC_DELIMITERS" link="glib-URI-Functions.html#G-URI-RESERVED-CHARS-GENERIC-DELIMITERS:CAPS"/>
1183
+ <keyword type="macro" name="G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS" link="glib-URI-Functions.html#G-URI-RESERVED-CHARS-SUBCOMPONENT-DELIMITERS:CAPS"/>
1184
+ <keyword type="function" name="g_uri_parse_scheme ()" link="glib-URI-Functions.html#g-uri-parse-scheme" since="2.16"/>
1185
+ <keyword type="function" name="g_uri_escape_string ()" link="glib-URI-Functions.html#g-uri-escape-string" since="2.16"/>
1186
+ <keyword type="function" name="g_uri_unescape_string ()" link="glib-URI-Functions.html#g-uri-unescape-string" since="2.16"/>
1187
+ <keyword type="function" name="g_uri_unescape_segment ()" link="glib-URI-Functions.html#g-uri-unescape-segment" since="2.16"/>
1188
+ <keyword type="function" name="g_uri_list_extract_uris ()" link="glib-URI-Functions.html#g-uri-list-extract-uris" since="2.6"/>
1189
+ <keyword type="function" name="g_hostname_to_ascii ()" link="glib-Hostname-Utilities.html#g-hostname-to-ascii" since="2.22"/>
1190
+ <keyword type="function" name="g_hostname_to_unicode ()" link="glib-Hostname-Utilities.html#g-hostname-to-unicode" since="2.22"/>
1191
+ <keyword type="function" name="g_hostname_is_non_ascii ()" link="glib-Hostname-Utilities.html#g-hostname-is-non-ascii" since="2.22"/>
1192
+ <keyword type="function" name="g_hostname_is_ascii_encoded ()" link="glib-Hostname-Utilities.html#g-hostname-is-ascii-encoded" since="2.22"/>
1193
+ <keyword type="function" name="g_hostname_is_ip_address ()" link="glib-Hostname-Utilities.html#g-hostname-is-ip-address" since="2.22"/>
1194
+ <keyword type="enum" name="enum GShellError" link="glib-Shell-related-Utilities.html#GShellError"/>
1195
+ <keyword type="macro" name="G_SHELL_ERROR" link="glib-Shell-related-Utilities.html#G-SHELL-ERROR:CAPS"/>
1196
+ <keyword type="function" name="g_shell_parse_argv ()" link="glib-Shell-related-Utilities.html#g-shell-parse-argv"/>
1197
+ <keyword type="function" name="g_shell_quote ()" link="glib-Shell-related-Utilities.html#g-shell-quote"/>
1198
+ <keyword type="function" name="g_shell_unquote ()" link="glib-Shell-related-Utilities.html#g-shell-unquote"/>
1199
+ <keyword type="enum" name="enum GOptionError" link="glib-Commandline-option-parser.html#GOptionError"/>
1200
+ <keyword type="macro" name="G_OPTION_ERROR" link="glib-Commandline-option-parser.html#G-OPTION-ERROR:CAPS"/>
1201
+ <keyword type="function" name="GOptionArgFunc ()" link="glib-Commandline-option-parser.html#GOptionArgFunc"/>
1202
+ <keyword type="struct" name="GOptionContext" link="glib-Commandline-option-parser.html#GOptionContext"/>
1203
+ <keyword type="function" name="g_option_context_new ()" link="glib-Commandline-option-parser.html#g-option-context-new" since="2.6"/>
1204
+ <keyword type="function" name="g_option_context_set_summary ()" link="glib-Commandline-option-parser.html#g-option-context-set-summary" since="2.12"/>
1205
+ <keyword type="function" name="g_option_context_get_summary ()" link="glib-Commandline-option-parser.html#g-option-context-get-summary" since="2.12"/>
1206
+ <keyword type="function" name="g_option_context_set_description ()" link="glib-Commandline-option-parser.html#g-option-context-set-description" since="2.12"/>
1207
+ <keyword type="function" name="g_option_context_get_description ()" link="glib-Commandline-option-parser.html#g-option-context-get-description" since="2.12"/>
1208
+ <keyword type="function" name="GTranslateFunc ()" link="glib-Commandline-option-parser.html#GTranslateFunc"/>
1209
+ <keyword type="function" name="g_option_context_set_translate_func ()" link="glib-Commandline-option-parser.html#g-option-context-set-translate-func" since="2.12"/>
1210
+ <keyword type="function" name="g_option_context_set_translation_domain ()" link="glib-Commandline-option-parser.html#g-option-context-set-translation-domain" since="2.12"/>
1211
+ <keyword type="function" name="g_option_context_free ()" link="glib-Commandline-option-parser.html#g-option-context-free" since="2.6"/>
1212
+ <keyword type="function" name="g_option_context_parse ()" link="glib-Commandline-option-parser.html#g-option-context-parse" since="2.6"/>
1213
+ <keyword type="function" name="g_option_context_set_help_enabled ()" link="glib-Commandline-option-parser.html#g-option-context-set-help-enabled" since="2.6"/>
1214
+ <keyword type="function" name="g_option_context_get_help_enabled ()" link="glib-Commandline-option-parser.html#g-option-context-get-help-enabled" since="2.6"/>
1215
+ <keyword type="function" name="g_option_context_set_ignore_unknown_options ()" link="glib-Commandline-option-parser.html#g-option-context-set-ignore-unknown-options" since="2.6"/>
1216
+ <keyword type="function" name="g_option_context_get_ignore_unknown_options ()" link="glib-Commandline-option-parser.html#g-option-context-get-ignore-unknown-options" since="2.6"/>
1217
+ <keyword type="function" name="g_option_context_get_help ()" link="glib-Commandline-option-parser.html#g-option-context-get-help" since="2.14"/>
1218
+ <keyword type="enum" name="enum GOptionArg" link="glib-Commandline-option-parser.html#GOptionArg"/>
1219
+ <keyword type="enum" name="enum GOptionFlags" link="glib-Commandline-option-parser.html#GOptionFlags"/>
1220
+ <keyword type="macro" name="G_OPTION_REMAINING" link="glib-Commandline-option-parser.html#G-OPTION-REMAINING:CAPS" since="2.6"/>
1221
+ <keyword type="struct" name="GOptionEntry" link="glib-Commandline-option-parser.html#GOptionEntry"/>
1222
+ <keyword type="function" name="g_option_context_add_main_entries ()" link="glib-Commandline-option-parser.html#g-option-context-add-main-entries" since="2.6"/>
1223
+ <keyword type="struct" name="GOptionGroup" link="glib-Commandline-option-parser.html#GOptionGroup"/>
1224
+ <keyword type="function" name="g_option_context_add_group ()" link="glib-Commandline-option-parser.html#g-option-context-add-group" since="2.6"/>
1225
+ <keyword type="function" name="g_option_context_set_main_group ()" link="glib-Commandline-option-parser.html#g-option-context-set-main-group" since="2.6"/>
1226
+ <keyword type="function" name="g_option_context_get_main_group ()" link="glib-Commandline-option-parser.html#g-option-context-get-main-group" since="2.6"/>
1227
+ <keyword type="function" name="g_option_group_new ()" link="glib-Commandline-option-parser.html#g-option-group-new" since="2.6"/>
1228
+ <keyword type="function" name="g_option_group_free ()" link="glib-Commandline-option-parser.html#g-option-group-free" since="2.6"/>
1229
+ <keyword type="function" name="g_option_group_add_entries ()" link="glib-Commandline-option-parser.html#g-option-group-add-entries" since="2.6"/>
1230
+ <keyword type="function" name="GOptionParseFunc ()" link="glib-Commandline-option-parser.html#GOptionParseFunc"/>
1231
+ <keyword type="function" name="g_option_group_set_parse_hooks ()" link="glib-Commandline-option-parser.html#g-option-group-set-parse-hooks" since="2.6"/>
1232
+ <keyword type="function" name="GOptionErrorFunc ()" link="glib-Commandline-option-parser.html#GOptionErrorFunc"/>
1233
+ <keyword type="function" name="g_option_group_set_error_hook ()" link="glib-Commandline-option-parser.html#g-option-group-set-error-hook" since="2.6"/>
1234
+ <keyword type="function" name="g_option_group_set_translate_func ()" link="glib-Commandline-option-parser.html#g-option-group-set-translate-func" since="2.6"/>
1235
+ <keyword type="function" name="g_option_group_set_translation_domain ()" link="glib-Commandline-option-parser.html#g-option-group-set-translation-domain" since="2.6"/>
1236
+ <keyword type="struct" name="GPatternSpec" link="glib-Glob-style-pattern-matching.html#GPatternSpec"/>
1237
+ <keyword type="function" name="g_pattern_spec_new ()" link="glib-Glob-style-pattern-matching.html#g-pattern-spec-new"/>
1238
+ <keyword type="function" name="g_pattern_spec_free ()" link="glib-Glob-style-pattern-matching.html#g-pattern-spec-free"/>
1239
+ <keyword type="function" name="g_pattern_spec_equal ()" link="glib-Glob-style-pattern-matching.html#g-pattern-spec-equal"/>
1240
+ <keyword type="function" name="g_pattern_match ()" link="glib-Glob-style-pattern-matching.html#g-pattern-match"/>
1241
+ <keyword type="function" name="g_pattern_match_string ()" link="glib-Glob-style-pattern-matching.html#g-pattern-match-string"/>
1242
+ <keyword type="function" name="g_pattern_match_simple ()" link="glib-Glob-style-pattern-matching.html#g-pattern-match-simple"/>
1243
+ <keyword type="enum" name="enum GRegexError" link="glib-Perl-compatible-regular-expressions.html#GRegexError" since="2.14"/>
1244
+ <keyword type="macro" name="G_REGEX_ERROR" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR:CAPS" since="2.14"/>
1245
+ <keyword type="enum" name="enum GRegexCompileFlags" link="glib-Perl-compatible-regular-expressions.html#GRegexCompileFlags" since="2.14"/>
1246
+ <keyword type="enum" name="enum GRegexMatchFlags" link="glib-Perl-compatible-regular-expressions.html#GRegexMatchFlags" since="2.14"/>
1247
+ <keyword type="struct" name="GRegex" link="glib-Perl-compatible-regular-expressions.html#GRegex" since="2.14"/>
1248
+ <keyword type="function" name="GRegexEvalCallback ()" link="glib-Perl-compatible-regular-expressions.html#GRegexEvalCallback" since="2.14"/>
1249
+ <keyword type="function" name="g_regex_new ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-new" since="2.14"/>
1250
+ <keyword type="function" name="g_regex_ref ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-ref" since="2.14"/>
1251
+ <keyword type="function" name="g_regex_unref ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-unref" since="2.14"/>
1252
+ <keyword type="function" name="g_regex_get_pattern ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-get-pattern" since="2.14"/>
1253
+ <keyword type="function" name="g_regex_get_max_backref ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-get-max-backref" since="2.14"/>
1254
+ <keyword type="function" name="g_regex_get_capture_count ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-get-capture-count" since="2.14"/>
1255
+ <keyword type="function" name="g_regex_get_string_number ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-get-string-number" since="2.14"/>
1256
+ <keyword type="function" name="g_regex_escape_string ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-escape-string" since="2.14"/>
1257
+ <keyword type="function" name="g_regex_match_simple ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-match-simple" since="2.14"/>
1258
+ <keyword type="function" name="g_regex_match ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-match" since="2.14"/>
1259
+ <keyword type="function" name="g_regex_match_full ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-match-full" since="2.14"/>
1260
+ <keyword type="function" name="g_regex_match_all ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-match-all" since="2.14"/>
1261
+ <keyword type="function" name="g_regex_match_all_full ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-match-all-full" since="2.14"/>
1262
+ <keyword type="function" name="g_regex_split_simple ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-split-simple" since="2.14"/>
1263
+ <keyword type="function" name="g_regex_split ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-split" since="2.14"/>
1264
+ <keyword type="function" name="g_regex_split_full ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-split-full" since="2.14"/>
1265
+ <keyword type="function" name="g_regex_replace ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-replace" since="2.14"/>
1266
+ <keyword type="function" name="g_regex_replace_literal ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-replace-literal" since="2.14"/>
1267
+ <keyword type="function" name="g_regex_replace_eval ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-replace-eval" since="2.14"/>
1268
+ <keyword type="function" name="g_regex_check_replacement ()" link="glib-Perl-compatible-regular-expressions.html#g-regex-check-replacement" since="2.14"/>
1269
+ <keyword type="struct" name="GMatchInfo" link="glib-Perl-compatible-regular-expressions.html#GMatchInfo" since="2.14"/>
1270
+ <keyword type="function" name="g_match_info_get_regex ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-get-regex" since="2.14"/>
1271
+ <keyword type="function" name="g_match_info_get_string ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-get-string" since="2.14"/>
1272
+ <keyword type="function" name="g_match_info_free ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-free" since="2.14"/>
1273
+ <keyword type="function" name="g_match_info_matches ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-matches" since="2.14"/>
1274
+ <keyword type="function" name="g_match_info_next ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-next" since="2.14"/>
1275
+ <keyword type="function" name="g_match_info_get_match_count ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-get-match-count" since="2.14"/>
1276
+ <keyword type="function" name="g_match_info_is_partial_match ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-is-partial-match" since="2.14"/>
1277
+ <keyword type="function" name="g_match_info_expand_references ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-expand-references" since="2.14"/>
1278
+ <keyword type="function" name="g_match_info_fetch ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-fetch" since="2.14"/>
1279
+ <keyword type="function" name="g_match_info_fetch_pos ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-pos" since="2.14"/>
1280
+ <keyword type="function" name="g_match_info_fetch_named ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-named" since="2.14"/>
1281
+ <keyword type="function" name="g_match_info_fetch_named_pos ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-named-pos" since="2.14"/>
1282
+ <keyword type="function" name="g_match_info_fetch_all ()" link="glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-all" since="2.14"/>
1283
+ <keyword type="enum" name="enum GMarkupError" link="glib-Simple-XML-Subset-Parser.html#GMarkupError"/>
1284
+ <keyword type="macro" name="G_MARKUP_ERROR" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR:CAPS"/>
1285
+ <keyword type="enum" name="enum GMarkupParseFlags" link="glib-Simple-XML-Subset-Parser.html#GMarkupParseFlags"/>
1286
+ <keyword type="struct" name="GMarkupParseContext" link="glib-Simple-XML-Subset-Parser.html#GMarkupParseContext"/>
1287
+ <keyword type="struct" name="GMarkupParser" link="glib-Simple-XML-Subset-Parser.html#GMarkupParser"/>
1288
+ <keyword type="function" name="g_markup_escape_text ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-escape-text"/>
1289
+ <keyword type="function" name="g_markup_printf_escaped ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-printf-escaped" since="2.4"/>
1290
+ <keyword type="function" name="g_markup_vprintf_escaped ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-vprintf-escaped" since="2.4"/>
1291
+ <keyword type="function" name="g_markup_parse_context_end_parse ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-end-parse"/>
1292
+ <keyword type="function" name="g_markup_parse_context_free ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-free"/>
1293
+ <keyword type="function" name="g_markup_parse_context_get_position ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-position"/>
1294
+ <keyword type="function" name="g_markup_parse_context_get_element ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-element" since="2.2"/>
1295
+ <keyword type="function" name="g_markup_parse_context_get_element_stack ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-element-stack" since="2.16"/>
1296
+ <keyword type="function" name="g_markup_parse_context_get_user_data ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-user-data" since="2.18"/>
1297
+ <keyword type="function" name="g_markup_parse_context_new ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-new"/>
1298
+ <keyword type="function" name="g_markup_parse_context_parse ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-parse"/>
1299
+ <keyword type="function" name="g_markup_parse_context_push ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-push" since="2.18"/>
1300
+ <keyword type="function" name="g_markup_parse_context_pop ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-pop" since="2.18"/>
1301
+ <keyword type="enum" name="enum GMarkupCollectType" link="glib-Simple-XML-Subset-Parser.html#GMarkupCollectType"/>
1302
+ <keyword type="function" name="g_markup_collect_attributes ()" link="glib-Simple-XML-Subset-Parser.html#g-markup-collect-attributes" since="2.16"/>
1303
+ <keyword type="struct" name="GKeyFile" link="glib-Key-value-file-parser.html#GKeyFile"/>
1304
+ <keyword type="macro" name="G_KEY_FILE_ERROR" link="glib-Key-value-file-parser.html#G-KEY-FILE-ERROR:CAPS"/>
1305
+ <keyword type="enum" name="enum GKeyFileError" link="glib-Key-value-file-parser.html#GKeyFileError"/>
1306
+ <keyword type="enum" name="enum GKeyFileFlags" link="glib-Key-value-file-parser.html#GKeyFileFlags"/>
1307
+ <keyword type="function" name="g_key_file_new ()" link="glib-Key-value-file-parser.html#g-key-file-new" since="2.6"/>
1308
+ <keyword type="function" name="g_key_file_free ()" link="glib-Key-value-file-parser.html#g-key-file-free" since="2.6"/>
1309
+ <keyword type="function" name="g_key_file_set_list_separator ()" link="glib-Key-value-file-parser.html#g-key-file-set-list-separator" since="2.6"/>
1310
+ <keyword type="function" name="g_key_file_load_from_file ()" link="glib-Key-value-file-parser.html#g-key-file-load-from-file" since="2.6"/>
1311
+ <keyword type="function" name="g_key_file_load_from_data ()" link="glib-Key-value-file-parser.html#g-key-file-load-from-data" since="2.6"/>
1312
+ <keyword type="function" name="g_key_file_load_from_data_dirs ()" link="glib-Key-value-file-parser.html#g-key-file-load-from-data-dirs" since="2.6"/>
1313
+ <keyword type="function" name="g_key_file_load_from_dirs ()" link="glib-Key-value-file-parser.html#g-key-file-load-from-dirs" since="2.14"/>
1314
+ <keyword type="function" name="g_key_file_to_data ()" link="glib-Key-value-file-parser.html#g-key-file-to-data" since="2.6"/>
1315
+ <keyword type="function" name="g_key_file_get_start_group ()" link="glib-Key-value-file-parser.html#g-key-file-get-start-group" since="2.6"/>
1316
+ <keyword type="function" name="g_key_file_get_groups ()" link="glib-Key-value-file-parser.html#g-key-file-get-groups" since="2.6"/>
1317
+ <keyword type="function" name="g_key_file_get_keys ()" link="glib-Key-value-file-parser.html#g-key-file-get-keys" since="2.6"/>
1318
+ <keyword type="function" name="g_key_file_has_group ()" link="glib-Key-value-file-parser.html#g-key-file-has-group" since="2.6"/>
1319
+ <keyword type="function" name="g_key_file_has_key ()" link="glib-Key-value-file-parser.html#g-key-file-has-key" since="2.6"/>
1320
+ <keyword type="function" name="g_key_file_get_value ()" link="glib-Key-value-file-parser.html#g-key-file-get-value" since="2.6"/>
1321
+ <keyword type="function" name="g_key_file_get_string ()" link="glib-Key-value-file-parser.html#g-key-file-get-string" since="2.6"/>
1322
+ <keyword type="function" name="g_key_file_get_locale_string ()" link="glib-Key-value-file-parser.html#g-key-file-get-locale-string" since="2.6"/>
1323
+ <keyword type="function" name="g_key_file_get_boolean ()" link="glib-Key-value-file-parser.html#g-key-file-get-boolean" since="2.6"/>
1324
+ <keyword type="function" name="g_key_file_get_integer ()" link="glib-Key-value-file-parser.html#g-key-file-get-integer" since="2.6"/>
1325
+ <keyword type="function" name="g_key_file_get_double ()" link="glib-Key-value-file-parser.html#g-key-file-get-double" since="2.12"/>
1326
+ <keyword type="function" name="g_key_file_get_string_list ()" link="glib-Key-value-file-parser.html#g-key-file-get-string-list" since="2.6"/>
1327
+ <keyword type="function" name="g_key_file_get_locale_string_list ()" link="glib-Key-value-file-parser.html#g-key-file-get-locale-string-list" since="2.6"/>
1328
+ <keyword type="function" name="g_key_file_get_boolean_list ()" link="glib-Key-value-file-parser.html#g-key-file-get-boolean-list" since="2.6"/>
1329
+ <keyword type="function" name="g_key_file_get_integer_list ()" link="glib-Key-value-file-parser.html#g-key-file-get-integer-list" since="2.6"/>
1330
+ <keyword type="function" name="g_key_file_get_double_list ()" link="glib-Key-value-file-parser.html#g-key-file-get-double-list" since="2.12"/>
1331
+ <keyword type="function" name="g_key_file_get_comment ()" link="glib-Key-value-file-parser.html#g-key-file-get-comment" since="2.6"/>
1332
+ <keyword type="function" name="g_key_file_set_value ()" link="glib-Key-value-file-parser.html#g-key-file-set-value" since="2.6"/>
1333
+ <keyword type="function" name="g_key_file_set_string ()" link="glib-Key-value-file-parser.html#g-key-file-set-string" since="2.6"/>
1334
+ <keyword type="function" name="g_key_file_set_locale_string ()" link="glib-Key-value-file-parser.html#g-key-file-set-locale-string" since="2.6"/>
1335
+ <keyword type="function" name="g_key_file_set_boolean ()" link="glib-Key-value-file-parser.html#g-key-file-set-boolean" since="2.6"/>
1336
+ <keyword type="function" name="g_key_file_set_integer ()" link="glib-Key-value-file-parser.html#g-key-file-set-integer" since="2.6"/>
1337
+ <keyword type="function" name="g_key_file_set_double ()" link="glib-Key-value-file-parser.html#g-key-file-set-double" since="2.12"/>
1338
+ <keyword type="function" name="g_key_file_set_string_list ()" link="glib-Key-value-file-parser.html#g-key-file-set-string-list" since="2.6"/>
1339
+ <keyword type="function" name="g_key_file_set_locale_string_list ()" link="glib-Key-value-file-parser.html#g-key-file-set-locale-string-list" since="2.6"/>
1340
+ <keyword type="function" name="g_key_file_set_boolean_list ()" link="glib-Key-value-file-parser.html#g-key-file-set-boolean-list" since="2.6"/>
1341
+ <keyword type="function" name="g_key_file_set_integer_list ()" link="glib-Key-value-file-parser.html#g-key-file-set-integer-list" since="2.6"/>
1342
+ <keyword type="function" name="g_key_file_set_double_list ()" link="glib-Key-value-file-parser.html#g-key-file-set-double-list" since="2.12"/>
1343
+ <keyword type="function" name="g_key_file_set_comment ()" link="glib-Key-value-file-parser.html#g-key-file-set-comment" since="2.6"/>
1344
+ <keyword type="function" name="g_key_file_remove_group ()" link="glib-Key-value-file-parser.html#g-key-file-remove-group" since="2.6"/>
1345
+ <keyword type="function" name="g_key_file_remove_key ()" link="glib-Key-value-file-parser.html#g-key-file-remove-key" since="2.6"/>
1346
+ <keyword type="function" name="g_key_file_remove_comment ()" link="glib-Key-value-file-parser.html#g-key-file-remove-comment" since="2.6"/>
1347
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_GROUP" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-GROUP:CAPS" since="2.14"/>
1348
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_TYPE" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TYPE:CAPS" since="2.14"/>
1349
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_VERSION" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-VERSION:CAPS" since="2.14"/>
1350
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_NAME" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NAME:CAPS" since="2.14"/>
1351
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_GENERIC_NAME" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-GENERIC-NAME:CAPS" since="2.14"/>
1352
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NO-DISPLAY:CAPS" since="2.14"/>
1353
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_COMMENT" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-COMMENT:CAPS" since="2.14"/>
1354
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_ICON" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-ICON:CAPS" since="2.14"/>
1355
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_HIDDEN" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-HIDDEN:CAPS" since="2.14"/>
1356
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-ONLY-SHOW-IN:CAPS" since="2.14"/>
1357
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NOT-SHOW-IN:CAPS" since="2.14"/>
1358
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_TRY_EXEC" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TRY-EXEC:CAPS" since="2.14"/>
1359
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_EXEC" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-EXEC:CAPS" since="2.14"/>
1360
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_PATH" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-PATH:CAPS" since="2.14"/>
1361
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_TERMINAL" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TERMINAL:CAPS" since="2.14"/>
1362
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_MIME_TYPE" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-MIME-TYPE:CAPS" since="2.14"/>
1363
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_CATEGORIES" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-CATEGORIES:CAPS" since="2.14"/>
1364
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-STARTUP-NOTIFY:CAPS" since="2.14"/>
1365
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-STARTUP-WM-CLASS:CAPS" since="2.14"/>
1366
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_KEY_URL" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-URL:CAPS" since="2.14"/>
1367
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_TYPE_APPLICATION" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-APPLICATION:CAPS" since="2.14"/>
1368
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_TYPE_LINK" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-LINK:CAPS" since="2.14"/>
1369
+ <keyword type="macro" name="G_KEY_FILE_DESKTOP_TYPE_DIRECTORY" link="glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-DIRECTORY:CAPS" since="2.14"/>
1370
+ <keyword type="struct" name="GBookmarkFile" link="glib-Bookmark-file-parser.html#GBookmarkFile"/>
1371
+ <keyword type="macro" name="G_BOOKMARK_FILE_ERROR" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR:CAPS"/>
1372
+ <keyword type="enum" name="enum GBookmarkFileError" link="glib-Bookmark-file-parser.html#GBookmarkFileError"/>
1373
+ <keyword type="function" name="g_bookmark_file_new ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-new" since="2.12"/>
1374
+ <keyword type="function" name="g_bookmark_file_free ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-free" since="2.12"/>
1375
+ <keyword type="function" name="g_bookmark_file_load_from_file ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-load-from-file" since="2.12"/>
1376
+ <keyword type="function" name="g_bookmark_file_load_from_data ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-load-from-data" since="2.12"/>
1377
+ <keyword type="function" name="g_bookmark_file_load_from_data_dirs ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-load-from-data-dirs" since="2.12"/>
1378
+ <keyword type="function" name="g_bookmark_file_to_data ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-to-data" since="2.12"/>
1379
+ <keyword type="function" name="g_bookmark_file_to_file ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-to-file" since="2.12"/>
1380
+ <keyword type="function" name="g_bookmark_file_has_item ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-has-item" since="2.12"/>
1381
+ <keyword type="function" name="g_bookmark_file_has_group ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-has-group" since="2.12"/>
1382
+ <keyword type="function" name="g_bookmark_file_has_application ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-has-application" since="2.12"/>
1383
+ <keyword type="function" name="g_bookmark_file_get_size ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-size" since="2.12"/>
1384
+ <keyword type="function" name="g_bookmark_file_get_uris ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-uris" since="2.12"/>
1385
+ <keyword type="function" name="g_bookmark_file_get_title ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-title" since="2.12"/>
1386
+ <keyword type="function" name="g_bookmark_file_get_description ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-description" since="2.12"/>
1387
+ <keyword type="function" name="g_bookmark_file_get_mime_type ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-mime-type" since="2.12"/>
1388
+ <keyword type="function" name="g_bookmark_file_get_is_private ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-is-private" since="2.12"/>
1389
+ <keyword type="function" name="g_bookmark_file_get_icon ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-icon" since="2.12"/>
1390
+ <keyword type="function" name="g_bookmark_file_get_added ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-added" since="2.12"/>
1391
+ <keyword type="function" name="g_bookmark_file_get_modified ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-modified" since="2.12"/>
1392
+ <keyword type="function" name="g_bookmark_file_get_visited ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-visited" since="2.12"/>
1393
+ <keyword type="function" name="g_bookmark_file_get_groups ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-groups" since="2.12"/>
1394
+ <keyword type="function" name="g_bookmark_file_get_applications ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-applications" since="2.12"/>
1395
+ <keyword type="function" name="g_bookmark_file_get_app_info ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-get-app-info" since="2.12"/>
1396
+ <keyword type="function" name="g_bookmark_file_set_title ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-title" since="2.12"/>
1397
+ <keyword type="function" name="g_bookmark_file_set_description ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-description" since="2.12"/>
1398
+ <keyword type="function" name="g_bookmark_file_set_mime_type ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-mime-type" since="2.12"/>
1399
+ <keyword type="function" name="g_bookmark_file_set_is_private ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-is-private" since="2.12"/>
1400
+ <keyword type="function" name="g_bookmark_file_set_icon ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-icon" since="2.12"/>
1401
+ <keyword type="function" name="g_bookmark_file_set_added ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-added" since="2.12"/>
1402
+ <keyword type="function" name="g_bookmark_file_set_groups ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-groups" since="2.12"/>
1403
+ <keyword type="function" name="g_bookmark_file_set_modified ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-modified" since="2.12"/>
1404
+ <keyword type="function" name="g_bookmark_file_set_visited ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-visited" since="2.12"/>
1405
+ <keyword type="function" name="g_bookmark_file_set_app_info ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-set-app-info" since="2.12"/>
1406
+ <keyword type="function" name="g_bookmark_file_add_group ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-add-group" since="2.12"/>
1407
+ <keyword type="function" name="g_bookmark_file_add_application ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-add-application" since="2.12"/>
1408
+ <keyword type="function" name="g_bookmark_file_remove_group ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-remove-group" since="2.12"/>
1409
+ <keyword type="function" name="g_bookmark_file_remove_application ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-remove-application" since="2.12"/>
1410
+ <keyword type="function" name="g_bookmark_file_remove_item ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-remove-item" since="2.12"/>
1411
+ <keyword type="function" name="g_bookmark_file_move_item ()" link="glib-Bookmark-file-parser.html#g-bookmark-file-move-item" since="2.12"/>
1412
+ <keyword type="function" name="g_test_minimized_result ()" link="glib-Testing.html#g-test-minimized-result" since="2.16"/>
1413
+ <keyword type="function" name="g_test_maximized_result ()" link="glib-Testing.html#g-test-maximized-result" since="2.16"/>
1414
+ <keyword type="function" name="g_test_init ()" link="glib-Testing.html#g-test-init" since="2.16"/>
1415
+ <keyword type="macro" name="g_test_quick" link="glib-Testing.html#g-test-quick"/>
1416
+ <keyword type="macro" name="g_test_slow" link="glib-Testing.html#g-test-slow"/>
1417
+ <keyword type="macro" name="g_test_thorough" link="glib-Testing.html#g-test-thorough"/>
1418
+ <keyword type="macro" name="g_test_perf" link="glib-Testing.html#g-test-perf"/>
1419
+ <keyword type="macro" name="g_test_verbose" link="glib-Testing.html#g-test-verbose"/>
1420
+ <keyword type="macro" name="g_test_quiet" link="glib-Testing.html#g-test-quiet"/>
1421
+ <keyword type="function" name="g_test_run ()" link="glib-Testing.html#g-test-run" since="2.16"/>
1422
+ <keyword type="function" name="g_test_add_func ()" link="glib-Testing.html#g-test-add-func" since="2.16"/>
1423
+ <keyword type="function" name="g_test_add_data_func ()" link="glib-Testing.html#g-test-add-data-func" since="2.16"/>
1424
+ <keyword type="macro" name="g_test_add()" link="glib-Testing.html#g-test-add" since="2.16"/>
1425
+ <keyword type="function" name="g_test_message ()" link="glib-Testing.html#g-test-message" since="2.16"/>
1426
+ <keyword type="function" name="g_test_bug_base ()" link="glib-Testing.html#g-test-bug-base" since="2.16"/>
1427
+ <keyword type="function" name="g_test_bug ()" link="glib-Testing.html#g-test-bug" since="2.16"/>
1428
+ <keyword type="function" name="GTestLogFatalFunc ()" link="glib-Testing.html#GTestLogFatalFunc" since="2.22"/>
1429
+ <keyword type="function" name="g_test_log_set_fatal_handler ()" link="glib-Testing.html#g-test-log-set-fatal-handler" since="2.22"/>
1430
+ <keyword type="function" name="g_test_timer_start ()" link="glib-Testing.html#g-test-timer-start" since="2.16"/>
1431
+ <keyword type="function" name="g_test_timer_elapsed ()" link="glib-Testing.html#g-test-timer-elapsed" since="2.16"/>
1432
+ <keyword type="function" name="g_test_timer_last ()" link="glib-Testing.html#g-test-timer-last" since="2.16"/>
1433
+ <keyword type="function" name="g_test_queue_free ()" link="glib-Testing.html#g-test-queue-free" since="2.16"/>
1434
+ <keyword type="function" name="g_test_queue_destroy ()" link="glib-Testing.html#g-test-queue-destroy" since="2.16"/>
1435
+ <keyword type="macro" name="g_test_queue_unref()" link="glib-Testing.html#g-test-queue-unref" since="2.16"/>
1436
+ <keyword type="enum" name="enum GTestTrapFlags" link="glib-Testing.html#GTestTrapFlags"/>
1437
+ <keyword type="function" name="g_test_trap_fork ()" link="glib-Testing.html#g-test-trap-fork" since="2.16"/>
1438
+ <keyword type="function" name="g_test_trap_has_passed ()" link="glib-Testing.html#g-test-trap-has-passed" since="2.16"/>
1439
+ <keyword type="function" name="g_test_trap_reached_timeout ()" link="glib-Testing.html#g-test-trap-reached-timeout" since="2.16"/>
1440
+ <keyword type="macro" name="g_test_trap_assert_passed" link="glib-Testing.html#g-test-trap-assert-passed" since="2.16"/>
1441
+ <keyword type="macro" name="g_test_trap_assert_failed" link="glib-Testing.html#g-test-trap-assert-failed" since="2.16"/>
1442
+ <keyword type="macro" name="g_test_trap_assert_stdout()" link="glib-Testing.html#g-test-trap-assert-stdout" since="2.16"/>
1443
+ <keyword type="macro" name="g_test_trap_assert_stdout_unmatched()" link="glib-Testing.html#g-test-trap-assert-stdout-unmatched" since="2.16"/>
1444
+ <keyword type="macro" name="g_test_trap_assert_stderr()" link="glib-Testing.html#g-test-trap-assert-stderr" since="2.16"/>
1445
+ <keyword type="macro" name="g_test_trap_assert_stderr_unmatched()" link="glib-Testing.html#g-test-trap-assert-stderr-unmatched" since="2.16"/>
1446
+ <keyword type="macro" name="g_test_rand_bit" link="glib-Testing.html#g-test-rand-bit" since="2.16"/>
1447
+ <keyword type="function" name="g_test_rand_int ()" link="glib-Testing.html#g-test-rand-int" since="2.16"/>
1448
+ <keyword type="function" name="g_test_rand_int_range ()" link="glib-Testing.html#g-test-rand-int-range" since="2.16"/>
1449
+ <keyword type="function" name="g_test_rand_double ()" link="glib-Testing.html#g-test-rand-double" since="2.16"/>
1450
+ <keyword type="function" name="g_test_rand_double_range ()" link="glib-Testing.html#g-test-rand-double-range" since="2.16"/>
1451
+ <keyword type="macro" name="g_assert()" link="glib-Testing.html#g-assert"/>
1452
+ <keyword type="macro" name="g_assert_not_reached" link="glib-Testing.html#g-assert-not-reached"/>
1453
+ <keyword type="macro" name="g_assert_cmpstr()" link="glib-Testing.html#g-assert-cmpstr" since="2.16"/>
1454
+ <keyword type="macro" name="g_assert_cmpint()" link="glib-Testing.html#g-assert-cmpint" since="2.16"/>
1455
+ <keyword type="macro" name="g_assert_cmpuint()" link="glib-Testing.html#g-assert-cmpuint" since="2.16"/>
1456
+ <keyword type="macro" name="g_assert_cmphex()" link="glib-Testing.html#g-assert-cmphex" since="2.16"/>
1457
+ <keyword type="macro" name="g_assert_cmpfloat()" link="glib-Testing.html#g-assert-cmpfloat" since="2.16"/>
1458
+ <keyword type="macro" name="g_assert_no_error()" link="glib-Testing.html#g-assert-no-error" since="2.20"/>
1459
+ <keyword type="macro" name="g_assert_error()" link="glib-Testing.html#g-assert-error" since="2.20"/>
1460
+ <keyword type="typedef" name="GTestCase" link="glib-Testing.html#GTestCase"/>
1461
+ <keyword type="typedef" name="GTestSuite" link="glib-Testing.html#GTestSuite"/>
1462
+ <keyword type="function" name="g_test_create_case ()" link="glib-Testing.html#g-test-create-case" since="2.16"/>
1463
+ <keyword type="function" name="g_test_create_suite ()" link="glib-Testing.html#g-test-create-suite" since="2.16"/>
1464
+ <keyword type="function" name="g_test_get_root ()" link="glib-Testing.html#g-test-get-root" since="2.16"/>
1465
+ <keyword type="function" name="g_test_suite_add ()" link="glib-Testing.html#g-test-suite-add" since="2.16"/>
1466
+ <keyword type="function" name="g_test_suite_add_suite ()" link="glib-Testing.html#g-test-suite-add-suite" since="2.16"/>
1467
+ <keyword type="function" name="g_test_run_suite ()" link="glib-Testing.html#g-test-run-suite" since="2.16"/>
1468
+ <keyword type="macro" name="MAXPATHLEN" link="glib-Windows-Compatibility-Functions.html#MAXPATHLEN:CAPS"/>
1469
+ <keyword type="function" name="g_win32_error_message ()" link="glib-Windows-Compatibility-Functions.html#g-win32-error-message"/>
1470
+ <keyword type="function" name="g_win32_getlocale ()" link="glib-Windows-Compatibility-Functions.html#g-win32-getlocale"/>
1471
+ <keyword type="function" name="g_win32_get_package_installation_directory ()" link="glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-directory" deprecated=""/>
1472
+ <keyword type="function" name="g_win32_get_package_installation_directory_of_module ()" link="glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-directory-of-module" since="2.16"/>
1473
+ <keyword type="function" name="g_win32_get_package_installation_subdirectory ()" link="glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-subdirectory" deprecated=""/>
1474
+ <keyword type="function" name="g_win32_get_windows_version ()" link="glib-Windows-Compatibility-Functions.html#g-win32-get-windows-version" since="2.6"/>
1475
+ <keyword type="function" name="g_win32_locale_filename_from_utf8 ()" link="glib-Windows-Compatibility-Functions.html#g-win32-locale-filename-from-utf8" since="2.8"/>
1476
+ <keyword type="macro" name="G_WIN32_DLLMAIN_FOR_DLL_NAME()" link="glib-Windows-Compatibility-Functions.html#G-WIN32-DLLMAIN-FOR-DLL-NAME:CAPS" deprecated=""/>
1477
+ <keyword type="macro" name="G_WIN32_HAVE_WIDECHAR_API" link="glib-Windows-Compatibility-Functions.html#G-WIN32-HAVE-WIDECHAR-API:CAPS" since="2.6"/>
1478
+ <keyword type="macro" name="G_WIN32_IS_NT_BASED" link="glib-Windows-Compatibility-Functions.html#G-WIN32-IS-NT-BASED:CAPS" since="2.6"/>
1479
+ <keyword type="function" name="g_slice_alloc ()" link="glib-Memory-Slices.html#g-slice-alloc" since="2.10"/>
1480
+ <keyword type="function" name="g_slice_alloc0 ()" link="glib-Memory-Slices.html#g-slice-alloc0" since="2.10"/>
1481
+ <keyword type="function" name="g_slice_copy ()" link="glib-Memory-Slices.html#g-slice-copy" since="2.14"/>
1482
+ <keyword type="function" name="g_slice_free1 ()" link="glib-Memory-Slices.html#g-slice-free1" since="2.10"/>
1483
+ <keyword type="function" name="g_slice_free_chain_with_offset ()" link="glib-Memory-Slices.html#g-slice-free-chain-with-offset" since="2.10"/>
1484
+ <keyword type="macro" name="g_slice_new()" link="glib-Memory-Slices.html#g-slice-new" since="2.10"/>
1485
+ <keyword type="macro" name="g_slice_new0()" link="glib-Memory-Slices.html#g-slice-new0" since="2.10"/>
1486
+ <keyword type="macro" name="g_slice_dup()" link="glib-Memory-Slices.html#g-slice-dup" since="2.14"/>
1487
+ <keyword type="macro" name="g_slice_free()" link="glib-Memory-Slices.html#g-slice-free" since="2.10"/>
1488
+ <keyword type="macro" name="g_slice_free_chain()" link="glib-Memory-Slices.html#g-slice-free-chain" since="2.10"/>
1489
+ <keyword type="struct" name="GMemChunk" link="glib-Memory-Chunks.html#GMemChunk" deprecated=""/>
1490
+ <keyword type="macro" name="G_ALLOC_AND_FREE" link="glib-Memory-Chunks.html#G-ALLOC-AND-FREE:CAPS" deprecated=""/>
1491
+ <keyword type="macro" name="G_ALLOC_ONLY" link="glib-Memory-Chunks.html#G-ALLOC-ONLY:CAPS" deprecated=""/>
1492
+ <keyword type="function" name="g_mem_chunk_new ()" link="glib-Memory-Chunks.html#g-mem-chunk-new" deprecated=""/>
1493
+ <keyword type="function" name="g_mem_chunk_alloc ()" link="glib-Memory-Chunks.html#g-mem-chunk-alloc" deprecated="2.10: Use g_slice_alloc() instead"/>
1494
+ <keyword type="function" name="g_mem_chunk_alloc0 ()" link="glib-Memory-Chunks.html#g-mem-chunk-alloc0" deprecated="2.10: Use g_slice_alloc0() instead"/>
1495
+ <keyword type="function" name="g_mem_chunk_free ()" link="glib-Memory-Chunks.html#g-mem-chunk-free" deprecated="2.10: Use g_slice_free1() instead"/>
1496
+ <keyword type="function" name="g_mem_chunk_destroy ()" link="glib-Memory-Chunks.html#g-mem-chunk-destroy" deprecated=""/>
1497
+ <keyword type="macro" name="g_mem_chunk_create()" link="glib-Memory-Chunks.html#g-mem-chunk-create" deprecated=""/>
1498
+ <keyword type="macro" name="g_chunk_new()" link="glib-Memory-Chunks.html#g-chunk-new" deprecated="2.10: Use g_slice_new() instead"/>
1499
+ <keyword type="macro" name="g_chunk_new0()" link="glib-Memory-Chunks.html#g-chunk-new0" deprecated="2.10: Use g_slice_new0() instead"/>
1500
+ <keyword type="macro" name="g_chunk_free()" link="glib-Memory-Chunks.html#g-chunk-free" deprecated="2.10: Use g_slice_free() instead"/>
1501
+ <keyword type="function" name="g_mem_chunk_reset ()" link="glib-Memory-Chunks.html#g-mem-chunk-reset" deprecated=""/>
1502
+ <keyword type="function" name="g_mem_chunk_clean ()" link="glib-Memory-Chunks.html#g-mem-chunk-clean" deprecated=""/>
1503
+ <keyword type="function" name="g_blow_chunks ()" link="glib-Memory-Chunks.html#g-blow-chunks" deprecated=""/>
1504
+ <keyword type="function" name="g_mem_chunk_info ()" link="glib-Memory-Chunks.html#g-mem-chunk-info" deprecated=""/>
1505
+ <keyword type="function" name="g_mem_chunk_print ()" link="glib-Memory-Chunks.html#g-mem-chunk-print" deprecated=""/>
1506
+ <keyword type="struct" name="GList" link="glib-Doubly-Linked-Lists.html#GList"/>
1507
+ <keyword type="function" name="g_list_append ()" link="glib-Doubly-Linked-Lists.html#g-list-append"/>
1508
+ <keyword type="function" name="g_list_prepend ()" link="glib-Doubly-Linked-Lists.html#g-list-prepend"/>
1509
+ <keyword type="function" name="g_list_insert ()" link="glib-Doubly-Linked-Lists.html#g-list-insert"/>
1510
+ <keyword type="function" name="g_list_insert_before ()" link="glib-Doubly-Linked-Lists.html#g-list-insert-before"/>
1511
+ <keyword type="function" name="g_list_insert_sorted ()" link="glib-Doubly-Linked-Lists.html#g-list-insert-sorted"/>
1512
+ <keyword type="function" name="g_list_remove ()" link="glib-Doubly-Linked-Lists.html#g-list-remove"/>
1513
+ <keyword type="function" name="g_list_remove_link ()" link="glib-Doubly-Linked-Lists.html#g-list-remove-link"/>
1514
+ <keyword type="function" name="g_list_delete_link ()" link="glib-Doubly-Linked-Lists.html#g-list-delete-link"/>
1515
+ <keyword type="function" name="g_list_remove_all ()" link="glib-Doubly-Linked-Lists.html#g-list-remove-all"/>
1516
+ <keyword type="function" name="g_list_free ()" link="glib-Doubly-Linked-Lists.html#g-list-free"/>
1517
+ <keyword type="function" name="g_list_alloc ()" link="glib-Doubly-Linked-Lists.html#g-list-alloc"/>
1518
+ <keyword type="function" name="g_list_free_1 ()" link="glib-Doubly-Linked-Lists.html#g-list-free-1"/>
1519
+ <keyword type="macro" name="g_list_free1" link="glib-Doubly-Linked-Lists.html#g-list-free1"/>
1520
+ <keyword type="function" name="g_list_length ()" link="glib-Doubly-Linked-Lists.html#g-list-length"/>
1521
+ <keyword type="function" name="g_list_copy ()" link="glib-Doubly-Linked-Lists.html#g-list-copy"/>
1522
+ <keyword type="function" name="g_list_reverse ()" link="glib-Doubly-Linked-Lists.html#g-list-reverse"/>
1523
+ <keyword type="function" name="g_list_sort ()" link="glib-Doubly-Linked-Lists.html#g-list-sort"/>
1524
+ <keyword type="function" name="GCompareFunc ()" link="glib-Doubly-Linked-Lists.html#GCompareFunc"/>
1525
+ <keyword type="function" name="g_list_insert_sorted_with_data ()" link="glib-Doubly-Linked-Lists.html#g-list-insert-sorted-with-data" since="2.10"/>
1526
+ <keyword type="function" name="g_list_sort_with_data ()" link="glib-Doubly-Linked-Lists.html#g-list-sort-with-data"/>
1527
+ <keyword type="function" name="GCompareDataFunc ()" link="glib-Doubly-Linked-Lists.html#GCompareDataFunc"/>
1528
+ <keyword type="function" name="g_list_concat ()" link="glib-Doubly-Linked-Lists.html#g-list-concat"/>
1529
+ <keyword type="function" name="g_list_foreach ()" link="glib-Doubly-Linked-Lists.html#g-list-foreach"/>
1530
+ <keyword type="function" name="GFunc ()" link="glib-Doubly-Linked-Lists.html#GFunc"/>
1531
+ <keyword type="function" name="g_list_first ()" link="glib-Doubly-Linked-Lists.html#g-list-first"/>
1532
+ <keyword type="function" name="g_list_last ()" link="glib-Doubly-Linked-Lists.html#g-list-last"/>
1533
+ <keyword type="macro" name="g_list_previous()" link="glib-Doubly-Linked-Lists.html#g-list-previous"/>
1534
+ <keyword type="macro" name="g_list_next()" link="glib-Doubly-Linked-Lists.html#g-list-next"/>
1535
+ <keyword type="function" name="g_list_nth ()" link="glib-Doubly-Linked-Lists.html#g-list-nth"/>
1536
+ <keyword type="function" name="g_list_nth_data ()" link="glib-Doubly-Linked-Lists.html#g-list-nth-data"/>
1537
+ <keyword type="function" name="g_list_nth_prev ()" link="glib-Doubly-Linked-Lists.html#g-list-nth-prev"/>
1538
+ <keyword type="function" name="g_list_find ()" link="glib-Doubly-Linked-Lists.html#g-list-find"/>
1539
+ <keyword type="function" name="g_list_find_custom ()" link="glib-Doubly-Linked-Lists.html#g-list-find-custom"/>
1540
+ <keyword type="function" name="g_list_position ()" link="glib-Doubly-Linked-Lists.html#g-list-position"/>
1541
+ <keyword type="function" name="g_list_index ()" link="glib-Doubly-Linked-Lists.html#g-list-index"/>
1542
+ <keyword type="function" name="g_list_push_allocator ()" link="glib-Doubly-Linked-Lists.html#g-list-push-allocator" deprecated=""/>
1543
+ <keyword type="function" name="g_list_pop_allocator ()" link="glib-Doubly-Linked-Lists.html#g-list-pop-allocator" deprecated=""/>
1544
+ <keyword type="struct" name="GSList" link="glib-Singly-Linked-Lists.html#GSList"/>
1545
+ <keyword type="function" name="g_slist_alloc ()" link="glib-Singly-Linked-Lists.html#g-slist-alloc"/>
1546
+ <keyword type="function" name="g_slist_append ()" link="glib-Singly-Linked-Lists.html#g-slist-append"/>
1547
+ <keyword type="function" name="g_slist_prepend ()" link="glib-Singly-Linked-Lists.html#g-slist-prepend"/>
1548
+ <keyword type="function" name="g_slist_insert ()" link="glib-Singly-Linked-Lists.html#g-slist-insert"/>
1549
+ <keyword type="function" name="g_slist_insert_before ()" link="glib-Singly-Linked-Lists.html#g-slist-insert-before"/>
1550
+ <keyword type="function" name="g_slist_insert_sorted ()" link="glib-Singly-Linked-Lists.html#g-slist-insert-sorted"/>
1551
+ <keyword type="function" name="g_slist_remove ()" link="glib-Singly-Linked-Lists.html#g-slist-remove"/>
1552
+ <keyword type="function" name="g_slist_remove_link ()" link="glib-Singly-Linked-Lists.html#g-slist-remove-link"/>
1553
+ <keyword type="function" name="g_slist_delete_link ()" link="glib-Singly-Linked-Lists.html#g-slist-delete-link"/>
1554
+ <keyword type="function" name="g_slist_remove_all ()" link="glib-Singly-Linked-Lists.html#g-slist-remove-all"/>
1555
+ <keyword type="function" name="g_slist_free ()" link="glib-Singly-Linked-Lists.html#g-slist-free"/>
1556
+ <keyword type="function" name="g_slist_free_1 ()" link="glib-Singly-Linked-Lists.html#g-slist-free-1"/>
1557
+ <keyword type="macro" name="g_slist_free1" link="glib-Singly-Linked-Lists.html#g-slist-free1" since="2.10"/>
1558
+ <keyword type="function" name="g_slist_length ()" link="glib-Singly-Linked-Lists.html#g-slist-length"/>
1559
+ <keyword type="function" name="g_slist_copy ()" link="glib-Singly-Linked-Lists.html#g-slist-copy"/>
1560
+ <keyword type="function" name="g_slist_reverse ()" link="glib-Singly-Linked-Lists.html#g-slist-reverse"/>
1561
+ <keyword type="function" name="g_slist_insert_sorted_with_data ()" link="glib-Singly-Linked-Lists.html#g-slist-insert-sorted-with-data" since="2.10"/>
1562
+ <keyword type="function" name="g_slist_sort ()" link="glib-Singly-Linked-Lists.html#g-slist-sort"/>
1563
+ <keyword type="function" name="g_slist_sort_with_data ()" link="glib-Singly-Linked-Lists.html#g-slist-sort-with-data"/>
1564
+ <keyword type="function" name="g_slist_concat ()" link="glib-Singly-Linked-Lists.html#g-slist-concat"/>
1565
+ <keyword type="function" name="g_slist_foreach ()" link="glib-Singly-Linked-Lists.html#g-slist-foreach"/>
1566
+ <keyword type="function" name="g_slist_last ()" link="glib-Singly-Linked-Lists.html#g-slist-last"/>
1567
+ <keyword type="macro" name="g_slist_next()" link="glib-Singly-Linked-Lists.html#g-slist-next"/>
1568
+ <keyword type="function" name="g_slist_nth ()" link="glib-Singly-Linked-Lists.html#g-slist-nth"/>
1569
+ <keyword type="function" name="g_slist_nth_data ()" link="glib-Singly-Linked-Lists.html#g-slist-nth-data"/>
1570
+ <keyword type="function" name="g_slist_find ()" link="glib-Singly-Linked-Lists.html#g-slist-find"/>
1571
+ <keyword type="function" name="g_slist_find_custom ()" link="glib-Singly-Linked-Lists.html#g-slist-find-custom"/>
1572
+ <keyword type="function" name="g_slist_position ()" link="glib-Singly-Linked-Lists.html#g-slist-position"/>
1573
+ <keyword type="function" name="g_slist_index ()" link="glib-Singly-Linked-Lists.html#g-slist-index"/>
1574
+ <keyword type="function" name="g_slist_push_allocator ()" link="glib-Singly-Linked-Lists.html#g-slist-push-allocator" deprecated=""/>
1575
+ <keyword type="function" name="g_slist_pop_allocator ()" link="glib-Singly-Linked-Lists.html#g-slist-pop-allocator" deprecated=""/>
1576
+ <keyword type="struct" name="GQueue" link="glib-Double-ended-Queues.html#GQueue"/>
1577
+ <keyword type="function" name="g_queue_new ()" link="glib-Double-ended-Queues.html#g-queue-new"/>
1578
+ <keyword type="function" name="g_queue_free ()" link="glib-Double-ended-Queues.html#g-queue-free"/>
1579
+ <keyword type="macro" name="G_QUEUE_INIT" link="glib-Double-ended-Queues.html#G-QUEUE-INIT:CAPS" since="2.14"/>
1580
+ <keyword type="function" name="g_queue_init ()" link="glib-Double-ended-Queues.html#g-queue-init" since="2.14"/>
1581
+ <keyword type="function" name="g_queue_clear ()" link="glib-Double-ended-Queues.html#g-queue-clear" since="2.14"/>
1582
+ <keyword type="function" name="g_queue_is_empty ()" link="glib-Double-ended-Queues.html#g-queue-is-empty"/>
1583
+ <keyword type="function" name="g_queue_get_length ()" link="glib-Double-ended-Queues.html#g-queue-get-length" since="2.4"/>
1584
+ <keyword type="function" name="g_queue_reverse ()" link="glib-Double-ended-Queues.html#g-queue-reverse" since="2.4"/>
1585
+ <keyword type="function" name="g_queue_copy ()" link="glib-Double-ended-Queues.html#g-queue-copy" since="2.4"/>
1586
+ <keyword type="function" name="g_queue_foreach ()" link="glib-Double-ended-Queues.html#g-queue-foreach" since="2.4"/>
1587
+ <keyword type="function" name="g_queue_find ()" link="glib-Double-ended-Queues.html#g-queue-find" since="2.4"/>
1588
+ <keyword type="function" name="g_queue_find_custom ()" link="glib-Double-ended-Queues.html#g-queue-find-custom" since="2.4"/>
1589
+ <keyword type="function" name="g_queue_sort ()" link="glib-Double-ended-Queues.html#g-queue-sort" since="2.4"/>
1590
+ <keyword type="function" name="g_queue_push_head ()" link="glib-Double-ended-Queues.html#g-queue-push-head"/>
1591
+ <keyword type="function" name="g_queue_push_tail ()" link="glib-Double-ended-Queues.html#g-queue-push-tail"/>
1592
+ <keyword type="function" name="g_queue_push_nth ()" link="glib-Double-ended-Queues.html#g-queue-push-nth" since="2.4"/>
1593
+ <keyword type="function" name="g_queue_pop_head ()" link="glib-Double-ended-Queues.html#g-queue-pop-head"/>
1594
+ <keyword type="function" name="g_queue_pop_tail ()" link="glib-Double-ended-Queues.html#g-queue-pop-tail"/>
1595
+ <keyword type="function" name="g_queue_pop_nth ()" link="glib-Double-ended-Queues.html#g-queue-pop-nth" since="2.4"/>
1596
+ <keyword type="function" name="g_queue_peek_head ()" link="glib-Double-ended-Queues.html#g-queue-peek-head"/>
1597
+ <keyword type="function" name="g_queue_peek_tail ()" link="glib-Double-ended-Queues.html#g-queue-peek-tail"/>
1598
+ <keyword type="function" name="g_queue_peek_nth ()" link="glib-Double-ended-Queues.html#g-queue-peek-nth" since="2.4"/>
1599
+ <keyword type="function" name="g_queue_index ()" link="glib-Double-ended-Queues.html#g-queue-index" since="2.4"/>
1600
+ <keyword type="function" name="g_queue_remove ()" link="glib-Double-ended-Queues.html#g-queue-remove" since="2.4"/>
1601
+ <keyword type="function" name="g_queue_remove_all ()" link="glib-Double-ended-Queues.html#g-queue-remove-all" since="2.4"/>
1602
+ <keyword type="function" name="g_queue_insert_before ()" link="glib-Double-ended-Queues.html#g-queue-insert-before" since="2.4"/>
1603
+ <keyword type="function" name="g_queue_insert_after ()" link="glib-Double-ended-Queues.html#g-queue-insert-after" since="2.4"/>
1604
+ <keyword type="function" name="g_queue_insert_sorted ()" link="glib-Double-ended-Queues.html#g-queue-insert-sorted" since="2.4"/>
1605
+ <keyword type="function" name="g_queue_push_head_link ()" link="glib-Double-ended-Queues.html#g-queue-push-head-link"/>
1606
+ <keyword type="function" name="g_queue_push_tail_link ()" link="glib-Double-ended-Queues.html#g-queue-push-tail-link"/>
1607
+ <keyword type="function" name="g_queue_push_nth_link ()" link="glib-Double-ended-Queues.html#g-queue-push-nth-link" since="2.4"/>
1608
+ <keyword type="function" name="g_queue_pop_head_link ()" link="glib-Double-ended-Queues.html#g-queue-pop-head-link"/>
1609
+ <keyword type="function" name="g_queue_pop_tail_link ()" link="glib-Double-ended-Queues.html#g-queue-pop-tail-link"/>
1610
+ <keyword type="function" name="g_queue_pop_nth_link ()" link="glib-Double-ended-Queues.html#g-queue-pop-nth-link" since="2.4"/>
1611
+ <keyword type="function" name="g_queue_peek_head_link ()" link="glib-Double-ended-Queues.html#g-queue-peek-head-link" since="2.4"/>
1612
+ <keyword type="function" name="g_queue_peek_tail_link ()" link="glib-Double-ended-Queues.html#g-queue-peek-tail-link" since="2.4"/>
1613
+ <keyword type="function" name="g_queue_peek_nth_link ()" link="glib-Double-ended-Queues.html#g-queue-peek-nth-link" since="2.4"/>
1614
+ <keyword type="function" name="g_queue_link_index ()" link="glib-Double-ended-Queues.html#g-queue-link-index" since="2.4"/>
1615
+ <keyword type="function" name="g_queue_unlink ()" link="glib-Double-ended-Queues.html#g-queue-unlink" since="2.4"/>
1616
+ <keyword type="function" name="g_queue_delete_link ()" link="glib-Double-ended-Queues.html#g-queue-delete-link" since="2.4"/>
1617
+ <keyword type="struct" name="GSequence" link="glib-Sequences.html#GSequence"/>
1618
+ <keyword type="typedef" name="GSequenceIter" link="glib-Sequences.html#GSequenceIter"/>
1619
+ <keyword type="function" name="GSequenceIterCompareFunc ()" link="glib-Sequences.html#GSequenceIterCompareFunc"/>
1620
+ <keyword type="function" name="g_sequence_new ()" link="glib-Sequences.html#g-sequence-new" since="2.14"/>
1621
+ <keyword type="function" name="g_sequence_free ()" link="glib-Sequences.html#g-sequence-free" since="2.14"/>
1622
+ <keyword type="function" name="g_sequence_get_length ()" link="glib-Sequences.html#g-sequence-get-length" since="2.14"/>
1623
+ <keyword type="function" name="g_sequence_foreach ()" link="glib-Sequences.html#g-sequence-foreach" since="2.14"/>
1624
+ <keyword type="function" name="g_sequence_foreach_range ()" link="glib-Sequences.html#g-sequence-foreach-range" since="2.14"/>
1625
+ <keyword type="function" name="g_sequence_sort ()" link="glib-Sequences.html#g-sequence-sort" since="2.14"/>
1626
+ <keyword type="function" name="g_sequence_sort_iter ()" link="glib-Sequences.html#g-sequence-sort-iter" since="2.14"/>
1627
+ <keyword type="function" name="g_sequence_get_begin_iter ()" link="glib-Sequences.html#g-sequence-get-begin-iter" since="2.14"/>
1628
+ <keyword type="function" name="g_sequence_get_end_iter ()" link="glib-Sequences.html#g-sequence-get-end-iter" since="2.14"/>
1629
+ <keyword type="function" name="g_sequence_get_iter_at_pos ()" link="glib-Sequences.html#g-sequence-get-iter-at-pos" since="2.14"/>
1630
+ <keyword type="function" name="g_sequence_append ()" link="glib-Sequences.html#g-sequence-append" since="2.14"/>
1631
+ <keyword type="function" name="g_sequence_prepend ()" link="glib-Sequences.html#g-sequence-prepend" since="2.14"/>
1632
+ <keyword type="function" name="g_sequence_insert_before ()" link="glib-Sequences.html#g-sequence-insert-before" since="2.14"/>
1633
+ <keyword type="function" name="g_sequence_move ()" link="glib-Sequences.html#g-sequence-move" since="2.14"/>
1634
+ <keyword type="function" name="g_sequence_swap ()" link="glib-Sequences.html#g-sequence-swap" since="2.14"/>
1635
+ <keyword type="function" name="g_sequence_insert_sorted ()" link="glib-Sequences.html#g-sequence-insert-sorted" since="2.14"/>
1636
+ <keyword type="function" name="g_sequence_insert_sorted_iter ()" link="glib-Sequences.html#g-sequence-insert-sorted-iter" since="2.14"/>
1637
+ <keyword type="function" name="g_sequence_sort_changed ()" link="glib-Sequences.html#g-sequence-sort-changed" since="2.14"/>
1638
+ <keyword type="function" name="g_sequence_sort_changed_iter ()" link="glib-Sequences.html#g-sequence-sort-changed-iter" since="2.14"/>
1639
+ <keyword type="function" name="g_sequence_remove ()" link="glib-Sequences.html#g-sequence-remove" since="2.14"/>
1640
+ <keyword type="function" name="g_sequence_remove_range ()" link="glib-Sequences.html#g-sequence-remove-range" since="2.14"/>
1641
+ <keyword type="function" name="g_sequence_move_range ()" link="glib-Sequences.html#g-sequence-move-range" since="2.14"/>
1642
+ <keyword type="function" name="g_sequence_search ()" link="glib-Sequences.html#g-sequence-search" since="2.14"/>
1643
+ <keyword type="function" name="g_sequence_search_iter ()" link="glib-Sequences.html#g-sequence-search-iter" since="2.14"/>
1644
+ <keyword type="function" name="g_sequence_get ()" link="glib-Sequences.html#g-sequence-get" since="2.14"/>
1645
+ <keyword type="function" name="g_sequence_set ()" link="glib-Sequences.html#g-sequence-set" since="2.14"/>
1646
+ <keyword type="function" name="g_sequence_iter_is_begin ()" link="glib-Sequences.html#g-sequence-iter-is-begin" since="2.14"/>
1647
+ <keyword type="function" name="g_sequence_iter_is_end ()" link="glib-Sequences.html#g-sequence-iter-is-end" since="2.14"/>
1648
+ <keyword type="function" name="g_sequence_iter_next ()" link="glib-Sequences.html#g-sequence-iter-next" since="2.14"/>
1649
+ <keyword type="function" name="g_sequence_iter_prev ()" link="glib-Sequences.html#g-sequence-iter-prev" since="2.14"/>
1650
+ <keyword type="function" name="g_sequence_iter_get_position ()" link="glib-Sequences.html#g-sequence-iter-get-position" since="2.14"/>
1651
+ <keyword type="function" name="g_sequence_iter_move ()" link="glib-Sequences.html#g-sequence-iter-move" since="2.14"/>
1652
+ <keyword type="function" name="g_sequence_iter_get_sequence ()" link="glib-Sequences.html#g-sequence-iter-get-sequence" since="2.14"/>
1653
+ <keyword type="function" name="g_sequence_iter_compare ()" link="glib-Sequences.html#g-sequence-iter-compare" since="2.14"/>
1654
+ <keyword type="function" name="g_sequence_range_get_midpoint ()" link="glib-Sequences.html#g-sequence-range-get-midpoint" since="2.14"/>
1655
+ <keyword type="struct" name="GTrashStack" link="glib-Trash-Stacks.html#GTrashStack"/>
1656
+ <keyword type="function" name="g_trash_stack_push ()" link="glib-Trash-Stacks.html#g-trash-stack-push"/>
1657
+ <keyword type="function" name="g_trash_stack_pop ()" link="glib-Trash-Stacks.html#g-trash-stack-pop"/>
1658
+ <keyword type="function" name="g_trash_stack_peek ()" link="glib-Trash-Stacks.html#g-trash-stack-peek"/>
1659
+ <keyword type="function" name="g_trash_stack_height ()" link="glib-Trash-Stacks.html#g-trash-stack-height"/>
1660
+ <keyword type="struct" name="GHashTable" link="glib-Hash-Tables.html#GHashTable"/>
1661
+ <keyword type="function" name="g_hash_table_new ()" link="glib-Hash-Tables.html#g-hash-table-new"/>
1662
+ <keyword type="function" name="g_hash_table_new_full ()" link="glib-Hash-Tables.html#g-hash-table-new-full"/>
1663
+ <keyword type="function" name="GHashFunc ()" link="glib-Hash-Tables.html#GHashFunc"/>
1664
+ <keyword type="function" name="GEqualFunc ()" link="glib-Hash-Tables.html#GEqualFunc"/>
1665
+ <keyword type="function" name="g_hash_table_insert ()" link="glib-Hash-Tables.html#g-hash-table-insert"/>
1666
+ <keyword type="function" name="g_hash_table_replace ()" link="glib-Hash-Tables.html#g-hash-table-replace"/>
1667
+ <keyword type="function" name="g_hash_table_size ()" link="glib-Hash-Tables.html#g-hash-table-size"/>
1668
+ <keyword type="function" name="g_hash_table_lookup ()" link="glib-Hash-Tables.html#g-hash-table-lookup"/>
1669
+ <keyword type="function" name="g_hash_table_lookup_extended ()" link="glib-Hash-Tables.html#g-hash-table-lookup-extended"/>
1670
+ <keyword type="function" name="g_hash_table_foreach ()" link="glib-Hash-Tables.html#g-hash-table-foreach"/>
1671
+ <keyword type="function" name="g_hash_table_find ()" link="glib-Hash-Tables.html#g-hash-table-find" since="2.4"/>
1672
+ <keyword type="function" name="GHFunc ()" link="glib-Hash-Tables.html#GHFunc"/>
1673
+ <keyword type="function" name="g_hash_table_remove ()" link="glib-Hash-Tables.html#g-hash-table-remove"/>
1674
+ <keyword type="function" name="g_hash_table_steal ()" link="glib-Hash-Tables.html#g-hash-table-steal"/>
1675
+ <keyword type="function" name="g_hash_table_foreach_remove ()" link="glib-Hash-Tables.html#g-hash-table-foreach-remove"/>
1676
+ <keyword type="function" name="g_hash_table_foreach_steal ()" link="glib-Hash-Tables.html#g-hash-table-foreach-steal"/>
1677
+ <keyword type="function" name="g_hash_table_remove_all ()" link="glib-Hash-Tables.html#g-hash-table-remove-all" since="2.12"/>
1678
+ <keyword type="function" name="g_hash_table_steal_all ()" link="glib-Hash-Tables.html#g-hash-table-steal-all" since="2.12"/>
1679
+ <keyword type="function" name="g_hash_table_get_keys ()" link="glib-Hash-Tables.html#g-hash-table-get-keys" since="2.14"/>
1680
+ <keyword type="function" name="g_hash_table_get_values ()" link="glib-Hash-Tables.html#g-hash-table-get-values" since="2.14"/>
1681
+ <keyword type="function" name="GHRFunc ()" link="glib-Hash-Tables.html#GHRFunc"/>
1682
+ <keyword type="macro" name="g_hash_table_freeze()" link="glib-Hash-Tables.html#g-hash-table-freeze" deprecated=""/>
1683
+ <keyword type="macro" name="g_hash_table_thaw()" link="glib-Hash-Tables.html#g-hash-table-thaw" deprecated=""/>
1684
+ <keyword type="function" name="g_hash_table_destroy ()" link="glib-Hash-Tables.html#g-hash-table-destroy"/>
1685
+ <keyword type="function" name="g_hash_table_ref ()" link="glib-Hash-Tables.html#g-hash-table-ref" since="2.10"/>
1686
+ <keyword type="function" name="g_hash_table_unref ()" link="glib-Hash-Tables.html#g-hash-table-unref" since="2.10"/>
1687
+ <keyword type="struct" name="GHashTableIter" link="glib-Hash-Tables.html#GHashTableIter"/>
1688
+ <keyword type="function" name="g_hash_table_iter_init ()" link="glib-Hash-Tables.html#g-hash-table-iter-init" since="2.16"/>
1689
+ <keyword type="function" name="g_hash_table_iter_next ()" link="glib-Hash-Tables.html#g-hash-table-iter-next" since="2.16"/>
1690
+ <keyword type="function" name="g_hash_table_iter_get_hash_table ()" link="glib-Hash-Tables.html#g-hash-table-iter-get-hash-table" since="2.16"/>
1691
+ <keyword type="function" name="g_hash_table_iter_remove ()" link="glib-Hash-Tables.html#g-hash-table-iter-remove" since="2.16"/>
1692
+ <keyword type="function" name="g_hash_table_iter_steal ()" link="glib-Hash-Tables.html#g-hash-table-iter-steal" since="2.16"/>
1693
+ <keyword type="function" name="g_direct_equal ()" link="glib-Hash-Tables.html#g-direct-equal"/>
1694
+ <keyword type="function" name="g_direct_hash ()" link="glib-Hash-Tables.html#g-direct-hash"/>
1695
+ <keyword type="function" name="g_int_equal ()" link="glib-Hash-Tables.html#g-int-equal"/>
1696
+ <keyword type="function" name="g_int_hash ()" link="glib-Hash-Tables.html#g-int-hash"/>
1697
+ <keyword type="function" name="g_int64_equal ()" link="glib-Hash-Tables.html#g-int64-equal" since="2.22"/>
1698
+ <keyword type="function" name="g_int64_hash ()" link="glib-Hash-Tables.html#g-int64-hash" since="2.22"/>
1699
+ <keyword type="function" name="g_double_equal ()" link="glib-Hash-Tables.html#g-double-equal" since="2.22"/>
1700
+ <keyword type="function" name="g_double_hash ()" link="glib-Hash-Tables.html#g-double-hash" since="2.22"/>
1701
+ <keyword type="function" name="g_str_equal ()" link="glib-Hash-Tables.html#g-str-equal"/>
1702
+ <keyword type="function" name="g_str_hash ()" link="glib-Hash-Tables.html#g-str-hash"/>
1703
+ <keyword type="struct" name="GString" link="glib-Strings.html#GString"/>
1704
+ <keyword type="function" name="g_string_new ()" link="glib-Strings.html#g-string-new"/>
1705
+ <keyword type="function" name="g_string_new_len ()" link="glib-Strings.html#g-string-new-len"/>
1706
+ <keyword type="function" name="g_string_sized_new ()" link="glib-Strings.html#g-string-sized-new"/>
1707
+ <keyword type="function" name="g_string_assign ()" link="glib-Strings.html#g-string-assign"/>
1708
+ <keyword type="macro" name="g_string_sprintf" link="glib-Strings.html#g-string-sprintf" deprecated="This function has been renamed to g_string_printf()."/>
1709
+ <keyword type="macro" name="g_string_sprintfa" link="glib-Strings.html#g-string-sprintfa" deprecated="This function has been renamed to g_string_append_printf()"/>
1710
+ <keyword type="function" name="g_string_vprintf ()" link="glib-Strings.html#g-string-vprintf" since="2.14"/>
1711
+ <keyword type="function" name="g_string_append_vprintf ()" link="glib-Strings.html#g-string-append-vprintf" since="2.14"/>
1712
+ <keyword type="function" name="g_string_printf ()" link="glib-Strings.html#g-string-printf"/>
1713
+ <keyword type="function" name="g_string_append_printf ()" link="glib-Strings.html#g-string-append-printf"/>
1714
+ <keyword type="function" name="g_string_append ()" link="glib-Strings.html#g-string-append"/>
1715
+ <keyword type="function" name="g_string_append_c ()" link="glib-Strings.html#g-string-append-c"/>
1716
+ <keyword type="function" name="g_string_append_unichar ()" link="glib-Strings.html#g-string-append-unichar"/>
1717
+ <keyword type="function" name="g_string_append_len ()" link="glib-Strings.html#g-string-append-len"/>
1718
+ <keyword type="function" name="g_string_append_uri_escaped ()" link="glib-Strings.html#g-string-append-uri-escaped" since="2.16"/>
1719
+ <keyword type="function" name="g_string_prepend ()" link="glib-Strings.html#g-string-prepend"/>
1720
+ <keyword type="function" name="g_string_prepend_c ()" link="glib-Strings.html#g-string-prepend-c"/>
1721
+ <keyword type="function" name="g_string_prepend_unichar ()" link="glib-Strings.html#g-string-prepend-unichar"/>
1722
+ <keyword type="function" name="g_string_prepend_len ()" link="glib-Strings.html#g-string-prepend-len"/>
1723
+ <keyword type="function" name="g_string_insert ()" link="glib-Strings.html#g-string-insert"/>
1724
+ <keyword type="function" name="g_string_insert_c ()" link="glib-Strings.html#g-string-insert-c"/>
1725
+ <keyword type="function" name="g_string_insert_unichar ()" link="glib-Strings.html#g-string-insert-unichar"/>
1726
+ <keyword type="function" name="g_string_insert_len ()" link="glib-Strings.html#g-string-insert-len"/>
1727
+ <keyword type="function" name="g_string_overwrite ()" link="glib-Strings.html#g-string-overwrite" since="2.14"/>
1728
+ <keyword type="function" name="g_string_overwrite_len ()" link="glib-Strings.html#g-string-overwrite-len" since="2.14"/>
1729
+ <keyword type="function" name="g_string_erase ()" link="glib-Strings.html#g-string-erase"/>
1730
+ <keyword type="function" name="g_string_truncate ()" link="glib-Strings.html#g-string-truncate"/>
1731
+ <keyword type="function" name="g_string_set_size ()" link="glib-Strings.html#g-string-set-size"/>
1732
+ <keyword type="function" name="g_string_free ()" link="glib-Strings.html#g-string-free"/>
1733
+ <keyword type="function" name="g_string_up ()" link="glib-Strings.html#g-string-up" deprecated=""/>
1734
+ <keyword type="function" name="g_string_down ()" link="glib-Strings.html#g-string-down" deprecated=""/>
1735
+ <keyword type="function" name="g_string_hash ()" link="glib-Strings.html#g-string-hash"/>
1736
+ <keyword type="function" name="g_string_equal ()" link="glib-Strings.html#g-string-equal"/>
1737
+ <keyword type="struct" name="GStringChunk" link="glib-String-Chunks.html#GStringChunk"/>
1738
+ <keyword type="function" name="g_string_chunk_new ()" link="glib-String-Chunks.html#g-string-chunk-new"/>
1739
+ <keyword type="function" name="g_string_chunk_insert ()" link="glib-String-Chunks.html#g-string-chunk-insert"/>
1740
+ <keyword type="function" name="g_string_chunk_insert_const ()" link="glib-String-Chunks.html#g-string-chunk-insert-const"/>
1741
+ <keyword type="function" name="g_string_chunk_insert_len ()" link="glib-String-Chunks.html#g-string-chunk-insert-len" since="2.4"/>
1742
+ <keyword type="function" name="g_string_chunk_clear ()" link="glib-String-Chunks.html#g-string-chunk-clear" since="2.14"/>
1743
+ <keyword type="function" name="g_string_chunk_free ()" link="glib-String-Chunks.html#g-string-chunk-free"/>
1744
+ <keyword type="struct" name="GArray" link="glib-Arrays.html#GArray"/>
1745
+ <keyword type="function" name="g_array_new ()" link="glib-Arrays.html#g-array-new"/>
1746
+ <keyword type="function" name="g_array_sized_new ()" link="glib-Arrays.html#g-array-sized-new"/>
1747
+ <keyword type="function" name="g_array_ref ()" link="glib-Arrays.html#g-array-ref" since="2.22"/>
1748
+ <keyword type="function" name="g_array_unref ()" link="glib-Arrays.html#g-array-unref" since="2.22"/>
1749
+ <keyword type="function" name="g_array_get_element_size ()" link="glib-Arrays.html#g-array-get-element-size" since="2.22"/>
1750
+ <keyword type="macro" name="g_array_append_val()" link="glib-Arrays.html#g-array-append-val"/>
1751
+ <keyword type="function" name="g_array_append_vals ()" link="glib-Arrays.html#g-array-append-vals"/>
1752
+ <keyword type="macro" name="g_array_prepend_val()" link="glib-Arrays.html#g-array-prepend-val"/>
1753
+ <keyword type="function" name="g_array_prepend_vals ()" link="glib-Arrays.html#g-array-prepend-vals"/>
1754
+ <keyword type="macro" name="g_array_insert_val()" link="glib-Arrays.html#g-array-insert-val"/>
1755
+ <keyword type="function" name="g_array_insert_vals ()" link="glib-Arrays.html#g-array-insert-vals"/>
1756
+ <keyword type="function" name="g_array_remove_index ()" link="glib-Arrays.html#g-array-remove-index"/>
1757
+ <keyword type="function" name="g_array_remove_index_fast ()" link="glib-Arrays.html#g-array-remove-index-fast"/>
1758
+ <keyword type="function" name="g_array_remove_range ()" link="glib-Arrays.html#g-array-remove-range" since="2.4"/>
1759
+ <keyword type="function" name="g_array_sort ()" link="glib-Arrays.html#g-array-sort"/>
1760
+ <keyword type="function" name="g_array_sort_with_data ()" link="glib-Arrays.html#g-array-sort-with-data"/>
1761
+ <keyword type="macro" name="g_array_index()" link="glib-Arrays.html#g-array-index"/>
1762
+ <keyword type="function" name="g_array_set_size ()" link="glib-Arrays.html#g-array-set-size"/>
1763
+ <keyword type="function" name="g_array_free ()" link="glib-Arrays.html#g-array-free"/>
1764
+ <keyword type="struct" name="GPtrArray" link="glib-Pointer-Arrays.html#GPtrArray"/>
1765
+ <keyword type="function" name="g_ptr_array_new ()" link="glib-Pointer-Arrays.html#g-ptr-array-new"/>
1766
+ <keyword type="function" name="g_ptr_array_sized_new ()" link="glib-Pointer-Arrays.html#g-ptr-array-sized-new"/>
1767
+ <keyword type="function" name="g_ptr_array_new_with_free_func ()" link="glib-Pointer-Arrays.html#g-ptr-array-new-with-free-func" since="2.22"/>
1768
+ <keyword type="function" name="g_ptr_array_set_free_func ()" link="glib-Pointer-Arrays.html#g-ptr-array-set-free-func" since="2.22"/>
1769
+ <keyword type="function" name="g_ptr_array_ref ()" link="glib-Pointer-Arrays.html#g-ptr-array-ref" since="2.22"/>
1770
+ <keyword type="function" name="g_ptr_array_unref ()" link="glib-Pointer-Arrays.html#g-ptr-array-unref" since="2.22"/>
1771
+ <keyword type="function" name="g_ptr_array_add ()" link="glib-Pointer-Arrays.html#g-ptr-array-add"/>
1772
+ <keyword type="function" name="g_ptr_array_remove ()" link="glib-Pointer-Arrays.html#g-ptr-array-remove"/>
1773
+ <keyword type="function" name="g_ptr_array_remove_index ()" link="glib-Pointer-Arrays.html#g-ptr-array-remove-index"/>
1774
+ <keyword type="function" name="g_ptr_array_remove_fast ()" link="glib-Pointer-Arrays.html#g-ptr-array-remove-fast"/>
1775
+ <keyword type="function" name="g_ptr_array_remove_index_fast ()" link="glib-Pointer-Arrays.html#g-ptr-array-remove-index-fast"/>
1776
+ <keyword type="function" name="g_ptr_array_remove_range ()" link="glib-Pointer-Arrays.html#g-ptr-array-remove-range" since="2.4"/>
1777
+ <keyword type="function" name="g_ptr_array_sort ()" link="glib-Pointer-Arrays.html#g-ptr-array-sort"/>
1778
+ <keyword type="function" name="g_ptr_array_sort_with_data ()" link="glib-Pointer-Arrays.html#g-ptr-array-sort-with-data"/>
1779
+ <keyword type="function" name="g_ptr_array_set_size ()" link="glib-Pointer-Arrays.html#g-ptr-array-set-size"/>
1780
+ <keyword type="macro" name="g_ptr_array_index()" link="glib-Pointer-Arrays.html#g-ptr-array-index"/>
1781
+ <keyword type="function" name="g_ptr_array_free ()" link="glib-Pointer-Arrays.html#g-ptr-array-free"/>
1782
+ <keyword type="function" name="g_ptr_array_foreach ()" link="glib-Pointer-Arrays.html#g-ptr-array-foreach" since="2.4"/>
1783
+ <keyword type="struct" name="GByteArray" link="glib-Byte-Arrays.html#GByteArray"/>
1784
+ <keyword type="function" name="g_byte_array_new ()" link="glib-Byte-Arrays.html#g-byte-array-new"/>
1785
+ <keyword type="function" name="g_byte_array_sized_new ()" link="glib-Byte-Arrays.html#g-byte-array-sized-new"/>
1786
+ <keyword type="function" name="g_byte_array_ref ()" link="glib-Byte-Arrays.html#g-byte-array-ref" since="2.22"/>
1787
+ <keyword type="function" name="g_byte_array_unref ()" link="glib-Byte-Arrays.html#g-byte-array-unref" since="2.22"/>
1788
+ <keyword type="function" name="g_byte_array_append ()" link="glib-Byte-Arrays.html#g-byte-array-append"/>
1789
+ <keyword type="function" name="g_byte_array_prepend ()" link="glib-Byte-Arrays.html#g-byte-array-prepend"/>
1790
+ <keyword type="function" name="g_byte_array_remove_index ()" link="glib-Byte-Arrays.html#g-byte-array-remove-index"/>
1791
+ <keyword type="function" name="g_byte_array_remove_index_fast ()" link="glib-Byte-Arrays.html#g-byte-array-remove-index-fast"/>
1792
+ <keyword type="function" name="g_byte_array_remove_range ()" link="glib-Byte-Arrays.html#g-byte-array-remove-range" since="2.4"/>
1793
+ <keyword type="function" name="g_byte_array_sort ()" link="glib-Byte-Arrays.html#g-byte-array-sort"/>
1794
+ <keyword type="function" name="g_byte_array_sort_with_data ()" link="glib-Byte-Arrays.html#g-byte-array-sort-with-data"/>
1795
+ <keyword type="function" name="g_byte_array_set_size ()" link="glib-Byte-Arrays.html#g-byte-array-set-size"/>
1796
+ <keyword type="function" name="g_byte_array_free ()" link="glib-Byte-Arrays.html#g-byte-array-free"/>
1797
+ <keyword type="struct" name="GTree" link="glib-Balanced-Binary-Trees.html#GTree"/>
1798
+ <keyword type="function" name="g_tree_new ()" link="glib-Balanced-Binary-Trees.html#g-tree-new"/>
1799
+ <keyword type="function" name="g_tree_ref ()" link="glib-Balanced-Binary-Trees.html#g-tree-ref" since="2.22"/>
1800
+ <keyword type="function" name="g_tree_unref ()" link="glib-Balanced-Binary-Trees.html#g-tree-unref" since="2.22"/>
1801
+ <keyword type="function" name="g_tree_new_with_data ()" link="glib-Balanced-Binary-Trees.html#g-tree-new-with-data"/>
1802
+ <keyword type="function" name="g_tree_new_full ()" link="glib-Balanced-Binary-Trees.html#g-tree-new-full"/>
1803
+ <keyword type="function" name="g_tree_insert ()" link="glib-Balanced-Binary-Trees.html#g-tree-insert"/>
1804
+ <keyword type="function" name="g_tree_replace ()" link="glib-Balanced-Binary-Trees.html#g-tree-replace"/>
1805
+ <keyword type="function" name="g_tree_nnodes ()" link="glib-Balanced-Binary-Trees.html#g-tree-nnodes"/>
1806
+ <keyword type="function" name="g_tree_height ()" link="glib-Balanced-Binary-Trees.html#g-tree-height"/>
1807
+ <keyword type="function" name="g_tree_lookup ()" link="glib-Balanced-Binary-Trees.html#g-tree-lookup"/>
1808
+ <keyword type="function" name="g_tree_lookup_extended ()" link="glib-Balanced-Binary-Trees.html#g-tree-lookup-extended"/>
1809
+ <keyword type="function" name="g_tree_foreach ()" link="glib-Balanced-Binary-Trees.html#g-tree-foreach"/>
1810
+ <keyword type="function" name="g_tree_traverse ()" link="glib-Balanced-Binary-Trees.html#g-tree-traverse" deprecated=""/>
1811
+ <keyword type="function" name="GTraverseFunc ()" link="glib-Balanced-Binary-Trees.html#GTraverseFunc"/>
1812
+ <keyword type="enum" name="enum GTraverseType" link="glib-Balanced-Binary-Trees.html#GTraverseType"/>
1813
+ <keyword type="function" name="g_tree_search ()" link="glib-Balanced-Binary-Trees.html#g-tree-search"/>
1814
+ <keyword type="function" name="g_tree_remove ()" link="glib-Balanced-Binary-Trees.html#g-tree-remove"/>
1815
+ <keyword type="function" name="g_tree_steal ()" link="glib-Balanced-Binary-Trees.html#g-tree-steal"/>
1816
+ <keyword type="function" name="g_tree_destroy ()" link="glib-Balanced-Binary-Trees.html#g-tree-destroy"/>
1817
+ <keyword type="struct" name="GNode" link="glib-N-ary-Trees.html#GNode"/>
1818
+ <keyword type="function" name="g_node_new ()" link="glib-N-ary-Trees.html#g-node-new"/>
1819
+ <keyword type="function" name="g_node_copy ()" link="glib-N-ary-Trees.html#g-node-copy"/>
1820
+ <keyword type="function" name="GCopyFunc ()" link="glib-N-ary-Trees.html#GCopyFunc" since="2.4"/>
1821
+ <keyword type="function" name="g_node_copy_deep ()" link="glib-N-ary-Trees.html#g-node-copy-deep" since="2.4"/>
1822
+ <keyword type="function" name="g_node_insert ()" link="glib-N-ary-Trees.html#g-node-insert"/>
1823
+ <keyword type="function" name="g_node_insert_before ()" link="glib-N-ary-Trees.html#g-node-insert-before"/>
1824
+ <keyword type="function" name="g_node_insert_after ()" link="glib-N-ary-Trees.html#g-node-insert-after"/>
1825
+ <keyword type="macro" name="g_node_append()" link="glib-N-ary-Trees.html#g-node-append"/>
1826
+ <keyword type="function" name="g_node_prepend ()" link="glib-N-ary-Trees.html#g-node-prepend"/>
1827
+ <keyword type="macro" name="g_node_insert_data()" link="glib-N-ary-Trees.html#g-node-insert-data"/>
1828
+ <keyword type="macro" name="g_node_insert_data_before()" link="glib-N-ary-Trees.html#g-node-insert-data-before"/>
1829
+ <keyword type="macro" name="g_node_append_data()" link="glib-N-ary-Trees.html#g-node-append-data"/>
1830
+ <keyword type="macro" name="g_node_prepend_data()" link="glib-N-ary-Trees.html#g-node-prepend-data"/>
1831
+ <keyword type="function" name="g_node_reverse_children ()" link="glib-N-ary-Trees.html#g-node-reverse-children"/>
1832
+ <keyword type="function" name="g_node_traverse ()" link="glib-N-ary-Trees.html#g-node-traverse"/>
1833
+ <keyword type="enum" name="enum GTraverseFlags" link="glib-N-ary-Trees.html#GTraverseFlags"/>
1834
+ <keyword type="function" name="GNodeTraverseFunc ()" link="glib-N-ary-Trees.html#GNodeTraverseFunc"/>
1835
+ <keyword type="function" name="g_node_children_foreach ()" link="glib-N-ary-Trees.html#g-node-children-foreach"/>
1836
+ <keyword type="function" name="GNodeForeachFunc ()" link="glib-N-ary-Trees.html#GNodeForeachFunc"/>
1837
+ <keyword type="function" name="g_node_get_root ()" link="glib-N-ary-Trees.html#g-node-get-root"/>
1838
+ <keyword type="function" name="g_node_find ()" link="glib-N-ary-Trees.html#g-node-find"/>
1839
+ <keyword type="function" name="g_node_find_child ()" link="glib-N-ary-Trees.html#g-node-find-child"/>
1840
+ <keyword type="function" name="g_node_child_index ()" link="glib-N-ary-Trees.html#g-node-child-index"/>
1841
+ <keyword type="function" name="g_node_child_position ()" link="glib-N-ary-Trees.html#g-node-child-position"/>
1842
+ <keyword type="macro" name="g_node_first_child()" link="glib-N-ary-Trees.html#g-node-first-child"/>
1843
+ <keyword type="function" name="g_node_last_child ()" link="glib-N-ary-Trees.html#g-node-last-child"/>
1844
+ <keyword type="function" name="g_node_nth_child ()" link="glib-N-ary-Trees.html#g-node-nth-child"/>
1845
+ <keyword type="function" name="g_node_first_sibling ()" link="glib-N-ary-Trees.html#g-node-first-sibling"/>
1846
+ <keyword type="macro" name="g_node_next_sibling()" link="glib-N-ary-Trees.html#g-node-next-sibling"/>
1847
+ <keyword type="macro" name="g_node_prev_sibling()" link="glib-N-ary-Trees.html#g-node-prev-sibling"/>
1848
+ <keyword type="function" name="g_node_last_sibling ()" link="glib-N-ary-Trees.html#g-node-last-sibling"/>
1849
+ <keyword type="macro" name="G_NODE_IS_LEAF()" link="glib-N-ary-Trees.html#G-NODE-IS-LEAF:CAPS"/>
1850
+ <keyword type="macro" name="G_NODE_IS_ROOT()" link="glib-N-ary-Trees.html#G-NODE-IS-ROOT:CAPS"/>
1851
+ <keyword type="function" name="g_node_depth ()" link="glib-N-ary-Trees.html#g-node-depth"/>
1852
+ <keyword type="function" name="g_node_n_nodes ()" link="glib-N-ary-Trees.html#g-node-n-nodes"/>
1853
+ <keyword type="function" name="g_node_n_children ()" link="glib-N-ary-Trees.html#g-node-n-children"/>
1854
+ <keyword type="function" name="g_node_is_ancestor ()" link="glib-N-ary-Trees.html#g-node-is-ancestor"/>
1855
+ <keyword type="function" name="g_node_max_height ()" link="glib-N-ary-Trees.html#g-node-max-height"/>
1856
+ <keyword type="function" name="g_node_unlink ()" link="glib-N-ary-Trees.html#g-node-unlink"/>
1857
+ <keyword type="function" name="g_node_destroy ()" link="glib-N-ary-Trees.html#g-node-destroy"/>
1858
+ <keyword type="function" name="g_node_push_allocator ()" link="glib-N-ary-Trees.html#g-node-push-allocator" deprecated=""/>
1859
+ <keyword type="function" name="g_node_pop_allocator ()" link="glib-N-ary-Trees.html#g-node-pop-allocator" deprecated=""/>
1860
+ <keyword type="typedef" name="GQuark" link="glib-Quarks.html#GQuark"/>
1861
+ <keyword type="function" name="g_quark_from_string ()" link="glib-Quarks.html#g-quark-from-string"/>
1862
+ <keyword type="function" name="g_quark_from_static_string ()" link="glib-Quarks.html#g-quark-from-static-string"/>
1863
+ <keyword type="function" name="g_quark_to_string ()" link="glib-Quarks.html#g-quark-to-string"/>
1864
+ <keyword type="function" name="g_quark_try_string ()" link="glib-Quarks.html#g-quark-try-string"/>
1865
+ <keyword type="function" name="g_intern_string ()" link="glib-Quarks.html#g-intern-string" since="2.10"/>
1866
+ <keyword type="function" name="g_intern_static_string ()" link="glib-Quarks.html#g-intern-static-string" since="2.10"/>
1867
+ <keyword type="struct" name="GData" link="glib-Keyed-Data-Lists.html#GData"/>
1868
+ <keyword type="function" name="g_datalist_init ()" link="glib-Keyed-Data-Lists.html#g-datalist-init"/>
1869
+ <keyword type="macro" name="g_datalist_id_set_data()" link="glib-Keyed-Data-Lists.html#g-datalist-id-set-data"/>
1870
+ <keyword type="function" name="g_datalist_id_set_data_full ()" link="glib-Keyed-Data-Lists.html#g-datalist-id-set-data-full"/>
1871
+ <keyword type="function" name="g_datalist_id_get_data ()" link="glib-Keyed-Data-Lists.html#g-datalist-id-get-data"/>
1872
+ <keyword type="macro" name="g_datalist_id_remove_data()" link="glib-Keyed-Data-Lists.html#g-datalist-id-remove-data"/>
1873
+ <keyword type="function" name="g_datalist_id_remove_no_notify ()" link="glib-Keyed-Data-Lists.html#g-datalist-id-remove-no-notify"/>
1874
+ <keyword type="macro" name="g_datalist_set_data()" link="glib-Keyed-Data-Lists.html#g-datalist-set-data"/>
1875
+ <keyword type="macro" name="g_datalist_set_data_full()" link="glib-Keyed-Data-Lists.html#g-datalist-set-data-full"/>
1876
+ <keyword type="macro" name="g_datalist_get_data()" link="glib-Keyed-Data-Lists.html#g-datalist-get-data"/>
1877
+ <keyword type="macro" name="g_datalist_remove_data()" link="glib-Keyed-Data-Lists.html#g-datalist-remove-data"/>
1878
+ <keyword type="macro" name="g_datalist_remove_no_notify()" link="glib-Keyed-Data-Lists.html#g-datalist-remove-no-notify"/>
1879
+ <keyword type="function" name="g_datalist_foreach ()" link="glib-Keyed-Data-Lists.html#g-datalist-foreach"/>
1880
+ <keyword type="function" name="g_datalist_clear ()" link="glib-Keyed-Data-Lists.html#g-datalist-clear"/>
1881
+ <keyword type="function" name="g_datalist_set_flags ()" link="glib-Keyed-Data-Lists.html#g-datalist-set-flags" since="2.8"/>
1882
+ <keyword type="function" name="g_datalist_unset_flags ()" link="glib-Keyed-Data-Lists.html#g-datalist-unset-flags" since="2.8"/>
1883
+ <keyword type="function" name="g_datalist_get_flags ()" link="glib-Keyed-Data-Lists.html#g-datalist-get-flags" since="2.8"/>
1884
+ <keyword type="macro" name="G_DATALIST_FLAGS_MASK" link="glib-Keyed-Data-Lists.html#G-DATALIST-FLAGS-MASK:CAPS"/>
1885
+ <keyword type="macro" name="g_dataset_id_set_data()" link="glib-Datasets.html#g-dataset-id-set-data"/>
1886
+ <keyword type="function" name="g_dataset_id_set_data_full ()" link="glib-Datasets.html#g-dataset-id-set-data-full"/>
1887
+ <keyword type="function" name="GDestroyNotify ()" link="glib-Datasets.html#GDestroyNotify"/>
1888
+ <keyword type="function" name="g_dataset_id_get_data ()" link="glib-Datasets.html#g-dataset-id-get-data"/>
1889
+ <keyword type="macro" name="g_dataset_id_remove_data()" link="glib-Datasets.html#g-dataset-id-remove-data"/>
1890
+ <keyword type="function" name="g_dataset_id_remove_no_notify ()" link="glib-Datasets.html#g-dataset-id-remove-no-notify"/>
1891
+ <keyword type="macro" name="g_dataset_set_data()" link="glib-Datasets.html#g-dataset-set-data"/>
1892
+ <keyword type="macro" name="g_dataset_set_data_full()" link="glib-Datasets.html#g-dataset-set-data-full"/>
1893
+ <keyword type="macro" name="g_dataset_get_data()" link="glib-Datasets.html#g-dataset-get-data"/>
1894
+ <keyword type="macro" name="g_dataset_remove_data()" link="glib-Datasets.html#g-dataset-remove-data"/>
1895
+ <keyword type="macro" name="g_dataset_remove_no_notify()" link="glib-Datasets.html#g-dataset-remove-no-notify"/>
1896
+ <keyword type="function" name="g_dataset_foreach ()" link="glib-Datasets.html#g-dataset-foreach"/>
1897
+ <keyword type="function" name="GDataForeachFunc ()" link="glib-Datasets.html#GDataForeachFunc"/>
1898
+ <keyword type="function" name="g_dataset_destroy ()" link="glib-Datasets.html#g-dataset-destroy"/>
1899
+ <keyword type="struct" name="GRelation" link="glib-Relations-and-Tuples.html#GRelation"/>
1900
+ <keyword type="function" name="g_relation_new ()" link="glib-Relations-and-Tuples.html#g-relation-new"/>
1901
+ <keyword type="function" name="g_relation_index ()" link="glib-Relations-and-Tuples.html#g-relation-index"/>
1902
+ <keyword type="function" name="g_relation_insert ()" link="glib-Relations-and-Tuples.html#g-relation-insert"/>
1903
+ <keyword type="function" name="g_relation_exists ()" link="glib-Relations-and-Tuples.html#g-relation-exists"/>
1904
+ <keyword type="function" name="g_relation_count ()" link="glib-Relations-and-Tuples.html#g-relation-count"/>
1905
+ <keyword type="function" name="g_relation_select ()" link="glib-Relations-and-Tuples.html#g-relation-select"/>
1906
+ <keyword type="function" name="g_relation_delete ()" link="glib-Relations-and-Tuples.html#g-relation-delete"/>
1907
+ <keyword type="function" name="g_relation_destroy ()" link="glib-Relations-and-Tuples.html#g-relation-destroy"/>
1908
+ <keyword type="function" name="g_relation_print ()" link="glib-Relations-and-Tuples.html#g-relation-print"/>
1909
+ <keyword type="struct" name="GTuples" link="glib-Relations-and-Tuples.html#GTuples"/>
1910
+ <keyword type="function" name="g_tuples_destroy ()" link="glib-Relations-and-Tuples.html#g-tuples-destroy"/>
1911
+ <keyword type="function" name="g_tuples_index ()" link="glib-Relations-and-Tuples.html#g-tuples-index"/>
1912
+ <keyword type="struct" name="GCache" link="glib-Caches.html#GCache"/>
1913
+ <keyword type="function" name="g_cache_new ()" link="glib-Caches.html#g-cache-new"/>
1914
+ <keyword type="function" name="g_cache_insert ()" link="glib-Caches.html#g-cache-insert"/>
1915
+ <keyword type="function" name="g_cache_remove ()" link="glib-Caches.html#g-cache-remove"/>
1916
+ <keyword type="function" name="g_cache_destroy ()" link="glib-Caches.html#g-cache-destroy"/>
1917
+ <keyword type="function" name="g_cache_key_foreach ()" link="glib-Caches.html#g-cache-key-foreach"/>
1918
+ <keyword type="function" name="g_cache_value_foreach ()" link="glib-Caches.html#g-cache-value-foreach" deprecated=""/>
1919
+ <keyword type="function" name="GCacheDestroyFunc ()" link="glib-Caches.html#GCacheDestroyFunc"/>
1920
+ <keyword type="function" name="GCacheDupFunc ()" link="glib-Caches.html#GCacheDupFunc"/>
1921
+ <keyword type="function" name="GCacheNewFunc ()" link="glib-Caches.html#GCacheNewFunc"/>
1922
+ <keyword type="struct" name="GAllocator" link="glib-Memory-Allocators.html#GAllocator" deprecated=""/>
1923
+ <keyword type="function" name="g_allocator_new ()" link="glib-Memory-Allocators.html#g-allocator-new" deprecated=""/>
1924
+ <keyword type="function" name="g_allocator_free ()" link="glib-Memory-Allocators.html#g-allocator-free" deprecated=""/>
1925
+ <keyword type="" name="GVariant Type Strings" link="glib-GVariantType.html#gvariant-typestrings"/>
1926
+ <keyword type="struct" name="GVariantType" link="glib-GVariantType.html#GVariantType"/>
1927
+ <keyword type="macro" name="G_VARIANT_TYPE_BOOLEAN" link="glib-GVariantType.html#G-VARIANT-TYPE-BOOLEAN:CAPS"/>
1928
+ <keyword type="macro" name="G_VARIANT_TYPE_BYTE" link="glib-GVariantType.html#G-VARIANT-TYPE-BYTE:CAPS"/>
1929
+ <keyword type="macro" name="G_VARIANT_TYPE_INT16" link="glib-GVariantType.html#G-VARIANT-TYPE-INT16:CAPS"/>
1930
+ <keyword type="macro" name="G_VARIANT_TYPE_UINT16" link="glib-GVariantType.html#G-VARIANT-TYPE-UINT16:CAPS"/>
1931
+ <keyword type="macro" name="G_VARIANT_TYPE_INT32" link="glib-GVariantType.html#G-VARIANT-TYPE-INT32:CAPS"/>
1932
+ <keyword type="macro" name="G_VARIANT_TYPE_UINT32" link="glib-GVariantType.html#G-VARIANT-TYPE-UINT32:CAPS"/>
1933
+ <keyword type="macro" name="G_VARIANT_TYPE_INT64" link="glib-GVariantType.html#G-VARIANT-TYPE-INT64:CAPS"/>
1934
+ <keyword type="macro" name="G_VARIANT_TYPE_UINT64" link="glib-GVariantType.html#G-VARIANT-TYPE-UINT64:CAPS"/>
1935
+ <keyword type="macro" name="G_VARIANT_TYPE_HANDLE" link="glib-GVariantType.html#G-VARIANT-TYPE-HANDLE:CAPS"/>
1936
+ <keyword type="macro" name="G_VARIANT_TYPE_DOUBLE" link="glib-GVariantType.html#G-VARIANT-TYPE-DOUBLE:CAPS"/>
1937
+ <keyword type="macro" name="G_VARIANT_TYPE_STRING" link="glib-GVariantType.html#G-VARIANT-TYPE-STRING:CAPS"/>
1938
+ <keyword type="macro" name="G_VARIANT_TYPE_OBJECT_PATH" link="glib-GVariantType.html#G-VARIANT-TYPE-OBJECT-PATH:CAPS"/>
1939
+ <keyword type="macro" name="G_VARIANT_TYPE_SIGNATURE" link="glib-GVariantType.html#G-VARIANT-TYPE-SIGNATURE:CAPS"/>
1940
+ <keyword type="macro" name="G_VARIANT_TYPE_VARIANT" link="glib-GVariantType.html#G-VARIANT-TYPE-VARIANT:CAPS"/>
1941
+ <keyword type="macro" name="G_VARIANT_TYPE_ANY" link="glib-GVariantType.html#G-VARIANT-TYPE-ANY:CAPS"/>
1942
+ <keyword type="macro" name="G_VARIANT_TYPE_BASIC" link="glib-GVariantType.html#G-VARIANT-TYPE-BASIC:CAPS"/>
1943
+ <keyword type="macro" name="G_VARIANT_TYPE_MAYBE" link="glib-GVariantType.html#G-VARIANT-TYPE-MAYBE:CAPS"/>
1944
+ <keyword type="macro" name="G_VARIANT_TYPE_ARRAY" link="glib-GVariantType.html#G-VARIANT-TYPE-ARRAY:CAPS"/>
1945
+ <keyword type="macro" name="G_VARIANT_TYPE_TUPLE" link="glib-GVariantType.html#G-VARIANT-TYPE-TUPLE:CAPS"/>
1946
+ <keyword type="macro" name="G_VARIANT_TYPE_UNIT" link="glib-GVariantType.html#G-VARIANT-TYPE-UNIT:CAPS"/>
1947
+ <keyword type="macro" name="G_VARIANT_TYPE_DICT_ENTRY" link="glib-GVariantType.html#G-VARIANT-TYPE-DICT-ENTRY:CAPS"/>
1948
+ <keyword type="macro" name="G_VARIANT_TYPE_DICTIONARY" link="glib-GVariantType.html#G-VARIANT-TYPE-DICTIONARY:CAPS"/>
1949
+ <keyword type="macro" name="G_VARIANT_TYPE()" link="glib-GVariantType.html#G-VARIANT-TYPE:CAPS"/>
1950
+ <keyword type="function" name="g_variant_type_free ()" link="glib-GVariantType.html#g-variant-type-free"/>
1951
+ <keyword type="function" name="g_variant_type_copy ()" link="glib-GVariantType.html#g-variant-type-copy"/>
1952
+ <keyword type="function" name="g_variant_type_new ()" link="glib-GVariantType.html#g-variant-type-new" since="2.24"/>
1953
+ <keyword type="function" name="g_variant_type_string_is_valid ()" link="glib-GVariantType.html#g-variant-type-string-is-valid"/>
1954
+ <keyword type="function" name="g_variant_type_string_scan ()" link="glib-GVariantType.html#g-variant-type-string-scan" since="2.24"/>
1955
+ <keyword type="function" name="g_variant_type_get_string_length ()" link="glib-GVariantType.html#g-variant-type-get-string-length"/>
1956
+ <keyword type="function" name="g_variant_type_peek_string ()" link="glib-GVariantType.html#g-variant-type-peek-string"/>
1957
+ <keyword type="function" name="g_variant_type_dup_string ()" link="glib-GVariantType.html#g-variant-type-dup-string"/>
1958
+ <keyword type="function" name="g_variant_type_is_definite ()" link="glib-GVariantType.html#g-variant-type-is-definite"/>
1959
+ <keyword type="function" name="g_variant_type_is_container ()" link="glib-GVariantType.html#g-variant-type-is-container"/>
1960
+ <keyword type="function" name="g_variant_type_is_basic ()" link="glib-GVariantType.html#g-variant-type-is-basic"/>
1961
+ <keyword type="function" name="g_variant_type_is_maybe ()" link="glib-GVariantType.html#g-variant-type-is-maybe"/>
1962
+ <keyword type="function" name="g_variant_type_is_array ()" link="glib-GVariantType.html#g-variant-type-is-array"/>
1963
+ <keyword type="function" name="g_variant_type_is_tuple ()" link="glib-GVariantType.html#g-variant-type-is-tuple"/>
1964
+ <keyword type="function" name="g_variant_type_is_dict_entry ()" link="glib-GVariantType.html#g-variant-type-is-dict-entry"/>
1965
+ <keyword type="function" name="g_variant_type_is_variant ()" link="glib-GVariantType.html#g-variant-type-is-variant"/>
1966
+ <keyword type="function" name="g_variant_type_hash ()" link="glib-GVariantType.html#g-variant-type-hash"/>
1967
+ <keyword type="function" name="g_variant_type_equal ()" link="glib-GVariantType.html#g-variant-type-equal"/>
1968
+ <keyword type="function" name="g_variant_type_is_subtype_of ()" link="glib-GVariantType.html#g-variant-type-is-subtype-of"/>
1969
+ <keyword type="function" name="g_variant_type_new_maybe ()" link="glib-GVariantType.html#g-variant-type-new-maybe"/>
1970
+ <keyword type="function" name="g_variant_type_new_array ()" link="glib-GVariantType.html#g-variant-type-new-array"/>
1971
+ <keyword type="function" name="g_variant_type_new_tuple ()" link="glib-GVariantType.html#g-variant-type-new-tuple"/>
1972
+ <keyword type="function" name="g_variant_type_new_dict_entry ()" link="glib-GVariantType.html#g-variant-type-new-dict-entry"/>
1973
+ <keyword type="function" name="g_variant_type_element ()" link="glib-GVariantType.html#g-variant-type-element"/>
1974
+ <keyword type="function" name="g_variant_type_n_items ()" link="glib-GVariantType.html#g-variant-type-n-items"/>
1975
+ <keyword type="function" name="g_variant_type_first ()" link="glib-GVariantType.html#g-variant-type-first"/>
1976
+ <keyword type="function" name="g_variant_type_next ()" link="glib-GVariantType.html#g-variant-type-next"/>
1977
+ <keyword type="function" name="g_variant_type_key ()" link="glib-GVariantType.html#g-variant-type-key"/>
1978
+ <keyword type="function" name="g_variant_type_value ()" link="glib-GVariantType.html#g-variant-type-value"/>
1979
+ <keyword type="" name="Memory Use" link="glib-GVariant.html#id898004"/>
1980
+ <keyword type="struct" name="GVariant" link="glib-GVariant.html#GVariant" since="2.24"/>
1981
+ <keyword type="function" name="g_variant_unref ()" link="glib-GVariant.html#g-variant-unref" since="2.24"/>
1982
+ <keyword type="function" name="g_variant_ref ()" link="glib-GVariant.html#g-variant-ref" since="2.24"/>
1983
+ <keyword type="function" name="g_variant_ref_sink ()" link="glib-GVariant.html#g-variant-ref-sink" since="2.24"/>
1984
+ <keyword type="function" name="g_variant_get_type ()" link="glib-GVariant.html#g-variant-get-type" since="2.24"/>
1985
+ <keyword type="function" name="g_variant_get_type_string ()" link="glib-GVariant.html#g-variant-get-type-string" since="2.24"/>
1986
+ <keyword type="function" name="g_variant_is_of_type ()" link="glib-GVariant.html#g-variant-is-of-type" since="2.24"/>
1987
+ <keyword type="function" name="g_variant_is_container ()" link="glib-GVariant.html#g-variant-is-container"/>
1988
+ <keyword type="function" name="g_variant_classify ()" link="glib-GVariant.html#g-variant-classify" since="2.24"/>
1989
+ <keyword type="enum" name="enum GVariantClass" link="glib-GVariant.html#GVariantClass" since="2.24"/>
1990
+ <keyword type="function" name="g_variant_get ()" link="glib-GVariant.html#g-variant-get" since="2.24"/>
1991
+ <keyword type="function" name="g_variant_get_va ()" link="glib-GVariant.html#g-variant-get-va" since="2.24"/>
1992
+ <keyword type="function" name="g_variant_new ()" link="glib-GVariant.html#g-variant-new" since="2.24"/>
1993
+ <keyword type="function" name="g_variant_new_va ()" link="glib-GVariant.html#g-variant-new-va" since="2.24"/>
1994
+ <keyword type="function" name="g_variant_new_boolean ()" link="glib-GVariant.html#g-variant-new-boolean" since="2.24"/>
1995
+ <keyword type="function" name="g_variant_new_byte ()" link="glib-GVariant.html#g-variant-new-byte" since="2.24"/>
1996
+ <keyword type="function" name="g_variant_new_int16 ()" link="glib-GVariant.html#g-variant-new-int16" since="2.24"/>
1997
+ <keyword type="function" name="g_variant_new_uint16 ()" link="glib-GVariant.html#g-variant-new-uint16" since="2.24"/>
1998
+ <keyword type="function" name="g_variant_new_int32 ()" link="glib-GVariant.html#g-variant-new-int32" since="2.24"/>
1999
+ <keyword type="function" name="g_variant_new_uint32 ()" link="glib-GVariant.html#g-variant-new-uint32" since="2.24"/>
2000
+ <keyword type="function" name="g_variant_new_int64 ()" link="glib-GVariant.html#g-variant-new-int64" since="2.24"/>
2001
+ <keyword type="function" name="g_variant_new_uint64 ()" link="glib-GVariant.html#g-variant-new-uint64" since="2.24"/>
2002
+ <keyword type="function" name="g_variant_new_handle ()" link="glib-GVariant.html#g-variant-new-handle" since="2.24"/>
2003
+ <keyword type="function" name="g_variant_new_double ()" link="glib-GVariant.html#g-variant-new-double" since="2.24"/>
2004
+ <keyword type="function" name="g_variant_new_string ()" link="glib-GVariant.html#g-variant-new-string" since="2.24"/>
2005
+ <keyword type="function" name="g_variant_new_object_path ()" link="glib-GVariant.html#g-variant-new-object-path" since="2.24"/>
2006
+ <keyword type="function" name="g_variant_is_object_path ()" link="glib-GVariant.html#g-variant-is-object-path" since="2.24"/>
2007
+ <keyword type="function" name="g_variant_new_signature ()" link="glib-GVariant.html#g-variant-new-signature" since="2.24"/>
2008
+ <keyword type="function" name="g_variant_is_signature ()" link="glib-GVariant.html#g-variant-is-signature" since="2.24"/>
2009
+ <keyword type="function" name="g_variant_new_variant ()" link="glib-GVariant.html#g-variant-new-variant" since="2.24"/>
2010
+ <keyword type="function" name="g_variant_new_strv ()" link="glib-GVariant.html#g-variant-new-strv" since="2.24"/>
2011
+ <keyword type="function" name="g_variant_get_boolean ()" link="glib-GVariant.html#g-variant-get-boolean" since="2.24"/>
2012
+ <keyword type="function" name="g_variant_get_byte ()" link="glib-GVariant.html#g-variant-get-byte" since="2.24"/>
2013
+ <keyword type="function" name="g_variant_get_int16 ()" link="glib-GVariant.html#g-variant-get-int16" since="2.24"/>
2014
+ <keyword type="function" name="g_variant_get_uint16 ()" link="glib-GVariant.html#g-variant-get-uint16" since="2.24"/>
2015
+ <keyword type="function" name="g_variant_get_int32 ()" link="glib-GVariant.html#g-variant-get-int32" since="2.24"/>
2016
+ <keyword type="function" name="g_variant_get_uint32 ()" link="glib-GVariant.html#g-variant-get-uint32" since="2.24"/>
2017
+ <keyword type="function" name="g_variant_get_int64 ()" link="glib-GVariant.html#g-variant-get-int64" since="2.24"/>
2018
+ <keyword type="function" name="g_variant_get_uint64 ()" link="glib-GVariant.html#g-variant-get-uint64" since="2.24"/>
2019
+ <keyword type="function" name="g_variant_get_handle ()" link="glib-GVariant.html#g-variant-get-handle" since="2.24"/>
2020
+ <keyword type="function" name="g_variant_get_double ()" link="glib-GVariant.html#g-variant-get-double" since="2.24"/>
2021
+ <keyword type="function" name="g_variant_get_string ()" link="glib-GVariant.html#g-variant-get-string" since="2.24"/>
2022
+ <keyword type="function" name="g_variant_dup_string ()" link="glib-GVariant.html#g-variant-dup-string" since="2.24"/>
2023
+ <keyword type="function" name="g_variant_get_variant ()" link="glib-GVariant.html#g-variant-get-variant" since="2.24"/>
2024
+ <keyword type="function" name="g_variant_get_strv ()" link="glib-GVariant.html#g-variant-get-strv" since="2.24"/>
2025
+ <keyword type="function" name="g_variant_dup_strv ()" link="glib-GVariant.html#g-variant-dup-strv" since="2.24"/>
2026
+ <keyword type="function" name="g_variant_new_maybe ()" link="glib-GVariant.html#g-variant-new-maybe" since="2.24"/>
2027
+ <keyword type="function" name="g_variant_new_array ()" link="glib-GVariant.html#g-variant-new-array" since="2.24"/>
2028
+ <keyword type="function" name="g_variant_new_tuple ()" link="glib-GVariant.html#g-variant-new-tuple" since="2.24"/>
2029
+ <keyword type="function" name="g_variant_new_dict_entry ()" link="glib-GVariant.html#g-variant-new-dict-entry" since="2.24"/>
2030
+ <keyword type="function" name="g_variant_get_maybe ()" link="glib-GVariant.html#g-variant-get-maybe" since="2.24"/>
2031
+ <keyword type="function" name="g_variant_n_children ()" link="glib-GVariant.html#g-variant-n-children" since="2.24"/>
2032
+ <keyword type="function" name="g_variant_get_child_value ()" link="glib-GVariant.html#g-variant-get-child-value" since="2.24"/>
2033
+ <keyword type="function" name="g_variant_get_child ()" link="glib-GVariant.html#g-variant-get-child" since="2.24"/>
2034
+ <keyword type="function" name="g_variant_get_fixed_array ()" link="glib-GVariant.html#g-variant-get-fixed-array" since="2.24"/>
2035
+ <keyword type="function" name="g_variant_get_size ()" link="glib-GVariant.html#g-variant-get-size" since="2.24"/>
2036
+ <keyword type="function" name="g_variant_get_data ()" link="glib-GVariant.html#g-variant-get-data" since="2.24"/>
2037
+ <keyword type="function" name="g_variant_store ()" link="glib-GVariant.html#g-variant-store" since="2.24"/>
2038
+ <keyword type="function" name="g_variant_new_from_data ()" link="glib-GVariant.html#g-variant-new-from-data" since="2.24"/>
2039
+ <keyword type="function" name="g_variant_byteswap ()" link="glib-GVariant.html#g-variant-byteswap" since="2.24"/>
2040
+ <keyword type="function" name="g_variant_get_normal_form ()" link="glib-GVariant.html#g-variant-get-normal-form" since="2.24"/>
2041
+ <keyword type="function" name="g_variant_is_normal_form ()" link="glib-GVariant.html#g-variant-is-normal-form" since="2.24"/>
2042
+ <keyword type="function" name="g_variant_hash ()" link="glib-GVariant.html#g-variant-hash" since="2.24"/>
2043
+ <keyword type="function" name="g_variant_equal ()" link="glib-GVariant.html#g-variant-equal" since="2.24"/>
2044
+ <keyword type="function" name="g_variant_print ()" link="glib-GVariant.html#g-variant-print"/>
2045
+ <keyword type="function" name="g_variant_print_string ()" link="glib-GVariant.html#g-variant-print-string" since="2.24"/>
2046
+ <keyword type="struct" name="GVariantIter" link="glib-GVariant.html#GVariantIter"/>
2047
+ <keyword type="function" name="g_variant_iter_copy ()" link="glib-GVariant.html#g-variant-iter-copy" since="2.24"/>
2048
+ <keyword type="function" name="g_variant_iter_free ()" link="glib-GVariant.html#g-variant-iter-free" since="2.24"/>
2049
+ <keyword type="function" name="g_variant_iter_init ()" link="glib-GVariant.html#g-variant-iter-init" since="2.24"/>
2050
+ <keyword type="function" name="g_variant_iter_n_children ()" link="glib-GVariant.html#g-variant-iter-n-children" since="2.24"/>
2051
+ <keyword type="function" name="g_variant_iter_new ()" link="glib-GVariant.html#g-variant-iter-new" since="2.24"/>
2052
+ <keyword type="function" name="g_variant_iter_next_value ()" link="glib-GVariant.html#g-variant-iter-next-value" since="2.24"/>
2053
+ <keyword type="function" name="g_variant_iter_next ()" link="glib-GVariant.html#g-variant-iter-next" since="2.24"/>
2054
+ <keyword type="function" name="g_variant_iter_loop ()" link="glib-GVariant.html#g-variant-iter-loop" since="2.24"/>
2055
+ <keyword type="struct" name="GVariantBuilder" link="glib-GVariant.html#GVariantBuilder"/>
2056
+ <keyword type="function" name="g_variant_builder_unref ()" link="glib-GVariant.html#g-variant-builder-unref" since="2.24"/>
2057
+ <keyword type="function" name="g_variant_builder_ref ()" link="glib-GVariant.html#g-variant-builder-ref" since="2.24"/>
2058
+ <keyword type="function" name="g_variant_builder_new ()" link="glib-GVariant.html#g-variant-builder-new" since="2.24"/>
2059
+ <keyword type="function" name="g_variant_builder_init ()" link="glib-GVariant.html#g-variant-builder-init" since="2.24"/>
2060
+ <keyword type="function" name="g_variant_builder_clear ()" link="glib-GVariant.html#g-variant-builder-clear" since="2.24"/>
2061
+ <keyword type="function" name="g_variant_builder_add_value ()" link="glib-GVariant.html#g-variant-builder-add-value" since="2.24"/>
2062
+ <keyword type="function" name="g_variant_builder_add ()" link="glib-GVariant.html#g-variant-builder-add" since="2.24"/>
2063
+ <keyword type="function" name="g_variant_builder_end ()" link="glib-GVariant.html#g-variant-builder-end" since="2.24"/>
2064
+ <keyword type="function" name="g_variant_builder_open ()" link="glib-GVariant.html#g-variant-builder-open" since="2.24"/>
2065
+ <keyword type="function" name="g_variant_builder_close ()" link="glib-GVariant.html#g-variant-builder-close" since="2.24"/>
2066
+ <keyword type="macro" name="G_VARIANT_PARSE_ERROR" link="glib-GVariant.html#G-VARIANT-PARSE-ERROR:CAPS"/>
2067
+ <keyword type="function" name="g_variant_parse ()" link="glib-GVariant.html#g-variant-parse"/>
2068
+ <keyword type="function" name="g_variant_new_parsed_va ()" link="glib-GVariant.html#g-variant-new-parsed-va"/>
2069
+ <keyword type="function" name="g_variant_new_parsed ()" link="glib-GVariant.html#g-variant-new-parsed"/>
2070
+ <keyword type="" name="Numeric Types" link="gvariant-format-strings.html#gvariant-format-strings-numeric-types"/>
2071
+ <keyword type="" name="Strings" link="gvariant-format-strings.html#gvariant-format-strings-strings"/>
2072
+ <keyword type="" name="Variants" link="gvariant-format-strings.html#gvariant-format-strings-variants"/>
2073
+ <keyword type="" name="Arrays" link="gvariant-format-strings.html#gvariant-format-strings-arrays"/>
2074
+ <keyword type="" name="Maybe Types" link="gvariant-format-strings.html#gvariant-format-strings-maybe-types"/>
2075
+ <keyword type="" name="Tuples" link="gvariant-format-strings.html#gvariant-format-strings-tuples"/>
2076
+ <keyword type="" name="Dictionaries" link="gvariant-format-strings.html#gvariant-format-strings-dictionaries"/>
2077
+ <keyword type="" name="GVariant *" link="gvariant-format-strings.html#gvariant-format-strings-gvariant"/>
2078
+ <keyword type="" name="Pointers" link="gvariant-format-strings.html#gvariant-format-strings-pointers"/>
2079
+ <keyword type="" name="Convenience Conversions" link="gvariant-format-strings.html#gvariant-format-strings-convenience"/>
2080
+ <keyword type="" name="Options" link="glib-gettextize.html#id531391"/>
2081
+ <keyword type="" name="Options" link="gtester.html#id516903"/>
2082
+ <keyword type="" name="Options" link="gtester-report.html#id549732"/>
2083
+ <keyword type="constant" name="G_THREAD_ERROR_AGAIN" link="glib-Threads.html#G-THREAD-ERROR-AGAIN:CAPS"/>
2084
+ <keyword type="constant" name="G_THREAD_PRIORITY_LOW" link="glib-Threads.html#G-THREAD-PRIORITY-LOW:CAPS"/>
2085
+ <keyword type="constant" name="G_THREAD_PRIORITY_NORMAL" link="glib-Threads.html#G-THREAD-PRIORITY-NORMAL:CAPS"/>
2086
+ <keyword type="constant" name="G_THREAD_PRIORITY_HIGH" link="glib-Threads.html#G-THREAD-PRIORITY-HIGH:CAPS"/>
2087
+ <keyword type="constant" name="G_THREAD_PRIORITY_URGENT" link="glib-Threads.html#G-THREAD-PRIORITY-URGENT:CAPS"/>
2088
+ <keyword type="constant" name="G_ONCE_STATUS_NOTCALLED" link="glib-Threads.html#G-ONCE-STATUS-NOTCALLED:CAPS"/>
2089
+ <keyword type="constant" name="G_ONCE_STATUS_PROGRESS" link="glib-Threads.html#G-ONCE-STATUS-PROGRESS:CAPS"/>
2090
+ <keyword type="constant" name="G_ONCE_STATUS_READY" link="glib-Threads.html#G-ONCE-STATUS-READY:CAPS"/>
2091
+ <keyword type="constant" name="G_MODULE_BIND_LAZY" link="glib-Dynamic-Loading-of-Modules.html#G-MODULE-BIND-LAZY:CAPS"/>
2092
+ <keyword type="constant" name="G_MODULE_BIND_LOCAL" link="glib-Dynamic-Loading-of-Modules.html#G-MODULE-BIND-LOCAL:CAPS"/>
2093
+ <keyword type="constant" name="G_MODULE_BIND_MASK" link="glib-Dynamic-Loading-of-Modules.html#G-MODULE-BIND-MASK:CAPS"/>
2094
+ <keyword type="constant" name="G_SEEK_CUR" link="glib-IO-Channels.html#G-SEEK-CUR:CAPS"/>
2095
+ <keyword type="constant" name="G_SEEK_SET" link="glib-IO-Channels.html#G-SEEK-SET:CAPS"/>
2096
+ <keyword type="constant" name="G_SEEK_END" link="glib-IO-Channels.html#G-SEEK-END:CAPS"/>
2097
+ <keyword type="constant" name="G_IO_STATUS_ERROR" link="glib-IO-Channels.html#G-IO-STATUS-ERROR:CAPS"/>
2098
+ <keyword type="constant" name="G_IO_STATUS_NORMAL" link="glib-IO-Channels.html#G-IO-STATUS-NORMAL:CAPS"/>
2099
+ <keyword type="constant" name="G_IO_STATUS_EOF" link="glib-IO-Channels.html#G-IO-STATUS-EOF:CAPS"/>
2100
+ <keyword type="constant" name="G_IO_STATUS_AGAIN" link="glib-IO-Channels.html#G-IO-STATUS-AGAIN:CAPS"/>
2101
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_FBIG" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-FBIG:CAPS"/>
2102
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_INVAL" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-INVAL:CAPS"/>
2103
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_IO" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-IO:CAPS"/>
2104
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_ISDIR" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-ISDIR:CAPS"/>
2105
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_NOSPC" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-NOSPC:CAPS"/>
2106
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_NXIO" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-NXIO:CAPS"/>
2107
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_OVERFLOW" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-OVERFLOW:CAPS"/>
2108
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_PIPE" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-PIPE:CAPS"/>
2109
+ <keyword type="constant" name="G_IO_CHANNEL_ERROR_FAILED" link="glib-IO-Channels.html#G-IO-CHANNEL-ERROR-FAILED:CAPS"/>
2110
+ <keyword type="constant" name="G_IO_IN" link="glib-IO-Channels.html#G-IO-IN:CAPS"/>
2111
+ <keyword type="constant" name="G_IO_OUT" link="glib-IO-Channels.html#G-IO-OUT:CAPS"/>
2112
+ <keyword type="constant" name="G_IO_PRI" link="glib-IO-Channels.html#G-IO-PRI:CAPS"/>
2113
+ <keyword type="constant" name="G_IO_ERR" link="glib-IO-Channels.html#G-IO-ERR:CAPS"/>
2114
+ <keyword type="constant" name="G_IO_HUP" link="glib-IO-Channels.html#G-IO-HUP:CAPS"/>
2115
+ <keyword type="constant" name="G_IO_NVAL" link="glib-IO-Channels.html#G-IO-NVAL:CAPS"/>
2116
+ <keyword type="constant" name="G_IO_FLAG_APPEND" link="glib-IO-Channels.html#G-IO-FLAG-APPEND:CAPS"/>
2117
+ <keyword type="constant" name="G_IO_FLAG_NONBLOCK" link="glib-IO-Channels.html#G-IO-FLAG-NONBLOCK:CAPS"/>
2118
+ <keyword type="constant" name="G_IO_FLAG_IS_READABLE" link="glib-IO-Channels.html#G-IO-FLAG-IS-READABLE:CAPS"/>
2119
+ <keyword type="constant" name="G_IO_FLAG_IS_WRITEABLE" link="glib-IO-Channels.html#G-IO-FLAG-IS-WRITEABLE:CAPS"/>
2120
+ <keyword type="constant" name="G_IO_FLAG_IS_SEEKABLE" link="glib-IO-Channels.html#G-IO-FLAG-IS-SEEKABLE:CAPS"/>
2121
+ <keyword type="constant" name="G_IO_FLAG_MASK" link="glib-IO-Channels.html#G-IO-FLAG-MASK:CAPS"/>
2122
+ <keyword type="constant" name="G_IO_FLAG_GET_MASK" link="glib-IO-Channels.html#G-IO-FLAG-GET-MASK:CAPS"/>
2123
+ <keyword type="constant" name="G_IO_FLAG_SET_MASK" link="glib-IO-Channels.html#G-IO-FLAG-SET-MASK:CAPS"/>
2124
+ <keyword type="constant" name="G_IO_ERROR_NONE" link="glib-IO-Channels.html#G-IO-ERROR-NONE:CAPS"/>
2125
+ <keyword type="constant" name="G_IO_ERROR_AGAIN" link="glib-IO-Channels.html#G-IO-ERROR-AGAIN:CAPS"/>
2126
+ <keyword type="constant" name="G_IO_ERROR_INVAL" link="glib-IO-Channels.html#G-IO-ERROR-INVAL:CAPS"/>
2127
+ <keyword type="constant" name="G_IO_ERROR_UNKNOWN" link="glib-IO-Channels.html#G-IO-ERROR-UNKNOWN:CAPS"/>
2128
+ <keyword type="constant" name="G_LOG_FLAG_RECURSION" link="glib-Message-Logging.html#G-LOG-FLAG-RECURSION:CAPS"/>
2129
+ <keyword type="constant" name="G_LOG_FLAG_FATAL" link="glib-Message-Logging.html#G-LOG-FLAG-FATAL:CAPS"/>
2130
+ <keyword type="constant" name="G_LOG_LEVEL_ERROR" link="glib-Message-Logging.html#G-LOG-LEVEL-ERROR:CAPS"/>
2131
+ <keyword type="constant" name="G_LOG_LEVEL_CRITICAL" link="glib-Message-Logging.html#G-LOG-LEVEL-CRITICAL:CAPS"/>
2132
+ <keyword type="constant" name="G_LOG_LEVEL_WARNING" link="glib-Message-Logging.html#G-LOG-LEVEL-WARNING:CAPS"/>
2133
+ <keyword type="constant" name="G_LOG_LEVEL_MESSAGE" link="glib-Message-Logging.html#G-LOG-LEVEL-MESSAGE:CAPS"/>
2134
+ <keyword type="constant" name="G_LOG_LEVEL_INFO" link="glib-Message-Logging.html#G-LOG-LEVEL-INFO:CAPS"/>
2135
+ <keyword type="constant" name="G_LOG_LEVEL_DEBUG" link="glib-Message-Logging.html#G-LOG-LEVEL-DEBUG:CAPS"/>
2136
+ <keyword type="constant" name="G_LOG_LEVEL_MASK" link="glib-Message-Logging.html#G-LOG-LEVEL-MASK:CAPS"/>
2137
+ <keyword type="constant" name="G_CONVERT_ERROR_NO_CONVERSION" link="glib-Character-Set-Conversion.html#G-CONVERT-ERROR-NO-CONVERSION:CAPS"/>
2138
+ <keyword type="constant" name="G_CONVERT_ERROR_ILLEGAL_SEQUENCE" link="glib-Character-Set-Conversion.html#G-CONVERT-ERROR-ILLEGAL-SEQUENCE:CAPS"/>
2139
+ <keyword type="constant" name="G_CONVERT_ERROR_FAILED" link="glib-Character-Set-Conversion.html#G-CONVERT-ERROR-FAILED:CAPS"/>
2140
+ <keyword type="constant" name="G_CONVERT_ERROR_PARTIAL_INPUT" link="glib-Character-Set-Conversion.html#G-CONVERT-ERROR-PARTIAL-INPUT:CAPS"/>
2141
+ <keyword type="constant" name="G_CONVERT_ERROR_BAD_URI" link="glib-Character-Set-Conversion.html#G-CONVERT-ERROR-BAD-URI:CAPS"/>
2142
+ <keyword type="constant" name="G_CONVERT_ERROR_NOT_ABSOLUTE_PATH" link="glib-Character-Set-Conversion.html#G-CONVERT-ERROR-NOT-ABSOLUTE-PATH:CAPS"/>
2143
+ <keyword type="constant" name="G_UNICODE_CONTROL" link="glib-Unicode-Manipulation.html#G-UNICODE-CONTROL:CAPS"/>
2144
+ <keyword type="constant" name="G_UNICODE_FORMAT" link="glib-Unicode-Manipulation.html#G-UNICODE-FORMAT:CAPS"/>
2145
+ <keyword type="constant" name="G_UNICODE_UNASSIGNED" link="glib-Unicode-Manipulation.html#G-UNICODE-UNASSIGNED:CAPS"/>
2146
+ <keyword type="constant" name="G_UNICODE_PRIVATE_USE" link="glib-Unicode-Manipulation.html#G-UNICODE-PRIVATE-USE:CAPS"/>
2147
+ <keyword type="constant" name="G_UNICODE_SURROGATE" link="glib-Unicode-Manipulation.html#G-UNICODE-SURROGATE:CAPS"/>
2148
+ <keyword type="constant" name="G_UNICODE_LOWERCASE_LETTER" link="glib-Unicode-Manipulation.html#G-UNICODE-LOWERCASE-LETTER:CAPS"/>
2149
+ <keyword type="constant" name="G_UNICODE_MODIFIER_LETTER" link="glib-Unicode-Manipulation.html#G-UNICODE-MODIFIER-LETTER:CAPS"/>
2150
+ <keyword type="constant" name="G_UNICODE_OTHER_LETTER" link="glib-Unicode-Manipulation.html#G-UNICODE-OTHER-LETTER:CAPS"/>
2151
+ <keyword type="constant" name="G_UNICODE_TITLECASE_LETTER" link="glib-Unicode-Manipulation.html#G-UNICODE-TITLECASE-LETTER:CAPS"/>
2152
+ <keyword type="constant" name="G_UNICODE_UPPERCASE_LETTER" link="glib-Unicode-Manipulation.html#G-UNICODE-UPPERCASE-LETTER:CAPS"/>
2153
+ <keyword type="constant" name="G_UNICODE_COMBINING_MARK" link="glib-Unicode-Manipulation.html#G-UNICODE-COMBINING-MARK:CAPS"/>
2154
+ <keyword type="constant" name="G_UNICODE_ENCLOSING_MARK" link="glib-Unicode-Manipulation.html#G-UNICODE-ENCLOSING-MARK:CAPS"/>
2155
+ <keyword type="constant" name="G_UNICODE_NON_SPACING_MARK" link="glib-Unicode-Manipulation.html#G-UNICODE-NON-SPACING-MARK:CAPS"/>
2156
+ <keyword type="constant" name="G_UNICODE_DECIMAL_NUMBER" link="glib-Unicode-Manipulation.html#G-UNICODE-DECIMAL-NUMBER:CAPS"/>
2157
+ <keyword type="constant" name="G_UNICODE_LETTER_NUMBER" link="glib-Unicode-Manipulation.html#G-UNICODE-LETTER-NUMBER:CAPS"/>
2158
+ <keyword type="constant" name="G_UNICODE_OTHER_NUMBER" link="glib-Unicode-Manipulation.html#G-UNICODE-OTHER-NUMBER:CAPS"/>
2159
+ <keyword type="constant" name="G_UNICODE_CONNECT_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-CONNECT-PUNCTUATION:CAPS"/>
2160
+ <keyword type="constant" name="G_UNICODE_DASH_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-DASH-PUNCTUATION:CAPS"/>
2161
+ <keyword type="constant" name="G_UNICODE_CLOSE_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-CLOSE-PUNCTUATION:CAPS"/>
2162
+ <keyword type="constant" name="G_UNICODE_FINAL_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-FINAL-PUNCTUATION:CAPS"/>
2163
+ <keyword type="constant" name="G_UNICODE_INITIAL_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-INITIAL-PUNCTUATION:CAPS"/>
2164
+ <keyword type="constant" name="G_UNICODE_OTHER_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-OTHER-PUNCTUATION:CAPS"/>
2165
+ <keyword type="constant" name="G_UNICODE_OPEN_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-OPEN-PUNCTUATION:CAPS"/>
2166
+ <keyword type="constant" name="G_UNICODE_CURRENCY_SYMBOL" link="glib-Unicode-Manipulation.html#G-UNICODE-CURRENCY-SYMBOL:CAPS"/>
2167
+ <keyword type="constant" name="G_UNICODE_MODIFIER_SYMBOL" link="glib-Unicode-Manipulation.html#G-UNICODE-MODIFIER-SYMBOL:CAPS"/>
2168
+ <keyword type="constant" name="G_UNICODE_MATH_SYMBOL" link="glib-Unicode-Manipulation.html#G-UNICODE-MATH-SYMBOL:CAPS"/>
2169
+ <keyword type="constant" name="G_UNICODE_OTHER_SYMBOL" link="glib-Unicode-Manipulation.html#G-UNICODE-OTHER-SYMBOL:CAPS"/>
2170
+ <keyword type="constant" name="G_UNICODE_LINE_SEPARATOR" link="glib-Unicode-Manipulation.html#G-UNICODE-LINE-SEPARATOR:CAPS"/>
2171
+ <keyword type="constant" name="G_UNICODE_PARAGRAPH_SEPARATOR" link="glib-Unicode-Manipulation.html#G-UNICODE-PARAGRAPH-SEPARATOR:CAPS"/>
2172
+ <keyword type="constant" name="G_UNICODE_SPACE_SEPARATOR" link="glib-Unicode-Manipulation.html#G-UNICODE-SPACE-SEPARATOR:CAPS"/>
2173
+ <keyword type="constant" name="G_UNICODE_BREAK_MANDATORY" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-MANDATORY:CAPS"/>
2174
+ <keyword type="constant" name="G_UNICODE_BREAK_CARRIAGE_RETURN" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-CARRIAGE-RETURN:CAPS"/>
2175
+ <keyword type="constant" name="G_UNICODE_BREAK_LINE_FEED" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-LINE-FEED:CAPS"/>
2176
+ <keyword type="constant" name="G_UNICODE_BREAK_COMBINING_MARK" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-COMBINING-MARK:CAPS"/>
2177
+ <keyword type="constant" name="G_UNICODE_BREAK_SURROGATE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-SURROGATE:CAPS"/>
2178
+ <keyword type="constant" name="G_UNICODE_BREAK_ZERO_WIDTH_SPACE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-ZERO-WIDTH-SPACE:CAPS"/>
2179
+ <keyword type="constant" name="G_UNICODE_BREAK_INSEPARABLE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-INSEPARABLE:CAPS"/>
2180
+ <keyword type="constant" name="G_UNICODE_BREAK_NON_BREAKING_GLUE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-NON-BREAKING-GLUE:CAPS"/>
2181
+ <keyword type="constant" name="G_UNICODE_BREAK_CONTINGENT" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-CONTINGENT:CAPS"/>
2182
+ <keyword type="constant" name="G_UNICODE_BREAK_SPACE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-SPACE:CAPS"/>
2183
+ <keyword type="constant" name="G_UNICODE_BREAK_AFTER" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-AFTER:CAPS"/>
2184
+ <keyword type="constant" name="G_UNICODE_BREAK_BEFORE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-BEFORE:CAPS"/>
2185
+ <keyword type="constant" name="G_UNICODE_BREAK_BEFORE_AND_AFTER" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-BEFORE-AND-AFTER:CAPS"/>
2186
+ <keyword type="constant" name="G_UNICODE_BREAK_HYPHEN" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HYPHEN:CAPS"/>
2187
+ <keyword type="constant" name="G_UNICODE_BREAK_NON_STARTER" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-NON-STARTER:CAPS"/>
2188
+ <keyword type="constant" name="G_UNICODE_BREAK_OPEN_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-OPEN-PUNCTUATION:CAPS"/>
2189
+ <keyword type="constant" name="G_UNICODE_BREAK_CLOSE_PUNCTUATION" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-CLOSE-PUNCTUATION:CAPS"/>
2190
+ <keyword type="constant" name="G_UNICODE_BREAK_QUOTATION" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-QUOTATION:CAPS"/>
2191
+ <keyword type="constant" name="G_UNICODE_BREAK_EXCLAMATION" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-EXCLAMATION:CAPS"/>
2192
+ <keyword type="constant" name="G_UNICODE_BREAK_IDEOGRAPHIC" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-IDEOGRAPHIC:CAPS"/>
2193
+ <keyword type="constant" name="G_UNICODE_BREAK_NUMERIC" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-NUMERIC:CAPS"/>
2194
+ <keyword type="constant" name="G_UNICODE_BREAK_INFIX_SEPARATOR" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-INFIX-SEPARATOR:CAPS"/>
2195
+ <keyword type="constant" name="G_UNICODE_BREAK_SYMBOL" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-SYMBOL:CAPS"/>
2196
+ <keyword type="constant" name="G_UNICODE_BREAK_ALPHABETIC" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-ALPHABETIC:CAPS"/>
2197
+ <keyword type="constant" name="G_UNICODE_BREAK_PREFIX" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-PREFIX:CAPS"/>
2198
+ <keyword type="constant" name="G_UNICODE_BREAK_POSTFIX" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-POSTFIX:CAPS"/>
2199
+ <keyword type="constant" name="G_UNICODE_BREAK_COMPLEX_CONTEXT" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-COMPLEX-CONTEXT:CAPS"/>
2200
+ <keyword type="constant" name="G_UNICODE_BREAK_AMBIGUOUS" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-AMBIGUOUS:CAPS"/>
2201
+ <keyword type="constant" name="G_UNICODE_BREAK_UNKNOWN" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-UNKNOWN:CAPS"/>
2202
+ <keyword type="constant" name="G_UNICODE_BREAK_NEXT_LINE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-NEXT-LINE:CAPS"/>
2203
+ <keyword type="constant" name="G_UNICODE_BREAK_WORD_JOINER" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-WORD-JOINER:CAPS"/>
2204
+ <keyword type="constant" name="G_UNICODE_BREAK_HANGUL_L_JAMO" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-L-JAMO:CAPS"/>
2205
+ <keyword type="constant" name="G_UNICODE_BREAK_HANGUL_V_JAMO" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-V-JAMO:CAPS"/>
2206
+ <keyword type="constant" name="G_UNICODE_BREAK_HANGUL_T_JAMO" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-T-JAMO:CAPS"/>
2207
+ <keyword type="constant" name="G_UNICODE_BREAK_HANGUL_LV_SYLLABLE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-LV-SYLLABLE:CAPS"/>
2208
+ <keyword type="constant" name="G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE" link="glib-Unicode-Manipulation.html#G-UNICODE-BREAK-HANGUL-LVT-SYLLABLE:CAPS"/>
2209
+ <keyword type="constant" name="G_UNICODE_SCRIPT_INVALID_CODE" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-INVALID-CODE:CAPS"/>
2210
+ <keyword type="constant" name="G_UNICODE_SCRIPT_COMMON" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-COMMON:CAPS"/>
2211
+ <keyword type="constant" name="G_UNICODE_SCRIPT_INHERITED" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-INHERITED:CAPS"/>
2212
+ <keyword type="constant" name="G_UNICODE_SCRIPT_ARABIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-ARABIC:CAPS"/>
2213
+ <keyword type="constant" name="G_UNICODE_SCRIPT_ARMENIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-ARMENIAN:CAPS"/>
2214
+ <keyword type="constant" name="G_UNICODE_SCRIPT_BENGALI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BENGALI:CAPS"/>
2215
+ <keyword type="constant" name="G_UNICODE_SCRIPT_BOPOMOFO" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BOPOMOFO:CAPS"/>
2216
+ <keyword type="constant" name="G_UNICODE_SCRIPT_CHEROKEE" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CHEROKEE:CAPS"/>
2217
+ <keyword type="constant" name="G_UNICODE_SCRIPT_COPTIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-COPTIC:CAPS"/>
2218
+ <keyword type="constant" name="G_UNICODE_SCRIPT_CYRILLIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CYRILLIC:CAPS"/>
2219
+ <keyword type="constant" name="G_UNICODE_SCRIPT_DESERET" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-DESERET:CAPS"/>
2220
+ <keyword type="constant" name="G_UNICODE_SCRIPT_DEVANAGARI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-DEVANAGARI:CAPS"/>
2221
+ <keyword type="constant" name="G_UNICODE_SCRIPT_ETHIOPIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-ETHIOPIC:CAPS"/>
2222
+ <keyword type="constant" name="G_UNICODE_SCRIPT_GEORGIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GEORGIAN:CAPS"/>
2223
+ <keyword type="constant" name="G_UNICODE_SCRIPT_GOTHIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GOTHIC:CAPS"/>
2224
+ <keyword type="constant" name="G_UNICODE_SCRIPT_GREEK" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GREEK:CAPS"/>
2225
+ <keyword type="constant" name="G_UNICODE_SCRIPT_GUJARATI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GUJARATI:CAPS"/>
2226
+ <keyword type="constant" name="G_UNICODE_SCRIPT_GURMUKHI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GURMUKHI:CAPS"/>
2227
+ <keyword type="constant" name="G_UNICODE_SCRIPT_HAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HAN:CAPS"/>
2228
+ <keyword type="constant" name="G_UNICODE_SCRIPT_HANGUL" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HANGUL:CAPS"/>
2229
+ <keyword type="constant" name="G_UNICODE_SCRIPT_HEBREW" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HEBREW:CAPS"/>
2230
+ <keyword type="constant" name="G_UNICODE_SCRIPT_HIRAGANA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HIRAGANA:CAPS"/>
2231
+ <keyword type="constant" name="G_UNICODE_SCRIPT_KANNADA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KANNADA:CAPS"/>
2232
+ <keyword type="constant" name="G_UNICODE_SCRIPT_KATAKANA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KATAKANA:CAPS"/>
2233
+ <keyword type="constant" name="G_UNICODE_SCRIPT_KHMER" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KHMER:CAPS"/>
2234
+ <keyword type="constant" name="G_UNICODE_SCRIPT_LAO" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LAO:CAPS"/>
2235
+ <keyword type="constant" name="G_UNICODE_SCRIPT_LATIN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LATIN:CAPS"/>
2236
+ <keyword type="constant" name="G_UNICODE_SCRIPT_MALAYALAM" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-MALAYALAM:CAPS"/>
2237
+ <keyword type="constant" name="G_UNICODE_SCRIPT_MONGOLIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-MONGOLIAN:CAPS"/>
2238
+ <keyword type="constant" name="G_UNICODE_SCRIPT_MYANMAR" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-MYANMAR:CAPS"/>
2239
+ <keyword type="constant" name="G_UNICODE_SCRIPT_OGHAM" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OGHAM:CAPS"/>
2240
+ <keyword type="constant" name="G_UNICODE_SCRIPT_OLD_ITALIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OLD-ITALIC:CAPS"/>
2241
+ <keyword type="constant" name="G_UNICODE_SCRIPT_ORIYA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-ORIYA:CAPS"/>
2242
+ <keyword type="constant" name="G_UNICODE_SCRIPT_RUNIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-RUNIC:CAPS"/>
2243
+ <keyword type="constant" name="G_UNICODE_SCRIPT_SINHALA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SINHALA:CAPS"/>
2244
+ <keyword type="constant" name="G_UNICODE_SCRIPT_SYRIAC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SYRIAC:CAPS"/>
2245
+ <keyword type="constant" name="G_UNICODE_SCRIPT_TAMIL" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TAMIL:CAPS"/>
2246
+ <keyword type="constant" name="G_UNICODE_SCRIPT_TELUGU" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TELUGU:CAPS"/>
2247
+ <keyword type="constant" name="G_UNICODE_SCRIPT_THAANA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-THAANA:CAPS"/>
2248
+ <keyword type="constant" name="G_UNICODE_SCRIPT_THAI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-THAI:CAPS"/>
2249
+ <keyword type="constant" name="G_UNICODE_SCRIPT_TIBETAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TIBETAN:CAPS"/>
2250
+ <keyword type="constant" name="G_UNICODE_SCRIPT_CANADIAN_ABORIGINAL" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CANADIAN-ABORIGINAL:CAPS"/>
2251
+ <keyword type="constant" name="G_UNICODE_SCRIPT_YI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-YI:CAPS"/>
2252
+ <keyword type="constant" name="G_UNICODE_SCRIPT_TAGALOG" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TAGALOG:CAPS"/>
2253
+ <keyword type="constant" name="G_UNICODE_SCRIPT_HANUNOO" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-HANUNOO:CAPS"/>
2254
+ <keyword type="constant" name="G_UNICODE_SCRIPT_BUHID" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BUHID:CAPS"/>
2255
+ <keyword type="constant" name="G_UNICODE_SCRIPT_TAGBANWA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TAGBANWA:CAPS"/>
2256
+ <keyword type="constant" name="G_UNICODE_SCRIPT_BRAILLE" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BRAILLE:CAPS"/>
2257
+ <keyword type="constant" name="G_UNICODE_SCRIPT_CYPRIOT" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CYPRIOT:CAPS"/>
2258
+ <keyword type="constant" name="G_UNICODE_SCRIPT_LIMBU" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LIMBU:CAPS"/>
2259
+ <keyword type="constant" name="G_UNICODE_SCRIPT_OSMANYA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OSMANYA:CAPS"/>
2260
+ <keyword type="constant" name="G_UNICODE_SCRIPT_SHAVIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SHAVIAN:CAPS"/>
2261
+ <keyword type="constant" name="G_UNICODE_SCRIPT_LINEAR_B" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LINEAR-B:CAPS"/>
2262
+ <keyword type="constant" name="G_UNICODE_SCRIPT_TAI_LE" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TAI-LE:CAPS"/>
2263
+ <keyword type="constant" name="G_UNICODE_SCRIPT_UGARITIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-UGARITIC:CAPS"/>
2264
+ <keyword type="constant" name="G_UNICODE_SCRIPT_NEW_TAI_LUE" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-NEW-TAI-LUE:CAPS"/>
2265
+ <keyword type="constant" name="G_UNICODE_SCRIPT_BUGINESE" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BUGINESE:CAPS"/>
2266
+ <keyword type="constant" name="G_UNICODE_SCRIPT_GLAGOLITIC" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-GLAGOLITIC:CAPS"/>
2267
+ <keyword type="constant" name="G_UNICODE_SCRIPT_TIFINAGH" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-TIFINAGH:CAPS"/>
2268
+ <keyword type="constant" name="G_UNICODE_SCRIPT_SYLOTI_NAGRI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SYLOTI-NAGRI:CAPS"/>
2269
+ <keyword type="constant" name="G_UNICODE_SCRIPT_OLD_PERSIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OLD-PERSIAN:CAPS"/>
2270
+ <keyword type="constant" name="G_UNICODE_SCRIPT_KHAROSHTHI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KHAROSHTHI:CAPS"/>
2271
+ <keyword type="constant" name="G_UNICODE_SCRIPT_UNKNOWN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-UNKNOWN:CAPS"/>
2272
+ <keyword type="constant" name="G_UNICODE_SCRIPT_BALINESE" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-BALINESE:CAPS"/>
2273
+ <keyword type="constant" name="G_UNICODE_SCRIPT_CUNEIFORM" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CUNEIFORM:CAPS"/>
2274
+ <keyword type="constant" name="G_UNICODE_SCRIPT_PHOENICIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-PHOENICIAN:CAPS"/>
2275
+ <keyword type="constant" name="G_UNICODE_SCRIPT_PHAGS_PA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-PHAGS-PA:CAPS"/>
2276
+ <keyword type="constant" name="G_UNICODE_SCRIPT_NKO" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-NKO:CAPS"/>
2277
+ <keyword type="constant" name="G_UNICODE_SCRIPT_KAYAH_LI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-KAYAH-LI:CAPS"/>
2278
+ <keyword type="constant" name="G_UNICODE_SCRIPT_LEPCHA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LEPCHA:CAPS"/>
2279
+ <keyword type="constant" name="G_UNICODE_SCRIPT_REJANG" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-REJANG:CAPS"/>
2280
+ <keyword type="constant" name="G_UNICODE_SCRIPT_SUNDANESE" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SUNDANESE:CAPS"/>
2281
+ <keyword type="constant" name="G_UNICODE_SCRIPT_SAURASHTRA" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-SAURASHTRA:CAPS"/>
2282
+ <keyword type="constant" name="G_UNICODE_SCRIPT_CHAM" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CHAM:CAPS"/>
2283
+ <keyword type="constant" name="G_UNICODE_SCRIPT_OL_CHIKI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-OL-CHIKI:CAPS"/>
2284
+ <keyword type="constant" name="G_UNICODE_SCRIPT_VAI" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-VAI:CAPS"/>
2285
+ <keyword type="constant" name="G_UNICODE_SCRIPT_CARIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-CARIAN:CAPS"/>
2286
+ <keyword type="constant" name="G_UNICODE_SCRIPT_LYCIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LYCIAN:CAPS"/>
2287
+ <keyword type="constant" name="G_UNICODE_SCRIPT_LYDIAN" link="glib-Unicode-Manipulation.html#G-UNICODE-SCRIPT-LYDIAN:CAPS"/>
2288
+ <keyword type="constant" name="G_NORMALIZE_DEFAULT" link="glib-Unicode-Manipulation.html#G-NORMALIZE-DEFAULT:CAPS"/>
2289
+ <keyword type="constant" name="G_NORMALIZE_NFD" link="glib-Unicode-Manipulation.html#G-NORMALIZE-NFD:CAPS"/>
2290
+ <keyword type="constant" name="G_NORMALIZE_DEFAULT_COMPOSE" link="glib-Unicode-Manipulation.html#G-NORMALIZE-DEFAULT-COMPOSE:CAPS"/>
2291
+ <keyword type="constant" name="G_NORMALIZE_NFC" link="glib-Unicode-Manipulation.html#G-NORMALIZE-NFC:CAPS"/>
2292
+ <keyword type="constant" name="G_NORMALIZE_ALL" link="glib-Unicode-Manipulation.html#G-NORMALIZE-ALL:CAPS"/>
2293
+ <keyword type="constant" name="G_NORMALIZE_NFKD" link="glib-Unicode-Manipulation.html#G-NORMALIZE-NFKD:CAPS"/>
2294
+ <keyword type="constant" name="G_NORMALIZE_ALL_COMPOSE" link="glib-Unicode-Manipulation.html#G-NORMALIZE-ALL-COMPOSE:CAPS"/>
2295
+ <keyword type="constant" name="G_NORMALIZE_NFKC" link="glib-Unicode-Manipulation.html#G-NORMALIZE-NFKC:CAPS"/>
2296
+ <keyword type="constant" name="G_CHECKSUM_MD5" link="glib-Data-Checksums.html#G-CHECKSUM-MD5:CAPS"/>
2297
+ <keyword type="constant" name="G_CHECKSUM_SHA1" link="glib-Data-Checksums.html#G-CHECKSUM-SHA1:CAPS"/>
2298
+ <keyword type="constant" name="G_CHECKSUM_SHA256" link="glib-Data-Checksums.html#G-CHECKSUM-SHA256:CAPS"/>
2299
+ <keyword type="constant" name="G_DATE_DAY" link="glib-Date-and-Time-Functions.html#G-DATE-DAY:CAPS"/>
2300
+ <keyword type="constant" name="G_DATE_MONTH" link="glib-Date-and-Time-Functions.html#G-DATE-MONTH:CAPS"/>
2301
+ <keyword type="constant" name="G_DATE_YEAR" link="glib-Date-and-Time-Functions.html#G-DATE-YEAR:CAPS"/>
2302
+ <keyword type="constant" name="G_DATE_BAD_MONTH" link="glib-Date-and-Time-Functions.html#G-DATE-BAD-MONTH:CAPS"/>
2303
+ <keyword type="constant" name="G_DATE_JANUARY" link="glib-Date-and-Time-Functions.html#G-DATE-JANUARY:CAPS"/>
2304
+ <keyword type="constant" name="G_DATE_FEBRUARY" link="glib-Date-and-Time-Functions.html#G-DATE-FEBRUARY:CAPS"/>
2305
+ <keyword type="constant" name="G_DATE_MARCH" link="glib-Date-and-Time-Functions.html#G-DATE-MARCH:CAPS"/>
2306
+ <keyword type="constant" name="G_DATE_APRIL" link="glib-Date-and-Time-Functions.html#G-DATE-APRIL:CAPS"/>
2307
+ <keyword type="constant" name="G_DATE_MAY" link="glib-Date-and-Time-Functions.html#G-DATE-MAY:CAPS"/>
2308
+ <keyword type="constant" name="G_DATE_JUNE" link="glib-Date-and-Time-Functions.html#G-DATE-JUNE:CAPS"/>
2309
+ <keyword type="constant" name="G_DATE_JULY" link="glib-Date-and-Time-Functions.html#G-DATE-JULY:CAPS"/>
2310
+ <keyword type="constant" name="G_DATE_AUGUST" link="glib-Date-and-Time-Functions.html#G-DATE-AUGUST:CAPS"/>
2311
+ <keyword type="constant" name="G_DATE_SEPTEMBER" link="glib-Date-and-Time-Functions.html#G-DATE-SEPTEMBER:CAPS"/>
2312
+ <keyword type="constant" name="G_DATE_OCTOBER" link="glib-Date-and-Time-Functions.html#G-DATE-OCTOBER:CAPS"/>
2313
+ <keyword type="constant" name="G_DATE_NOVEMBER" link="glib-Date-and-Time-Functions.html#G-DATE-NOVEMBER:CAPS"/>
2314
+ <keyword type="constant" name="G_DATE_DECEMBER" link="glib-Date-and-Time-Functions.html#G-DATE-DECEMBER:CAPS"/>
2315
+ <keyword type="constant" name="G_DATE_BAD_WEEKDAY" link="glib-Date-and-Time-Functions.html#G-DATE-BAD-WEEKDAY:CAPS"/>
2316
+ <keyword type="constant" name="G_DATE_MONDAY" link="glib-Date-and-Time-Functions.html#G-DATE-MONDAY:CAPS"/>
2317
+ <keyword type="constant" name="G_DATE_TUESDAY" link="glib-Date-and-Time-Functions.html#G-DATE-TUESDAY:CAPS"/>
2318
+ <keyword type="constant" name="G_DATE_WEDNESDAY" link="glib-Date-and-Time-Functions.html#G-DATE-WEDNESDAY:CAPS"/>
2319
+ <keyword type="constant" name="G_DATE_THURSDAY" link="glib-Date-and-Time-Functions.html#G-DATE-THURSDAY:CAPS"/>
2320
+ <keyword type="constant" name="G_DATE_FRIDAY" link="glib-Date-and-Time-Functions.html#G-DATE-FRIDAY:CAPS"/>
2321
+ <keyword type="constant" name="G_DATE_SATURDAY" link="glib-Date-and-Time-Functions.html#G-DATE-SATURDAY:CAPS"/>
2322
+ <keyword type="constant" name="G_DATE_SUNDAY" link="glib-Date-and-Time-Functions.html#G-DATE-SUNDAY:CAPS"/>
2323
+ <keyword type="constant" name="G_HOOK_FLAG_ACTIVE" link="glib-Hook-Functions.html#G-HOOK-FLAG-ACTIVE:CAPS"/>
2324
+ <keyword type="constant" name="G_HOOK_FLAG_IN_CALL" link="glib-Hook-Functions.html#G-HOOK-FLAG-IN-CALL:CAPS"/>
2325
+ <keyword type="constant" name="G_HOOK_FLAG_MASK" link="glib-Hook-Functions.html#G-HOOK-FLAG-MASK:CAPS"/>
2326
+ <keyword type="constant" name="G_USER_DIRECTORY_DESKTOP" link="glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-DESKTOP:CAPS"/>
2327
+ <keyword type="constant" name="G_USER_DIRECTORY_DOCUMENTS" link="glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-DOCUMENTS:CAPS"/>
2328
+ <keyword type="constant" name="G_USER_DIRECTORY_DOWNLOAD" link="glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-DOWNLOAD:CAPS"/>
2329
+ <keyword type="constant" name="G_USER_DIRECTORY_MUSIC" link="glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-MUSIC:CAPS"/>
2330
+ <keyword type="constant" name="G_USER_DIRECTORY_PICTURES" link="glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-PICTURES:CAPS"/>
2331
+ <keyword type="constant" name="G_USER_DIRECTORY_PUBLIC_SHARE" link="glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-PUBLIC-SHARE:CAPS"/>
2332
+ <keyword type="constant" name="G_USER_DIRECTORY_TEMPLATES" link="glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-TEMPLATES:CAPS"/>
2333
+ <keyword type="constant" name="G_USER_DIRECTORY_VIDEOS" link="glib-Miscellaneous-Utility-Functions.html#G-USER-DIRECTORY-VIDEOS:CAPS"/>
2334
+ <keyword type="constant" name="G_USER_N_DIRECTORIES" link="glib-Miscellaneous-Utility-Functions.html#G-USER-N-DIRECTORIES:CAPS"/>
2335
+ <keyword type="constant" name="G_TOKEN_EOF" link="glib-Lexical-Scanner.html#G-TOKEN-EOF:CAPS"/>
2336
+ <keyword type="constant" name="G_TOKEN_LEFT_PAREN" link="glib-Lexical-Scanner.html#G-TOKEN-LEFT-PAREN:CAPS"/>
2337
+ <keyword type="constant" name="G_TOKEN_LEFT_CURLY" link="glib-Lexical-Scanner.html#G-TOKEN-LEFT-CURLY:CAPS"/>
2338
+ <keyword type="constant" name="G_TOKEN_RIGHT_CURLY" link="glib-Lexical-Scanner.html#G-TOKEN-RIGHT-CURLY:CAPS"/>
2339
+ <keyword type="constant" name="G_ERR_UNKNOWN" link="glib-Lexical-Scanner.html#G-ERR-UNKNOWN:CAPS"/>
2340
+ <keyword type="constant" name="G_ERR_UNEXP_EOF" link="glib-Lexical-Scanner.html#G-ERR-UNEXP-EOF:CAPS"/>
2341
+ <keyword type="constant" name="G_ERR_UNEXP_EOF_IN_STRING" link="glib-Lexical-Scanner.html#G-ERR-UNEXP-EOF-IN-STRING:CAPS"/>
2342
+ <keyword type="constant" name="G_ERR_UNEXP_EOF_IN_COMMENT" link="glib-Lexical-Scanner.html#G-ERR-UNEXP-EOF-IN-COMMENT:CAPS"/>
2343
+ <keyword type="constant" name="G_ERR_NON_DIGIT_IN_CONST" link="glib-Lexical-Scanner.html#G-ERR-NON-DIGIT-IN-CONST:CAPS"/>
2344
+ <keyword type="constant" name="G_ERR_DIGIT_RADIX" link="glib-Lexical-Scanner.html#G-ERR-DIGIT-RADIX:CAPS"/>
2345
+ <keyword type="constant" name="G_ERR_FLOAT_RADIX" link="glib-Lexical-Scanner.html#G-ERR-FLOAT-RADIX:CAPS"/>
2346
+ <keyword type="constant" name="G_ERR_FLOAT_MALFORMED" link="glib-Lexical-Scanner.html#G-ERR-FLOAT-MALFORMED:CAPS"/>
2347
+ <keyword type="constant" name="G_SPAWN_ERROR_FORK" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-FORK:CAPS"/>
2348
+ <keyword type="constant" name="G_SPAWN_ERROR_READ" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-READ:CAPS"/>
2349
+ <keyword type="constant" name="G_SPAWN_ERROR_CHDIR" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-CHDIR:CAPS"/>
2350
+ <keyword type="constant" name="G_SPAWN_ERROR_ACCES" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-ACCES:CAPS"/>
2351
+ <keyword type="constant" name="G_SPAWN_ERROR_PERM" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-PERM:CAPS"/>
2352
+ <keyword type="constant" name="G_SPAWN_ERROR_2BIG" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-2BIG:CAPS"/>
2353
+ <keyword type="constant" name="G_SPAWN_ERROR_NOEXEC" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-NOEXEC:CAPS"/>
2354
+ <keyword type="constant" name="G_SPAWN_ERROR_NAMETOOLONG" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-NAMETOOLONG:CAPS"/>
2355
+ <keyword type="constant" name="G_SPAWN_ERROR_NOENT" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-NOENT:CAPS"/>
2356
+ <keyword type="constant" name="G_SPAWN_ERROR_NOMEM" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-NOMEM:CAPS"/>
2357
+ <keyword type="constant" name="G_SPAWN_ERROR_NOTDIR" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-NOTDIR:CAPS"/>
2358
+ <keyword type="constant" name="G_SPAWN_ERROR_LOOP" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-LOOP:CAPS"/>
2359
+ <keyword type="constant" name="G_SPAWN_ERROR_TXTBUSY" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-TXTBUSY:CAPS"/>
2360
+ <keyword type="constant" name="G_SPAWN_ERROR_IO" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-IO:CAPS"/>
2361
+ <keyword type="constant" name="G_SPAWN_ERROR_NFILE" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-NFILE:CAPS"/>
2362
+ <keyword type="constant" name="G_SPAWN_ERROR_MFILE" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-MFILE:CAPS"/>
2363
+ <keyword type="constant" name="G_SPAWN_ERROR_INVAL" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-INVAL:CAPS"/>
2364
+ <keyword type="constant" name="G_SPAWN_ERROR_ISDIR" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-ISDIR:CAPS"/>
2365
+ <keyword type="constant" name="G_SPAWN_ERROR_LIBBAD" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-LIBBAD:CAPS"/>
2366
+ <keyword type="constant" name="G_SPAWN_ERROR_FAILED" link="glib-Spawning-Processes.html#G-SPAWN-ERROR-FAILED:CAPS"/>
2367
+ <keyword type="constant" name="G_SPAWN_LEAVE_DESCRIPTORS_OPEN" link="glib-Spawning-Processes.html#G-SPAWN-LEAVE-DESCRIPTORS-OPEN:CAPS"/>
2368
+ <keyword type="constant" name="G_SPAWN_DO_NOT_REAP_CHILD" link="glib-Spawning-Processes.html#G-SPAWN-DO-NOT-REAP-CHILD:CAPS"/>
2369
+ <keyword type="constant" name="G_SPAWN_SEARCH_PATH" link="glib-Spawning-Processes.html#G-SPAWN-SEARCH-PATH:CAPS"/>
2370
+ <keyword type="constant" name="G_SPAWN_STDOUT_TO_DEV_NULL" link="glib-Spawning-Processes.html#G-SPAWN-STDOUT-TO-DEV-NULL:CAPS"/>
2371
+ <keyword type="constant" name="G_SPAWN_STDERR_TO_DEV_NULL" link="glib-Spawning-Processes.html#G-SPAWN-STDERR-TO-DEV-NULL:CAPS"/>
2372
+ <keyword type="constant" name="G_SPAWN_CHILD_INHERITS_STDIN" link="glib-Spawning-Processes.html#G-SPAWN-CHILD-INHERITS-STDIN:CAPS"/>
2373
+ <keyword type="constant" name="G_SPAWN_FILE_AND_ARGV_ZERO" link="glib-Spawning-Processes.html#G-SPAWN-FILE-AND-ARGV-ZERO:CAPS"/>
2374
+ <keyword type="constant" name="G_FILE_ERROR_EXIST" link="glib-File-Utilities.html#G-FILE-ERROR-EXIST:CAPS"/>
2375
+ <keyword type="constant" name="G_FILE_ERROR_ISDIR" link="glib-File-Utilities.html#G-FILE-ERROR-ISDIR:CAPS"/>
2376
+ <keyword type="constant" name="G_FILE_ERROR_ACCES" link="glib-File-Utilities.html#G-FILE-ERROR-ACCES:CAPS"/>
2377
+ <keyword type="constant" name="G_FILE_ERROR_NAMETOOLONG" link="glib-File-Utilities.html#G-FILE-ERROR-NAMETOOLONG:CAPS"/>
2378
+ <keyword type="constant" name="G_FILE_ERROR_NOENT" link="glib-File-Utilities.html#G-FILE-ERROR-NOENT:CAPS"/>
2379
+ <keyword type="constant" name="G_FILE_ERROR_NOTDIR" link="glib-File-Utilities.html#G-FILE-ERROR-NOTDIR:CAPS"/>
2380
+ <keyword type="constant" name="G_FILE_ERROR_NXIO" link="glib-File-Utilities.html#G-FILE-ERROR-NXIO:CAPS"/>
2381
+ <keyword type="constant" name="G_FILE_ERROR_NODEV" link="glib-File-Utilities.html#G-FILE-ERROR-NODEV:CAPS"/>
2382
+ <keyword type="constant" name="G_FILE_ERROR_ROFS" link="glib-File-Utilities.html#G-FILE-ERROR-ROFS:CAPS"/>
2383
+ <keyword type="constant" name="G_FILE_ERROR_TXTBSY" link="glib-File-Utilities.html#G-FILE-ERROR-TXTBSY:CAPS"/>
2384
+ <keyword type="constant" name="G_FILE_ERROR_FAULT" link="glib-File-Utilities.html#G-FILE-ERROR-FAULT:CAPS"/>
2385
+ <keyword type="constant" name="G_FILE_ERROR_LOOP" link="glib-File-Utilities.html#G-FILE-ERROR-LOOP:CAPS"/>
2386
+ <keyword type="constant" name="G_FILE_ERROR_NOSPC" link="glib-File-Utilities.html#G-FILE-ERROR-NOSPC:CAPS"/>
2387
+ <keyword type="constant" name="G_FILE_ERROR_NOMEM" link="glib-File-Utilities.html#G-FILE-ERROR-NOMEM:CAPS"/>
2388
+ <keyword type="constant" name="G_FILE_ERROR_MFILE" link="glib-File-Utilities.html#G-FILE-ERROR-MFILE:CAPS"/>
2389
+ <keyword type="constant" name="G_FILE_ERROR_NFILE" link="glib-File-Utilities.html#G-FILE-ERROR-NFILE:CAPS"/>
2390
+ <keyword type="constant" name="G_FILE_ERROR_BADF" link="glib-File-Utilities.html#G-FILE-ERROR-BADF:CAPS"/>
2391
+ <keyword type="constant" name="G_FILE_ERROR_INVAL" link="glib-File-Utilities.html#G-FILE-ERROR-INVAL:CAPS"/>
2392
+ <keyword type="constant" name="G_FILE_ERROR_PIPE" link="glib-File-Utilities.html#G-FILE-ERROR-PIPE:CAPS"/>
2393
+ <keyword type="constant" name="G_FILE_ERROR_AGAIN" link="glib-File-Utilities.html#G-FILE-ERROR-AGAIN:CAPS"/>
2394
+ <keyword type="constant" name="G_FILE_ERROR_INTR" link="glib-File-Utilities.html#G-FILE-ERROR-INTR:CAPS"/>
2395
+ <keyword type="constant" name="G_FILE_ERROR_IO" link="glib-File-Utilities.html#G-FILE-ERROR-IO:CAPS"/>
2396
+ <keyword type="constant" name="G_FILE_ERROR_PERM" link="glib-File-Utilities.html#G-FILE-ERROR-PERM:CAPS"/>
2397
+ <keyword type="constant" name="G_FILE_ERROR_NOSYS" link="glib-File-Utilities.html#G-FILE-ERROR-NOSYS:CAPS"/>
2398
+ <keyword type="constant" name="G_FILE_ERROR_FAILED" link="glib-File-Utilities.html#G-FILE-ERROR-FAILED:CAPS"/>
2399
+ <keyword type="constant" name="G_FILE_TEST_IS_REGULAR" link="glib-File-Utilities.html#G-FILE-TEST-IS-REGULAR:CAPS"/>
2400
+ <keyword type="constant" name="G_FILE_TEST_IS_SYMLINK" link="glib-File-Utilities.html#G-FILE-TEST-IS-SYMLINK:CAPS"/>
2401
+ <keyword type="constant" name="G_FILE_TEST_IS_DIR" link="glib-File-Utilities.html#G-FILE-TEST-IS-DIR:CAPS"/>
2402
+ <keyword type="constant" name="G_FILE_TEST_IS_EXECUTABLE" link="glib-File-Utilities.html#G-FILE-TEST-IS-EXECUTABLE:CAPS"/>
2403
+ <keyword type="constant" name="G_FILE_TEST_EXISTS" link="glib-File-Utilities.html#G-FILE-TEST-EXISTS:CAPS"/>
2404
+ <keyword type="constant" name="G_SHELL_ERROR_BAD_QUOTING" link="glib-Shell-related-Utilities.html#G-SHELL-ERROR-BAD-QUOTING:CAPS"/>
2405
+ <keyword type="constant" name="G_SHELL_ERROR_EMPTY_STRING" link="glib-Shell-related-Utilities.html#G-SHELL-ERROR-EMPTY-STRING:CAPS"/>
2406
+ <keyword type="constant" name="G_SHELL_ERROR_FAILED" link="glib-Shell-related-Utilities.html#G-SHELL-ERROR-FAILED:CAPS"/>
2407
+ <keyword type="constant" name="G_OPTION_ERROR_UNKNOWN_OPTION" link="glib-Commandline-option-parser.html#G-OPTION-ERROR-UNKNOWN-OPTION:CAPS"/>
2408
+ <keyword type="constant" name="G_OPTION_ERROR_BAD_VALUE" link="glib-Commandline-option-parser.html#G-OPTION-ERROR-BAD-VALUE:CAPS"/>
2409
+ <keyword type="constant" name="G_OPTION_ERROR_FAILED" link="glib-Commandline-option-parser.html#G-OPTION-ERROR-FAILED:CAPS"/>
2410
+ <keyword type="constant" name="G_OPTION_ARG_NONE" link="glib-Commandline-option-parser.html#G-OPTION-ARG-NONE:CAPS"/>
2411
+ <keyword type="constant" name="G_OPTION_ARG_STRING" link="glib-Commandline-option-parser.html#G-OPTION-ARG-STRING:CAPS"/>
2412
+ <keyword type="constant" name="G_OPTION_ARG_INT" link="glib-Commandline-option-parser.html#G-OPTION-ARG-INT:CAPS"/>
2413
+ <keyword type="constant" name="G_OPTION_ARG_CALLBACK" link="glib-Commandline-option-parser.html#G-OPTION-ARG-CALLBACK:CAPS"/>
2414
+ <keyword type="constant" name="G_OPTION_ARG_FILENAME" link="glib-Commandline-option-parser.html#G-OPTION-ARG-FILENAME:CAPS"/>
2415
+ <keyword type="constant" name="G_OPTION_ARG_STRING_ARRAY" link="glib-Commandline-option-parser.html#G-OPTION-ARG-STRING-ARRAY:CAPS"/>
2416
+ <keyword type="constant" name="G_OPTION_ARG_FILENAME_ARRAY" link="glib-Commandline-option-parser.html#G-OPTION-ARG-FILENAME-ARRAY:CAPS"/>
2417
+ <keyword type="constant" name="G_OPTION_ARG_DOUBLE" link="glib-Commandline-option-parser.html#G-OPTION-ARG-DOUBLE:CAPS"/>
2418
+ <keyword type="constant" name="G_OPTION_ARG_INT64" link="glib-Commandline-option-parser.html#G-OPTION-ARG-INT64:CAPS"/>
2419
+ <keyword type="constant" name="G_OPTION_FLAG_HIDDEN" link="glib-Commandline-option-parser.html#G-OPTION-FLAG-HIDDEN:CAPS"/>
2420
+ <keyword type="constant" name="G_OPTION_FLAG_IN_MAIN" link="glib-Commandline-option-parser.html#G-OPTION-FLAG-IN-MAIN:CAPS"/>
2421
+ <keyword type="constant" name="G_OPTION_FLAG_REVERSE" link="glib-Commandline-option-parser.html#G-OPTION-FLAG-REVERSE:CAPS"/>
2422
+ <keyword type="constant" name="G_OPTION_FLAG_NO_ARG" link="glib-Commandline-option-parser.html#G-OPTION-FLAG-NO-ARG:CAPS"/>
2423
+ <keyword type="constant" name="G_OPTION_FLAG_FILENAME" link="glib-Commandline-option-parser.html#G-OPTION-FLAG-FILENAME:CAPS"/>
2424
+ <keyword type="constant" name="G_OPTION_FLAG_OPTIONAL_ARG" link="glib-Commandline-option-parser.html#G-OPTION-FLAG-OPTIONAL-ARG:CAPS"/>
2425
+ <keyword type="constant" name="G_OPTION_FLAG_NOALIAS" link="glib-Commandline-option-parser.html#G-OPTION-FLAG-NOALIAS:CAPS"/>
2426
+ <keyword type="constant" name="G_REGEX_ERROR_COMPILE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-COMPILE:CAPS"/>
2427
+ <keyword type="constant" name="G_REGEX_ERROR_OPTIMIZE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-OPTIMIZE:CAPS"/>
2428
+ <keyword type="constant" name="G_REGEX_ERROR_REPLACE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-REPLACE:CAPS"/>
2429
+ <keyword type="constant" name="G_REGEX_ERROR_MATCH" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MATCH:CAPS"/>
2430
+ <keyword type="constant" name="G_REGEX_ERROR_INTERNAL" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INTERNAL:CAPS"/>
2431
+ <keyword type="constant" name="G_REGEX_ERROR_STRAY_BACKSLASH" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-STRAY-BACKSLASH:CAPS"/>
2432
+ <keyword type="constant" name="G_REGEX_ERROR_MISSING_CONTROL_CHAR" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MISSING-CONTROL-CHAR:CAPS"/>
2433
+ <keyword type="constant" name="G_REGEX_ERROR_UNRECOGNIZED_ESCAPE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNRECOGNIZED-ESCAPE:CAPS"/>
2434
+ <keyword type="constant" name="G_REGEX_ERROR_QUANTIFIERS_OUT_OF_ORDER" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-QUANTIFIERS-OUT-OF-ORDER:CAPS"/>
2435
+ <keyword type="constant" name="G_REGEX_ERROR_QUANTIFIER_TOO_BIG" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-QUANTIFIER-TOO-BIG:CAPS"/>
2436
+ <keyword type="constant" name="G_REGEX_ERROR_UNTERMINATED_CHARACTER_CLASS" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNTERMINATED-CHARACTER-CLASS:CAPS"/>
2437
+ <keyword type="constant" name="G_REGEX_ERROR_INVALID_ESCAPE_IN_CHARACTER_CLASS" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INVALID-ESCAPE-IN-CHARACTER-CLASS:CAPS"/>
2438
+ <keyword type="constant" name="G_REGEX_ERROR_RANGE_OUT_OF_ORDER" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-RANGE-OUT-OF-ORDER:CAPS"/>
2439
+ <keyword type="constant" name="G_REGEX_ERROR_NOTHING_TO_REPEAT" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-NOTHING-TO-REPEAT:CAPS"/>
2440
+ <keyword type="constant" name="G_REGEX_ERROR_UNRECOGNIZED_CHARACTER" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNRECOGNIZED-CHARACTER:CAPS"/>
2441
+ <keyword type="constant" name="G_REGEX_ERROR_POSIX_NAMED_CLASS_OUTSIDE_CLASS" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-POSIX-NAMED-CLASS-OUTSIDE-CLASS:CAPS"/>
2442
+ <keyword type="constant" name="G_REGEX_ERROR_UNMATCHED_PARENTHESIS" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNMATCHED-PARENTHESIS:CAPS"/>
2443
+ <keyword type="constant" name="G_REGEX_ERROR_INEXISTENT_SUBPATTERN_REFERENCE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INEXISTENT-SUBPATTERN-REFERENCE:CAPS"/>
2444
+ <keyword type="constant" name="G_REGEX_ERROR_UNTERMINATED_COMMENT" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNTERMINATED-COMMENT:CAPS"/>
2445
+ <keyword type="constant" name="G_REGEX_ERROR_EXPRESSION_TOO_LARGE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-EXPRESSION-TOO-LARGE:CAPS"/>
2446
+ <keyword type="constant" name="G_REGEX_ERROR_MEMORY_ERROR" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MEMORY-ERROR:CAPS"/>
2447
+ <keyword type="constant" name="G_REGEX_ERROR_VARIABLE_LENGTH_LOOKBEHIND" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-VARIABLE-LENGTH-LOOKBEHIND:CAPS"/>
2448
+ <keyword type="constant" name="G_REGEX_ERROR_MALFORMED_CONDITION" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MALFORMED-CONDITION:CAPS"/>
2449
+ <keyword type="constant" name="G_REGEX_ERROR_TOO_MANY_CONDITIONAL_BRANCHES" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-TOO-MANY-CONDITIONAL-BRANCHES:CAPS"/>
2450
+ <keyword type="constant" name="G_REGEX_ERROR_ASSERTION_EXPECTED" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-ASSERTION-EXPECTED:CAPS"/>
2451
+ <keyword type="constant" name="G_REGEX_ERROR_UNKNOWN_POSIX_CLASS_NAME" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNKNOWN-POSIX-CLASS-NAME:CAPS"/>
2452
+ <keyword type="constant" name="G_REGEX_ERROR_POSIX_COLLATING_ELEMENTS_NOT_SUPPORTED" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-POSIX-COLLATING-ELEMENTS-NOT-SUPPORTED:CAPS"/>
2453
+ <keyword type="constant" name="G_REGEX_ERROR_HEX_CODE_TOO_LARGE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-HEX-CODE-TOO-LARGE:CAPS"/>
2454
+ <keyword type="constant" name="G_REGEX_ERROR_INVALID_CONDITION" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INVALID-CONDITION:CAPS"/>
2455
+ <keyword type="constant" name="G_REGEX_ERROR_SINGLE_BYTE_MATCH_IN_LOOKBEHIND" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-SINGLE-BYTE-MATCH-IN-LOOKBEHIND:CAPS"/>
2456
+ <keyword type="constant" name="G_REGEX_ERROR_INFINITE_LOOP" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INFINITE-LOOP:CAPS"/>
2457
+ <keyword type="constant" name="G_REGEX_ERROR_MISSING_SUBPATTERN_NAME_TERMINATOR" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MISSING-SUBPATTERN-NAME-TERMINATOR:CAPS"/>
2458
+ <keyword type="constant" name="G_REGEX_ERROR_DUPLICATE_SUBPATTERN_NAME" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-DUPLICATE-SUBPATTERN-NAME:CAPS"/>
2459
+ <keyword type="constant" name="G_REGEX_ERROR_MALFORMED_PROPERTY" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MALFORMED-PROPERTY:CAPS"/>
2460
+ <keyword type="constant" name="G_REGEX_ERROR_UNKNOWN_PROPERTY" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-UNKNOWN-PROPERTY:CAPS"/>
2461
+ <keyword type="constant" name="G_REGEX_ERROR_SUBPATTERN_NAME_TOO_LONG" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-SUBPATTERN-NAME-TOO-LONG:CAPS"/>
2462
+ <keyword type="constant" name="G_REGEX_ERROR_TOO_MANY_SUBPATTERNS" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-TOO-MANY-SUBPATTERNS:CAPS"/>
2463
+ <keyword type="constant" name="G_REGEX_ERROR_INVALID_OCTAL_VALUE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INVALID-OCTAL-VALUE:CAPS"/>
2464
+ <keyword type="constant" name="G_REGEX_ERROR_TOO_MANY_BRANCHES_IN_DEFINE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-TOO-MANY-BRANCHES-IN-DEFINE:CAPS"/>
2465
+ <keyword type="constant" name="G_REGEX_ERROR_DEFINE_REPETION" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-DEFINE-REPETION:CAPS"/>
2466
+ <keyword type="constant" name="G_REGEX_ERROR_INCONSISTENT_NEWLINE_OPTIONS" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-INCONSISTENT-NEWLINE-OPTIONS:CAPS"/>
2467
+ <keyword type="constant" name="G_REGEX_ERROR_MISSING_BACK_REFERENCE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR-MISSING-BACK-REFERENCE:CAPS"/>
2468
+ <keyword type="constant" name="G_REGEX_CASELESS" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-CASELESS:CAPS"/>
2469
+ <keyword type="constant" name="G_REGEX_MULTILINE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MULTILINE:CAPS"/>
2470
+ <keyword type="constant" name="G_REGEX_DOTALL" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-DOTALL:CAPS"/>
2471
+ <keyword type="constant" name="G_REGEX_EXTENDED" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-EXTENDED:CAPS"/>
2472
+ <keyword type="constant" name="G_REGEX_ANCHORED" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-ANCHORED:CAPS"/>
2473
+ <keyword type="constant" name="G_REGEX_DOLLAR_ENDONLY" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-DOLLAR-ENDONLY:CAPS"/>
2474
+ <keyword type="constant" name="G_REGEX_UNGREEDY" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-UNGREEDY:CAPS"/>
2475
+ <keyword type="constant" name="G_REGEX_RAW" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-RAW:CAPS"/>
2476
+ <keyword type="constant" name="G_REGEX_NO_AUTO_CAPTURE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-NO-AUTO-CAPTURE:CAPS"/>
2477
+ <keyword type="constant" name="G_REGEX_OPTIMIZE" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-OPTIMIZE:CAPS"/>
2478
+ <keyword type="constant" name="G_REGEX_DUPNAMES" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-DUPNAMES:CAPS"/>
2479
+ <keyword type="constant" name="G_REGEX_NEWLINE_CR" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-NEWLINE-CR:CAPS"/>
2480
+ <keyword type="constant" name="G_REGEX_NEWLINE_LF" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-NEWLINE-LF:CAPS"/>
2481
+ <keyword type="constant" name="G_REGEX_NEWLINE_CRLF" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-NEWLINE-CRLF:CAPS"/>
2482
+ <keyword type="constant" name="G_REGEX_MATCH_ANCHORED" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-ANCHORED:CAPS"/>
2483
+ <keyword type="constant" name="G_REGEX_MATCH_NOTBOL" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NOTBOL:CAPS"/>
2484
+ <keyword type="constant" name="G_REGEX_MATCH_NOTEOL" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NOTEOL:CAPS"/>
2485
+ <keyword type="constant" name="G_REGEX_MATCH_NOTEMPTY" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NOTEMPTY:CAPS"/>
2486
+ <keyword type="constant" name="G_REGEX_MATCH_PARTIAL" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-PARTIAL:CAPS"/>
2487
+ <keyword type="constant" name="G_REGEX_MATCH_NEWLINE_CR" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NEWLINE-CR:CAPS"/>
2488
+ <keyword type="constant" name="G_REGEX_MATCH_NEWLINE_LF" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NEWLINE-LF:CAPS"/>
2489
+ <keyword type="constant" name="G_REGEX_MATCH_NEWLINE_CRLF" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NEWLINE-CRLF:CAPS"/>
2490
+ <keyword type="constant" name="G_REGEX_MATCH_NEWLINE_ANY" link="glib-Perl-compatible-regular-expressions.html#G-REGEX-MATCH-NEWLINE-ANY:CAPS"/>
2491
+ <keyword type="constant" name="G_MARKUP_ERROR_BAD_UTF8" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-BAD-UTF8:CAPS"/>
2492
+ <keyword type="constant" name="G_MARKUP_ERROR_EMPTY" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-EMPTY:CAPS"/>
2493
+ <keyword type="constant" name="G_MARKUP_ERROR_PARSE" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-PARSE:CAPS"/>
2494
+ <keyword type="constant" name="G_MARKUP_ERROR_UNKNOWN_ELEMENT" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-UNKNOWN-ELEMENT:CAPS"/>
2495
+ <keyword type="constant" name="G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-UNKNOWN-ATTRIBUTE:CAPS"/>
2496
+ <keyword type="constant" name="G_MARKUP_ERROR_INVALID_CONTENT" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-INVALID-CONTENT:CAPS"/>
2497
+ <keyword type="constant" name="G_MARKUP_ERROR_MISSING_ATTRIBUTE" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR-MISSING-ATTRIBUTE:CAPS"/>
2498
+ <keyword type="constant" name="G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-DO-NOT-USE-THIS-UNSUPPORTED-FLAG:CAPS"/>
2499
+ <keyword type="constant" name="G_MARKUP_TREAT_CDATA_AS_TEXT" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-TREAT-CDATA-AS-TEXT:CAPS"/>
2500
+ <keyword type="constant" name="G_MARKUP_PREFIX_ERROR_POSITION" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-PREFIX-ERROR-POSITION:CAPS"/>
2501
+ <keyword type="constant" name="G_MARKUP_COLLECT_INVALID" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-INVALID:CAPS"/>
2502
+ <keyword type="constant" name="G_MARKUP_COLLECT_STRING" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-STRING:CAPS"/>
2503
+ <keyword type="constant" name="G_MARKUP_COLLECT_STRDUP" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-STRDUP:CAPS"/>
2504
+ <keyword type="constant" name="G_MARKUP_COLLECT_BOOLEAN" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-BOOLEAN:CAPS"/>
2505
+ <keyword type="constant" name="G_MARKUP_COLLECT_TRISTATE" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-TRISTATE:CAPS"/>
2506
+ <keyword type="constant" name="G_MARKUP_COLLECT_OPTIONAL" link="glib-Simple-XML-Subset-Parser.html#G-MARKUP-COLLECT-OPTIONAL:CAPS"/>
2507
+ <keyword type="constant" name="G_KEY_FILE_ERROR_UNKNOWN_ENCODING" link="glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-UNKNOWN-ENCODING:CAPS"/>
2508
+ <keyword type="constant" name="G_KEY_FILE_ERROR_PARSE" link="glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-PARSE:CAPS"/>
2509
+ <keyword type="constant" name="G_KEY_FILE_ERROR_NOT_FOUND" link="glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-NOT-FOUND:CAPS"/>
2510
+ <keyword type="constant" name="G_KEY_FILE_ERROR_KEY_NOT_FOUND" link="glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-KEY-NOT-FOUND:CAPS"/>
2511
+ <keyword type="constant" name="G_KEY_FILE_ERROR_GROUP_NOT_FOUND" link="glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-GROUP-NOT-FOUND:CAPS"/>
2512
+ <keyword type="constant" name="G_KEY_FILE_ERROR_INVALID_VALUE" link="glib-Key-value-file-parser.html#G-KEY-FILE-ERROR-INVALID-VALUE:CAPS"/>
2513
+ <keyword type="constant" name="G_KEY_FILE_NONE" link="glib-Key-value-file-parser.html#G-KEY-FILE-NONE:CAPS"/>
2514
+ <keyword type="constant" name="G_KEY_FILE_KEEP_COMMENTS" link="glib-Key-value-file-parser.html#G-KEY-FILE-KEEP-COMMENTS:CAPS"/>
2515
+ <keyword type="constant" name="G_KEY_FILE_KEEP_TRANSLATIONS" link="glib-Key-value-file-parser.html#G-KEY-FILE-KEEP-TRANSLATIONS:CAPS"/>
2516
+ <keyword type="constant" name="G_BOOKMARK_FILE_ERROR_INVALID_URI" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-INVALID-URI:CAPS"/>
2517
+ <keyword type="constant" name="G_BOOKMARK_FILE_ERROR_INVALID_VALUE" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-INVALID-VALUE:CAPS"/>
2518
+ <keyword type="constant" name="G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-APP-NOT-REGISTERED:CAPS"/>
2519
+ <keyword type="constant" name="G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-URI-NOT-FOUND:CAPS"/>
2520
+ <keyword type="constant" name="G_BOOKMARK_FILE_ERROR_READ" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-READ:CAPS"/>
2521
+ <keyword type="constant" name="G_BOOKMARK_FILE_ERROR_UNKNOWN_ENCODING" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-UNKNOWN-ENCODING:CAPS"/>
2522
+ <keyword type="constant" name="G_BOOKMARK_FILE_ERROR_WRITE" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-WRITE:CAPS"/>
2523
+ <keyword type="constant" name="G_BOOKMARK_FILE_ERROR_FILE_NOT_FOUND" link="glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR-FILE-NOT-FOUND:CAPS"/>
2524
+ <keyword type="constant" name="G_TEST_TRAP_SILENCE_STDOUT" link="glib-Testing.html#G-TEST-TRAP-SILENCE-STDOUT:CAPS"/>
2525
+ <keyword type="constant" name="G_TEST_TRAP_SILENCE_STDERR" link="glib-Testing.html#G-TEST-TRAP-SILENCE-STDERR:CAPS"/>
2526
+ <keyword type="constant" name="G_TEST_TRAP_INHERIT_STDIN" link="glib-Testing.html#G-TEST-TRAP-INHERIT-STDIN:CAPS"/>
2527
+ <keyword type="constant" name="G_IN_ORDER" link="glib-Balanced-Binary-Trees.html#G-IN-ORDER:CAPS"/>
2528
+ <keyword type="constant" name="G_PRE_ORDER" link="glib-Balanced-Binary-Trees.html#G-PRE-ORDER:CAPS"/>
2529
+ <keyword type="constant" name="G_POST_ORDER" link="glib-Balanced-Binary-Trees.html#G-POST-ORDER:CAPS"/>
2530
+ <keyword type="constant" name="G_LEVEL_ORDER" link="glib-Balanced-Binary-Trees.html#G-LEVEL-ORDER:CAPS"/>
2531
+ <keyword type="constant" name="G_TRAVERSE_LEAVES" link="glib-N-ary-Trees.html#G-TRAVERSE-LEAVES:CAPS"/>
2532
+ <keyword type="constant" name="G_TRAVERSE_NON_LEAVES" link="glib-N-ary-Trees.html#G-TRAVERSE-NON-LEAVES:CAPS"/>
2533
+ <keyword type="constant" name="G_TRAVERSE_ALL" link="glib-N-ary-Trees.html#G-TRAVERSE-ALL:CAPS"/>
2534
+ <keyword type="constant" name="G_TRAVERSE_MASK" link="glib-N-ary-Trees.html#G-TRAVERSE-MASK:CAPS"/>
2535
+ <keyword type="constant" name="G_TRAVERSE_LEAFS" link="glib-N-ary-Trees.html#G-TRAVERSE-LEAFS:CAPS"/>
2536
+ <keyword type="constant" name="G_TRAVERSE_NON_LEAFS" link="glib-N-ary-Trees.html#G-TRAVERSE-NON-LEAFS:CAPS"/>
2537
+ <keyword type="constant" name="G_VARIANT_CLASS_BOOLEAN" link="glib-GVariant.html#G-VARIANT-CLASS-BOOLEAN:CAPS"/>
2538
+ <keyword type="constant" name="G_VARIANT_CLASS_BYTE" link="glib-GVariant.html#G-VARIANT-CLASS-BYTE:CAPS"/>
2539
+ <keyword type="constant" name="G_VARIANT_CLASS_INT16" link="glib-GVariant.html#G-VARIANT-CLASS-INT16:CAPS"/>
2540
+ <keyword type="constant" name="G_VARIANT_CLASS_UINT16" link="glib-GVariant.html#G-VARIANT-CLASS-UINT16:CAPS"/>
2541
+ <keyword type="constant" name="G_VARIANT_CLASS_INT32" link="glib-GVariant.html#G-VARIANT-CLASS-INT32:CAPS"/>
2542
+ <keyword type="constant" name="G_VARIANT_CLASS_UINT32" link="glib-GVariant.html#G-VARIANT-CLASS-UINT32:CAPS"/>
2543
+ <keyword type="constant" name="G_VARIANT_CLASS_INT64" link="glib-GVariant.html#G-VARIANT-CLASS-INT64:CAPS"/>
2544
+ <keyword type="constant" name="G_VARIANT_CLASS_UINT64" link="glib-GVariant.html#G-VARIANT-CLASS-UINT64:CAPS"/>
2545
+ <keyword type="constant" name="G_VARIANT_CLASS_HANDLE" link="glib-GVariant.html#G-VARIANT-CLASS-HANDLE:CAPS"/>
2546
+ <keyword type="constant" name="G_VARIANT_CLASS_DOUBLE" link="glib-GVariant.html#G-VARIANT-CLASS-DOUBLE:CAPS"/>
2547
+ <keyword type="constant" name="G_VARIANT_CLASS_STRING" link="glib-GVariant.html#G-VARIANT-CLASS-STRING:CAPS"/>
2548
+ <keyword type="constant" name="G_VARIANT_CLASS_OBJECT_PATH" link="glib-GVariant.html#G-VARIANT-CLASS-OBJECT-PATH:CAPS"/>
2549
+ <keyword type="constant" name="G_VARIANT_CLASS_SIGNATURE" link="glib-GVariant.html#G-VARIANT-CLASS-SIGNATURE:CAPS"/>
2550
+ <keyword type="constant" name="G_VARIANT_CLASS_VARIANT" link="glib-GVariant.html#G-VARIANT-CLASS-VARIANT:CAPS"/>
2551
+ <keyword type="constant" name="G_VARIANT_CLASS_MAYBE" link="glib-GVariant.html#G-VARIANT-CLASS-MAYBE:CAPS"/>
2552
+ <keyword type="constant" name="G_VARIANT_CLASS_ARRAY" link="glib-GVariant.html#G-VARIANT-CLASS-ARRAY:CAPS"/>
2553
+ <keyword type="constant" name="G_VARIANT_CLASS_TUPLE" link="glib-GVariant.html#G-VARIANT-CLASS-TUPLE:CAPS"/>
2554
+ <keyword type="constant" name="G_VARIANT_CLASS_DICT_ENTRY" link="glib-GVariant.html#G-VARIANT-CLASS-DICT-ENTRY:CAPS"/>
2555
+ </functions>
2556
+ </book>