glib2 0.90.2-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +3115 -0
- data/README +40 -0
- data/Rakefile +69 -0
- data/ext/glib2/depend +10 -0
- data/ext/glib2/extconf.rb +61 -0
- data/ext/glib2/glib2.def +89 -0
- data/ext/glib2/rbgcompat.h +30 -0
- data/ext/glib2/rbglib.c +330 -0
- data/ext/glib2/rbglib.h +96 -0
- data/ext/glib2/rbglib_bookmarkfile.c +595 -0
- data/ext/glib2/rbglib_completion.c +192 -0
- data/ext/glib2/rbglib_convert.c +195 -0
- data/ext/glib2/rbglib_error.c +95 -0
- data/ext/glib2/rbglib_fileutils.c +83 -0
- data/ext/glib2/rbglib_i18n.c +44 -0
- data/ext/glib2/rbglib_int64.c +157 -0
- data/ext/glib2/rbglib_iochannel.c +883 -0
- data/ext/glib2/rbglib_keyfile.c +846 -0
- data/ext/glib2/rbglib_maincontext.c +915 -0
- data/ext/glib2/rbglib_mainloop.c +87 -0
- data/ext/glib2/rbglib_messages.c +150 -0
- data/ext/glib2/rbglib_pollfd.c +111 -0
- data/ext/glib2/rbglib_shell.c +68 -0
- data/ext/glib2/rbglib_source.c +190 -0
- data/ext/glib2/rbglib_spawn.c +345 -0
- data/ext/glib2/rbglib_threads.c +51 -0
- data/ext/glib2/rbglib_timer.c +127 -0
- data/ext/glib2/rbglib_unicode.c +611 -0
- data/ext/glib2/rbglib_utils.c +386 -0
- data/ext/glib2/rbglib_win32.c +136 -0
- data/ext/glib2/rbgobj_boxed.c +251 -0
- data/ext/glib2/rbgobj_closure.c +337 -0
- data/ext/glib2/rbgobj_convert.c +167 -0
- data/ext/glib2/rbgobj_enums.c +961 -0
- data/ext/glib2/rbgobj_fundamental.c +30 -0
- data/ext/glib2/rbgobj_object.c +892 -0
- data/ext/glib2/rbgobj_param.c +390 -0
- data/ext/glib2/rbgobj_paramspecs.c +305 -0
- data/ext/glib2/rbgobj_signal.c +963 -0
- data/ext/glib2/rbgobj_strv.c +61 -0
- data/ext/glib2/rbgobj_type.c +851 -0
- data/ext/glib2/rbgobj_typeinstance.c +121 -0
- data/ext/glib2/rbgobj_typeinterface.c +148 -0
- data/ext/glib2/rbgobj_typemodule.c +66 -0
- data/ext/glib2/rbgobj_typeplugin.c +49 -0
- data/ext/glib2/rbgobj_value.c +313 -0
- data/ext/glib2/rbgobj_valuearray.c +59 -0
- data/ext/glib2/rbgobj_valuetypes.c +298 -0
- data/ext/glib2/rbgobject.c +406 -0
- data/ext/glib2/rbgobject.h +265 -0
- data/ext/glib2/rbgprivate.h +88 -0
- data/ext/glib2/rbgutil.c +316 -0
- data/ext/glib2/rbgutil.h +82 -0
- data/ext/glib2/rbgutil_callback.c +231 -0
- data/extconf.rb +49 -0
- data/lib/1.8/glib2.so +0 -0
- data/lib/1.9/glib2.so +0 -0
- data/lib/glib-mkenums.rb +199 -0
- data/lib/glib2.rb +239 -0
- data/lib/gnome2-win32-binary-downloader.rb +92 -0
- data/lib/mkmf-gnome2.rb +377 -0
- data/sample/bookmarkfile.rb +66 -0
- data/sample/completion.rb +45 -0
- data/sample/idle.rb +41 -0
- data/sample/iochannel.rb +44 -0
- data/sample/keyfile.rb +62 -0
- data/sample/shell.rb +36 -0
- data/sample/spawn.rb +25 -0
- data/sample/timeout.rb +28 -0
- data/sample/timeout2.rb +35 -0
- data/sample/timer.rb +40 -0
- data/sample/type-register.rb +103 -0
- data/sample/type-register2.rb +104 -0
- data/sample/utils.rb +54 -0
- data/test/glib-test-init.rb +6 -0
- data/test/glib-test-utils.rb +12 -0
- data/test/run-test.rb +21 -0
- data/test/test_enum.rb +99 -0
- data/test/test_file_utils.rb +15 -0
- data/test/test_glib2.rb +120 -0
- data/test/test_iochannel.rb +275 -0
- data/test/test_key_file.rb +38 -0
- data/test/test_mkenums.rb +25 -0
- data/test/test_signal.rb +20 -0
- data/test/test_timeout.rb +28 -0
- data/test/test_unicode.rb +369 -0
- data/test/test_utils.rb +37 -0
- data/test/test_win32.rb +13 -0
- data/test-unit/COPYING +56 -0
- data/test-unit/GPL +340 -0
- data/test-unit/History.txt +232 -0
- data/test-unit/Manifest.txt +110 -0
- data/test-unit/PSFL +271 -0
- data/test-unit/README.txt +75 -0
- data/test-unit/Rakefile +53 -0
- data/test-unit/TODO +5 -0
- data/test-unit/bin/testrb +5 -0
- data/test-unit/html/bar.png +0 -0
- data/test-unit/html/bar.svg +153 -0
- data/test-unit/html/developer.png +0 -0
- data/test-unit/html/developer.svg +469 -0
- data/test-unit/html/famfamfam-logo.png +0 -0
- data/test-unit/html/favicon.ico +0 -0
- data/test-unit/html/favicon.png +0 -0
- data/test-unit/html/favicon.svg +82 -0
- data/test-unit/html/heading-mark.png +0 -0
- data/test-unit/html/heading-mark.svg +393 -0
- data/test-unit/html/index.html +247 -0
- data/test-unit/html/index.html.ja +270 -0
- data/test-unit/html/install.png +0 -0
- data/test-unit/html/install.svg +636 -0
- data/test-unit/html/jp.png +0 -0
- data/test-unit/html/kinotan-failure.png +0 -0
- data/test-unit/html/kinotan-pass.png +0 -0
- data/test-unit/html/logo.png +0 -0
- data/test-unit/html/logo.svg +483 -0
- data/test-unit/html/reference.png +0 -0
- data/test-unit/html/rubyforge.png +0 -0
- data/test-unit/html/tango-logo.png +0 -0
- data/test-unit/html/test-unit.css +339 -0
- data/test-unit/html/tutorial.png +0 -0
- data/test-unit/html/tutorial.svg +559 -0
- data/test-unit/html/us.png +0 -0
- data/test-unit/images/color-diff.png +0 -0
- data/test-unit/lib/test/unit/assertionfailederror.rb +25 -0
- data/test-unit/lib/test/unit/assertions.rb +1334 -0
- data/test-unit/lib/test/unit/attribute.rb +125 -0
- data/test-unit/lib/test/unit/autorunner.rb +363 -0
- data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
- data/test-unit/lib/test/unit/collector/dir.rb +108 -0
- data/test-unit/lib/test/unit/collector/load.rb +144 -0
- data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
- data/test-unit/lib/test/unit/collector.rb +36 -0
- data/test-unit/lib/test/unit/color-scheme.rb +106 -0
- data/test-unit/lib/test/unit/color.rb +96 -0
- data/test-unit/lib/test/unit/diff.rb +740 -0
- data/test-unit/lib/test/unit/error.rb +130 -0
- data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
- data/test-unit/lib/test/unit/failure.rb +136 -0
- data/test-unit/lib/test/unit/fixture.rb +176 -0
- data/test-unit/lib/test/unit/notification.rb +129 -0
- data/test-unit/lib/test/unit/omission.rb +191 -0
- data/test-unit/lib/test/unit/pending.rb +150 -0
- data/test-unit/lib/test/unit/priority.rb +180 -0
- data/test-unit/lib/test/unit/runner/console.rb +52 -0
- data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
- data/test-unit/lib/test/unit/runner/tap.rb +8 -0
- data/test-unit/lib/test/unit/testcase.rb +483 -0
- data/test-unit/lib/test/unit/testresult.rb +121 -0
- data/test-unit/lib/test/unit/testsuite.rb +110 -0
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +430 -0
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +63 -0
- data/test-unit/lib/test/unit/ui/tap/testrunner.rb +82 -0
- data/test-unit/lib/test/unit/ui/testrunner.rb +53 -0
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/test-unit/lib/test/unit/util/backtracefilter.rb +42 -0
- data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/test-unit/lib/test/unit/util/observable.rb +90 -0
- data/test-unit/lib/test/unit/util/output.rb +31 -0
- data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
- data/test-unit/lib/test/unit/version.rb +7 -0
- data/test-unit/lib/test/unit.rb +328 -0
- data/test-unit/sample/adder.rb +13 -0
- data/test-unit/sample/subtracter.rb +12 -0
- data/test-unit/sample/test_adder.rb +20 -0
- data/test-unit/sample/test_subtracter.rb +20 -0
- data/test-unit/sample/test_user.rb +23 -0
- data/test-unit/test/collector/test-descendant.rb +133 -0
- data/test-unit/test/collector/test-load.rb +442 -0
- data/test-unit/test/collector/test_dir.rb +406 -0
- data/test-unit/test/collector/test_objectspace.rb +100 -0
- data/test-unit/test/run-test.rb +15 -0
- data/test-unit/test/test-attribute.rb +86 -0
- data/test-unit/test/test-color-scheme.rb +69 -0
- data/test-unit/test/test-color.rb +47 -0
- data/test-unit/test/test-diff.rb +518 -0
- data/test-unit/test/test-emacs-runner.rb +60 -0
- data/test-unit/test/test-fixture.rb +287 -0
- data/test-unit/test/test-notification.rb +33 -0
- data/test-unit/test/test-omission.rb +81 -0
- data/test-unit/test/test-pending.rb +70 -0
- data/test-unit/test/test-priority.rb +119 -0
- data/test-unit/test/test-testcase.rb +544 -0
- data/test-unit/test/test_assertions.rb +1197 -0
- data/test-unit/test/test_error.rb +26 -0
- data/test-unit/test/test_failure.rb +33 -0
- data/test-unit/test/test_testresult.rb +113 -0
- data/test-unit/test/test_testsuite.rb +129 -0
- data/test-unit/test/testunit-test-util.rb +14 -0
- data/test-unit/test/ui/test_tap.rb +33 -0
- data/test-unit/test/ui/test_testrunmediator.rb +20 -0
- data/test-unit/test/util/test-method-owner-finder.rb +38 -0
- data/test-unit/test/util/test-output.rb +11 -0
- data/test-unit/test/util/test_backtracefilter.rb +41 -0
- data/test-unit/test/util/test_observable.rb +102 -0
- data/test-unit/test/util/test_procwrapper.rb +36 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +123 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +188 -0
- data/vendor/local/bin/glib-mkenums +511 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
- data/vendor/local/bin/intl.dll +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
- data/vendor/local/bin/libgio-2.0-0.dll +0 -0
- data/vendor/local/bin/libglib-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
- data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
- data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
- data/vendor/local/bin/ngettext.exe +0 -0
- data/vendor/local/include/autosprintf.h +66 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +237 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
- data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
- data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
- data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
- data/vendor/local/include/glib-2.0/glib-object.h +41 -0
- data/vendor/local/include/glib-2.0/glib.h +97 -0
- data/vendor/local/include/glib-2.0/gmodule.h +101 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/lib/GNU.Gettext.dll +0 -0
- data/vendor/local/lib/gio-2.0.def +800 -0
- data/vendor/local/lib/gio-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
- data/vendor/local/lib/glib-2.0.def +1381 -0
- data/vendor/local/lib/glib-2.0.lib +0 -0
- data/vendor/local/lib/gmodule-2.0.def +11 -0
- data/vendor/local/lib/gmodule-2.0.lib +0 -0
- data/vendor/local/lib/gobject-2.0.def +349 -0
- data/vendor/local/lib/gobject-2.0.lib +0 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/gthread-2.0.lib +0 -0
- data/vendor/local/lib/intl.lib +0 -0
- data/vendor/local/lib/libasprintf.dll.a +0 -0
- data/vendor/local/lib/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libintl.def +31 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
- data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
- data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
- data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
- data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
- data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
- data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
- data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
- data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
- data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
- data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -0
- data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -0
- data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +47 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -0
- data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -0
- data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +355 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -0
- data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +406 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -0
- data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/locale.alias +77 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/man/man1/envsubst.1 +54 -0
- data/vendor/local/share/man/man1/gettext.1 +69 -0
- data/vendor/local/share/man/man1/glib-genmarshal.1 +307 -0
- data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
- data/vendor/local/share/man/man1/gobject-query.1 +83 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -0
- data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
- data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
- data/vendor/local/share/man/man3/dcgettext.3 +1 -0
- data/vendor/local/share/man/man3/dcngettext.3 +1 -0
- data/vendor/local/share/man/man3/dgettext.3 +1 -0
- data/vendor/local/share/man/man3/dngettext.3 +1 -0
- data/vendor/local/share/man/man3/gettext.3 +99 -0
- data/vendor/local/share/man/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -0
- data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
- data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
- data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
- data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
- metadata +940 -0
@@ -0,0 +1,1381 @@
|
|
1
|
+
EXPORTS
|
2
|
+
g_array_append_vals
|
3
|
+
g_array_free
|
4
|
+
g_array_insert_vals
|
5
|
+
g_array_new
|
6
|
+
g_array_ref
|
7
|
+
g_array_unref
|
8
|
+
g_array_get_element_size
|
9
|
+
g_array_prepend_vals
|
10
|
+
g_array_remove_index
|
11
|
+
g_array_remove_index_fast
|
12
|
+
g_array_remove_range
|
13
|
+
g_array_set_size
|
14
|
+
g_array_sized_new
|
15
|
+
g_array_sort
|
16
|
+
g_array_sort_with_data
|
17
|
+
g_byte_array_append
|
18
|
+
g_byte_array_free
|
19
|
+
g_byte_array_unref
|
20
|
+
g_byte_array_ref
|
21
|
+
g_byte_array_new
|
22
|
+
g_byte_array_prepend
|
23
|
+
g_byte_array_remove_index
|
24
|
+
g_byte_array_remove_index_fast
|
25
|
+
g_byte_array_remove_range
|
26
|
+
g_byte_array_set_size
|
27
|
+
g_byte_array_sized_new
|
28
|
+
g_byte_array_sort
|
29
|
+
g_byte_array_sort_with_data
|
30
|
+
g_ptr_array_add
|
31
|
+
g_ptr_array_foreach
|
32
|
+
g_ptr_array_free
|
33
|
+
g_ptr_array_unref
|
34
|
+
g_ptr_array_ref
|
35
|
+
g_ptr_array_new
|
36
|
+
g_ptr_array_new_with_free_func
|
37
|
+
g_ptr_array_set_free_func
|
38
|
+
g_ptr_array_remove
|
39
|
+
g_ptr_array_remove_fast
|
40
|
+
g_ptr_array_remove_index
|
41
|
+
g_ptr_array_remove_index_fast
|
42
|
+
g_ptr_array_remove_range
|
43
|
+
g_ptr_array_set_size
|
44
|
+
g_ptr_array_sized_new
|
45
|
+
g_ptr_array_sort
|
46
|
+
g_ptr_array_sort_with_data
|
47
|
+
g_async_queue_length
|
48
|
+
g_async_queue_length_unlocked
|
49
|
+
g_async_queue_lock
|
50
|
+
g_async_queue_new
|
51
|
+
g_async_queue_new_full
|
52
|
+
g_async_queue_pop
|
53
|
+
g_async_queue_pop_unlocked
|
54
|
+
g_async_queue_push
|
55
|
+
g_async_queue_push_unlocked
|
56
|
+
g_async_queue_push_sorted
|
57
|
+
g_async_queue_push_sorted_unlocked
|
58
|
+
g_async_queue_ref
|
59
|
+
g_async_queue_sort
|
60
|
+
g_async_queue_sort_unlocked
|
61
|
+
g_async_queue_timed_pop
|
62
|
+
g_async_queue_timed_pop_unlocked
|
63
|
+
g_async_queue_try_pop
|
64
|
+
g_async_queue_try_pop_unlocked
|
65
|
+
g_async_queue_unlock
|
66
|
+
g_async_queue_unref
|
67
|
+
g_async_queue_ref_unlocked
|
68
|
+
g_async_queue_unref_and_unlock
|
69
|
+
g_atomic_int_add
|
70
|
+
g_atomic_int_compare_and_exchange
|
71
|
+
g_atomic_int_exchange_and_add
|
72
|
+
g_atomic_pointer_compare_and_exchange
|
73
|
+
g_atomic_int_get
|
74
|
+
g_atomic_pointer_get
|
75
|
+
g_atomic_int_set
|
76
|
+
g_atomic_pointer_set
|
77
|
+
g_on_error_query
|
78
|
+
g_on_error_stack_trace
|
79
|
+
g_base64_encode_step
|
80
|
+
g_base64_encode_close
|
81
|
+
g_base64_encode
|
82
|
+
g_base64_decode_step
|
83
|
+
g_base64_decode
|
84
|
+
g_base64_decode_inplace
|
85
|
+
g_bookmark_file_error_quark
|
86
|
+
g_bookmark_file_new
|
87
|
+
g_bookmark_file_free
|
88
|
+
g_bookmark_file_load_from_file
|
89
|
+
g_bookmark_file_load_from_data
|
90
|
+
g_bookmark_file_load_from_data_dirs
|
91
|
+
g_bookmark_file_to_data
|
92
|
+
g_bookmark_file_to_file
|
93
|
+
g_bookmark_file_set_title
|
94
|
+
g_bookmark_file_get_title
|
95
|
+
g_bookmark_file_set_description
|
96
|
+
g_bookmark_file_get_description
|
97
|
+
g_bookmark_file_set_mime_type
|
98
|
+
g_bookmark_file_get_mime_type
|
99
|
+
g_bookmark_file_set_groups
|
100
|
+
g_bookmark_file_add_group
|
101
|
+
g_bookmark_file_has_group
|
102
|
+
g_bookmark_file_get_groups
|
103
|
+
g_bookmark_file_add_application
|
104
|
+
g_bookmark_file_has_application
|
105
|
+
g_bookmark_file_get_applications
|
106
|
+
g_bookmark_file_set_app_info
|
107
|
+
g_bookmark_file_get_app_info
|
108
|
+
g_bookmark_file_set_is_private
|
109
|
+
g_bookmark_file_get_is_private
|
110
|
+
g_bookmark_file_set_icon
|
111
|
+
g_bookmark_file_get_icon
|
112
|
+
g_bookmark_file_set_added
|
113
|
+
g_bookmark_file_get_added
|
114
|
+
g_bookmark_file_set_modified
|
115
|
+
g_bookmark_file_get_modified
|
116
|
+
g_bookmark_file_set_visited
|
117
|
+
g_bookmark_file_get_visited
|
118
|
+
g_bookmark_file_has_item
|
119
|
+
g_bookmark_file_get_size
|
120
|
+
g_bookmark_file_get_uris
|
121
|
+
g_bookmark_file_remove_group
|
122
|
+
g_bookmark_file_remove_application
|
123
|
+
g_bookmark_file_remove_item
|
124
|
+
g_bookmark_file_move_item
|
125
|
+
g_cache_destroy
|
126
|
+
g_cache_insert
|
127
|
+
g_cache_key_foreach
|
128
|
+
g_cache_new
|
129
|
+
g_cache_remove
|
130
|
+
g_cache_value_foreach
|
131
|
+
g_checksum_type_get_length
|
132
|
+
g_checksum_new
|
133
|
+
g_checksum_copy
|
134
|
+
g_checksum_free
|
135
|
+
g_checksum_update
|
136
|
+
g_checksum_reset
|
137
|
+
g_checksum_get_string
|
138
|
+
g_checksum_get_digest
|
139
|
+
g_compute_checksum_for_data
|
140
|
+
g_compute_checksum_for_string
|
141
|
+
g_completion_add_items
|
142
|
+
g_completion_clear_items
|
143
|
+
g_completion_complete
|
144
|
+
g_completion_complete_utf8
|
145
|
+
g_completion_free
|
146
|
+
g_completion_new
|
147
|
+
g_completion_remove_items
|
148
|
+
g_completion_set_compare
|
149
|
+
g_get_filename_charsets
|
150
|
+
g_convert
|
151
|
+
g_convert_error_quark
|
152
|
+
g_convert_with_fallback
|
153
|
+
g_convert_with_iconv
|
154
|
+
g_iconv
|
155
|
+
g_iconv_close
|
156
|
+
g_iconv_open
|
157
|
+
g_locale_from_utf8
|
158
|
+
g_locale_to_utf8
|
159
|
+
g_filename_display_name
|
160
|
+
g_filename_display_basename
|
161
|
+
g_filename_from_uri PRIVATE
|
162
|
+
g_filename_from_utf8 PRIVATE
|
163
|
+
g_filename_to_uri PRIVATE
|
164
|
+
g_filename_to_utf8 PRIVATE
|
165
|
+
g_filename_from_uri_utf8
|
166
|
+
g_filename_from_utf8_utf8
|
167
|
+
g_filename_to_uri_utf8
|
168
|
+
g_filename_to_utf8_utf8
|
169
|
+
g_uri_list_extract_uris
|
170
|
+
g_datalist_clear
|
171
|
+
g_datalist_foreach
|
172
|
+
g_datalist_get_flags
|
173
|
+
g_datalist_id_get_data
|
174
|
+
g_datalist_id_remove_no_notify
|
175
|
+
g_datalist_id_set_data_full
|
176
|
+
g_datalist_set_flags
|
177
|
+
g_datalist_unset_flags
|
178
|
+
g_datalist_init
|
179
|
+
g_dataset_destroy
|
180
|
+
g_dataset_foreach
|
181
|
+
g_dataset_id_get_data
|
182
|
+
g_dataset_id_remove_no_notify
|
183
|
+
g_dataset_id_set_data_full
|
184
|
+
g_quark_from_static_string
|
185
|
+
g_quark_from_string
|
186
|
+
g_quark_to_string
|
187
|
+
g_quark_try_string
|
188
|
+
g_intern_string
|
189
|
+
g_intern_static_string
|
190
|
+
g_date_add_days
|
191
|
+
g_date_add_months
|
192
|
+
g_date_add_years
|
193
|
+
g_date_clamp
|
194
|
+
g_date_clear
|
195
|
+
g_date_compare
|
196
|
+
g_date_days_between
|
197
|
+
g_date_free
|
198
|
+
g_date_get_day
|
199
|
+
g_date_get_day_of_year
|
200
|
+
g_date_get_days_in_month
|
201
|
+
g_date_get_iso8601_week_of_year
|
202
|
+
g_date_get_julian
|
203
|
+
g_date_get_monday_week_of_year
|
204
|
+
g_date_get_monday_weeks_in_year
|
205
|
+
g_date_get_month
|
206
|
+
g_date_get_sunday_week_of_year
|
207
|
+
g_date_get_sunday_weeks_in_year
|
208
|
+
g_date_get_weekday
|
209
|
+
g_date_get_year
|
210
|
+
g_date_is_first_of_month
|
211
|
+
g_date_is_last_of_month
|
212
|
+
g_date_is_leap_year
|
213
|
+
g_date_new
|
214
|
+
g_date_new_dmy
|
215
|
+
g_date_new_julian
|
216
|
+
g_date_order
|
217
|
+
g_date_set_day
|
218
|
+
g_date_set_dmy
|
219
|
+
g_date_set_julian
|
220
|
+
g_date_set_month
|
221
|
+
g_date_set_parse
|
222
|
+
g_date_set_time
|
223
|
+
g_date_set_time_t
|
224
|
+
g_date_set_time_val
|
225
|
+
g_date_set_year
|
226
|
+
g_date_strftime
|
227
|
+
g_date_subtract_days
|
228
|
+
g_date_subtract_months
|
229
|
+
g_date_subtract_years
|
230
|
+
g_date_to_struct_tm
|
231
|
+
g_date_valid
|
232
|
+
g_date_valid_day
|
233
|
+
g_date_valid_dmy
|
234
|
+
g_date_valid_julian
|
235
|
+
g_date_valid_month
|
236
|
+
g_date_valid_weekday
|
237
|
+
g_date_valid_year
|
238
|
+
g_dir_close
|
239
|
+
g_dir_open PRIVATE
|
240
|
+
g_dir_read_name PRIVATE
|
241
|
+
g_dir_open_utf8
|
242
|
+
g_dir_read_name_utf8
|
243
|
+
g_dir_rewind
|
244
|
+
g_clear_error
|
245
|
+
g_error_copy
|
246
|
+
g_error_free
|
247
|
+
g_error_matches
|
248
|
+
g_error_new
|
249
|
+
g_error_new_literal
|
250
|
+
g_error_new_valist
|
251
|
+
g_propagate_error
|
252
|
+
g_set_error
|
253
|
+
g_set_error_literal
|
254
|
+
g_prefix_error
|
255
|
+
g_propagate_prefixed_error
|
256
|
+
g_build_filename
|
257
|
+
g_build_filenamev
|
258
|
+
g_build_path
|
259
|
+
g_build_pathv
|
260
|
+
g_file_error_from_errno
|
261
|
+
g_file_error_quark
|
262
|
+
g_file_get_contents PRIVATE
|
263
|
+
g_file_set_contents
|
264
|
+
g_file_open_tmp PRIVATE
|
265
|
+
g_file_test PRIVATE
|
266
|
+
g_file_read_link
|
267
|
+
g_format_size_for_display
|
268
|
+
g_mkstemp PRIVATE
|
269
|
+
g_mkstemp_full
|
270
|
+
g_mkdir_with_parents
|
271
|
+
g_file_get_contents_utf8
|
272
|
+
g_file_open_tmp_utf8
|
273
|
+
g_file_test_utf8
|
274
|
+
g_mkstemp_utf8
|
275
|
+
g_hash_table_destroy
|
276
|
+
g_hash_table_unref
|
277
|
+
g_hash_table_ref
|
278
|
+
g_hash_table_find
|
279
|
+
g_hash_table_foreach
|
280
|
+
g_hash_table_foreach_remove
|
281
|
+
g_hash_table_foreach_steal
|
282
|
+
g_hash_table_get_keys
|
283
|
+
g_hash_table_get_values
|
284
|
+
g_hash_table_insert
|
285
|
+
g_hash_table_lookup
|
286
|
+
g_hash_table_lookup_extended
|
287
|
+
g_hash_table_new
|
288
|
+
g_hash_table_new_full
|
289
|
+
g_hash_table_remove
|
290
|
+
g_hash_table_remove_all
|
291
|
+
g_hash_table_replace
|
292
|
+
g_hash_table_size
|
293
|
+
g_hash_table_steal
|
294
|
+
g_hash_table_steal_all
|
295
|
+
g_hash_table_iter_init
|
296
|
+
g_hash_table_iter_next
|
297
|
+
g_hash_table_iter_get_hash_table
|
298
|
+
g_hash_table_iter_remove
|
299
|
+
g_hash_table_iter_steal
|
300
|
+
g_hook_alloc
|
301
|
+
g_hook_compare_ids
|
302
|
+
g_hook_destroy
|
303
|
+
g_hook_destroy_link
|
304
|
+
g_hook_find
|
305
|
+
g_hook_find_data
|
306
|
+
g_hook_find_func
|
307
|
+
g_hook_find_func_data
|
308
|
+
g_hook_first_valid
|
309
|
+
g_hook_free
|
310
|
+
g_hook_get
|
311
|
+
g_hook_insert_before
|
312
|
+
g_hook_insert_sorted
|
313
|
+
g_hook_list_clear
|
314
|
+
g_hook_list_init
|
315
|
+
g_hook_list_invoke
|
316
|
+
g_hook_list_invoke_check
|
317
|
+
g_hook_list_marshal
|
318
|
+
g_hook_list_marshal_check
|
319
|
+
g_hook_next_valid
|
320
|
+
g_hook_prepend
|
321
|
+
g_hook_ref
|
322
|
+
g_hook_unref
|
323
|
+
g_io_add_watch
|
324
|
+
g_io_add_watch_full
|
325
|
+
g_io_create_watch
|
326
|
+
g_io_channel_error_from_errno
|
327
|
+
g_io_channel_error_quark
|
328
|
+
g_io_channel_flush
|
329
|
+
g_io_channel_get_buffer_condition
|
330
|
+
g_io_channel_get_buffered
|
331
|
+
g_io_channel_get_buffer_size
|
332
|
+
g_io_channel_get_close_on_unref
|
333
|
+
g_io_channel_get_encoding
|
334
|
+
g_io_channel_get_flags
|
335
|
+
g_io_channel_get_line_term
|
336
|
+
g_io_channel_init
|
337
|
+
g_io_channel_read_chars
|
338
|
+
g_io_channel_read_line
|
339
|
+
g_io_channel_read_line_string
|
340
|
+
g_io_channel_read_to_end
|
341
|
+
g_io_channel_read_unichar
|
342
|
+
g_io_channel_ref
|
343
|
+
g_io_channel_seek_position
|
344
|
+
g_io_channel_set_buffered
|
345
|
+
g_io_channel_set_buffer_size
|
346
|
+
g_io_channel_set_close_on_unref
|
347
|
+
g_io_channel_set_encoding
|
348
|
+
g_io_channel_set_flags
|
349
|
+
g_io_channel_set_line_term
|
350
|
+
g_io_channel_shutdown
|
351
|
+
g_io_channel_unref
|
352
|
+
g_io_channel_close
|
353
|
+
g_io_channel_read
|
354
|
+
g_io_channel_seek
|
355
|
+
g_io_channel_write
|
356
|
+
g_io_channel_write_chars
|
357
|
+
g_io_channel_write_unichar
|
358
|
+
g_io_channel_unix_get_fd
|
359
|
+
g_io_channel_unix_new
|
360
|
+
g_io_channel_new_file PRIVATE
|
361
|
+
g_io_channel_new_file_utf8
|
362
|
+
g_io_channel_win32_get_fd
|
363
|
+
g_io_channel_win32_make_pollfd
|
364
|
+
g_io_channel_win32_new_fd
|
365
|
+
g_io_channel_win32_new_messages
|
366
|
+
g_io_channel_win32_new_socket
|
367
|
+
g_io_channel_win32_new_stream_socket PRIVATE
|
368
|
+
g_io_channel_win32_poll
|
369
|
+
g_io_channel_win32_set_debug
|
370
|
+
g_key_file_error_quark
|
371
|
+
g_key_file_free
|
372
|
+
g_key_file_get_boolean
|
373
|
+
g_key_file_get_boolean_list
|
374
|
+
g_key_file_get_comment
|
375
|
+
g_key_file_get_groups
|
376
|
+
g_key_file_get_double
|
377
|
+
g_key_file_get_double_list
|
378
|
+
g_key_file_get_integer
|
379
|
+
g_key_file_get_integer_list
|
380
|
+
g_key_file_get_keys
|
381
|
+
g_key_file_get_locale_string
|
382
|
+
g_key_file_get_locale_string_list
|
383
|
+
g_key_file_get_start_group
|
384
|
+
g_key_file_get_string
|
385
|
+
g_key_file_get_string_list
|
386
|
+
g_key_file_get_value
|
387
|
+
g_key_file_has_group
|
388
|
+
g_key_file_has_key
|
389
|
+
g_key_file_load_from_dirs
|
390
|
+
g_key_file_load_from_data
|
391
|
+
g_key_file_load_from_data_dirs
|
392
|
+
g_key_file_load_from_file
|
393
|
+
g_key_file_new
|
394
|
+
g_key_file_remove_comment
|
395
|
+
g_key_file_remove_group
|
396
|
+
g_key_file_remove_key
|
397
|
+
g_key_file_set_boolean
|
398
|
+
g_key_file_set_boolean_list
|
399
|
+
g_key_file_set_comment
|
400
|
+
g_key_file_set_double
|
401
|
+
g_key_file_set_double_list
|
402
|
+
g_key_file_set_integer
|
403
|
+
g_key_file_set_integer_list
|
404
|
+
g_key_file_set_list_separator
|
405
|
+
g_key_file_set_locale_string
|
406
|
+
g_key_file_set_locale_string_list
|
407
|
+
g_key_file_set_string
|
408
|
+
g_key_file_set_string_list
|
409
|
+
g_key_file_set_value
|
410
|
+
g_key_file_to_data
|
411
|
+
g_list_alloc
|
412
|
+
g_list_append
|
413
|
+
g_list_concat
|
414
|
+
g_list_copy
|
415
|
+
g_list_delete_link
|
416
|
+
g_list_find
|
417
|
+
g_list_find_custom
|
418
|
+
g_list_first
|
419
|
+
g_list_foreach
|
420
|
+
g_list_free
|
421
|
+
g_list_free_1
|
422
|
+
g_list_index
|
423
|
+
g_list_insert
|
424
|
+
g_list_insert_before
|
425
|
+
g_list_insert_sorted
|
426
|
+
g_list_insert_sorted_with_data
|
427
|
+
g_list_last
|
428
|
+
g_list_length
|
429
|
+
g_list_nth
|
430
|
+
g_list_nth_data
|
431
|
+
g_list_nth_prev
|
432
|
+
g_list_pop_allocator
|
433
|
+
g_list_position
|
434
|
+
g_list_prepend
|
435
|
+
g_list_push_allocator
|
436
|
+
g_list_remove
|
437
|
+
g_list_remove_all
|
438
|
+
g_list_remove_link
|
439
|
+
g_list_reverse
|
440
|
+
g_list_sort
|
441
|
+
g_list_sort_with_data
|
442
|
+
g_child_watch_add
|
443
|
+
g_child_watch_add_full
|
444
|
+
g_child_watch_source_new
|
445
|
+
g_get_current_time
|
446
|
+
g_main_context_acquire
|
447
|
+
g_main_context_add_poll
|
448
|
+
g_main_context_check
|
449
|
+
g_main_context_default
|
450
|
+
g_main_context_dispatch
|
451
|
+
g_main_context_find_source_by_funcs_user_data
|
452
|
+
g_main_context_find_source_by_id
|
453
|
+
g_main_context_find_source_by_user_data
|
454
|
+
g_main_context_get_poll_func
|
455
|
+
g_main_context_get_thread_default
|
456
|
+
g_main_context_is_owner
|
457
|
+
g_main_context_iteration
|
458
|
+
g_main_context_new
|
459
|
+
g_main_context_pending
|
460
|
+
g_main_context_pop_thread_default
|
461
|
+
g_main_context_prepare
|
462
|
+
g_main_context_push_thread_default
|
463
|
+
g_main_context_query
|
464
|
+
g_main_context_ref
|
465
|
+
g_main_context_release
|
466
|
+
g_main_context_remove_poll
|
467
|
+
g_main_context_set_poll_func
|
468
|
+
g_main_context_unref
|
469
|
+
g_main_context_wait
|
470
|
+
g_main_context_wakeup
|
471
|
+
g_main_depth
|
472
|
+
g_main_current_source
|
473
|
+
g_main_loop_get_context
|
474
|
+
g_main_loop_is_running
|
475
|
+
g_main_loop_new
|
476
|
+
g_main_loop_quit
|
477
|
+
g_main_loop_ref
|
478
|
+
g_main_loop_run
|
479
|
+
g_main_loop_unref
|
480
|
+
g_source_add_poll
|
481
|
+
g_source_attach
|
482
|
+
g_source_destroy
|
483
|
+
g_source_get_can_recurse
|
484
|
+
g_source_get_context
|
485
|
+
g_source_get_current_time
|
486
|
+
g_source_get_id
|
487
|
+
g_source_get_priority
|
488
|
+
g_source_new
|
489
|
+
g_source_ref
|
490
|
+
g_source_remove
|
491
|
+
g_source_remove_by_funcs_user_data
|
492
|
+
g_source_remove_by_user_data
|
493
|
+
g_source_remove_poll
|
494
|
+
g_source_set_callback
|
495
|
+
g_source_set_callback_indirect
|
496
|
+
g_source_set_can_recurse
|
497
|
+
g_source_set_funcs
|
498
|
+
g_source_is_destroyed
|
499
|
+
g_source_set_priority
|
500
|
+
g_source_unref
|
501
|
+
g_idle_add
|
502
|
+
g_idle_add_full
|
503
|
+
g_idle_remove_by_data
|
504
|
+
g_idle_source_new
|
505
|
+
g_timeout_add
|
506
|
+
g_timeout_add_seconds
|
507
|
+
g_timeout_add_full
|
508
|
+
g_timeout_add_seconds_full
|
509
|
+
g_timeout_source_new
|
510
|
+
g_timeout_source_new_seconds
|
511
|
+
g_mapped_file_new
|
512
|
+
g_mapped_file_get_length
|
513
|
+
g_mapped_file_get_contents
|
514
|
+
g_mapped_file_ref
|
515
|
+
g_mapped_file_unref
|
516
|
+
g_mapped_file_free
|
517
|
+
g_markup_error_quark
|
518
|
+
g_markup_escape_text
|
519
|
+
g_markup_parse_context_end_parse
|
520
|
+
g_markup_parse_context_free
|
521
|
+
g_markup_parse_context_get_element
|
522
|
+
g_markup_parse_context_get_element_stack
|
523
|
+
g_markup_parse_context_get_position
|
524
|
+
g_markup_parse_context_get_user_data
|
525
|
+
g_markup_parse_context_new
|
526
|
+
g_markup_parse_context_parse
|
527
|
+
g_markup_parse_context_push
|
528
|
+
g_markup_parse_context_pop
|
529
|
+
g_markup_printf_escaped
|
530
|
+
g_markup_vprintf_escaped
|
531
|
+
g_markup_collect_attributes
|
532
|
+
g_free
|
533
|
+
g_malloc
|
534
|
+
g_malloc0
|
535
|
+
g_malloc_n
|
536
|
+
g_malloc0_n
|
537
|
+
g_mem_is_system_malloc
|
538
|
+
g_mem_profile
|
539
|
+
g_mem_set_vtable
|
540
|
+
g_realloc
|
541
|
+
g_realloc_n
|
542
|
+
g_try_malloc
|
543
|
+
g_try_malloc0
|
544
|
+
g_try_malloc_n
|
545
|
+
g_try_malloc0_n
|
546
|
+
g_try_realloc
|
547
|
+
g_try_realloc_n
|
548
|
+
g_allocator_free
|
549
|
+
g_allocator_new
|
550
|
+
g_mem_chunk_alloc
|
551
|
+
g_mem_chunk_alloc0
|
552
|
+
g_mem_chunk_clean
|
553
|
+
g_mem_chunk_destroy
|
554
|
+
g_mem_chunk_free
|
555
|
+
g_mem_chunk_info
|
556
|
+
g_mem_chunk_new
|
557
|
+
g_mem_chunk_print
|
558
|
+
g_mem_chunk_reset
|
559
|
+
g_blow_chunks
|
560
|
+
g_slice_alloc
|
561
|
+
g_slice_alloc0
|
562
|
+
g_slice_copy
|
563
|
+
g_slice_free1
|
564
|
+
g_slice_free_chain_with_offset
|
565
|
+
g_slice_set_config
|
566
|
+
g_slice_get_config
|
567
|
+
g_slice_get_config_state
|
568
|
+
g_printf_string_upper_bound
|
569
|
+
g_log
|
570
|
+
g_log_default_handler
|
571
|
+
g_log_remove_handler
|
572
|
+
g_log_set_always_fatal
|
573
|
+
g_log_set_default_handler
|
574
|
+
g_log_set_fatal_mask
|
575
|
+
g_log_set_handler
|
576
|
+
g_logv
|
577
|
+
g_return_if_fail_warning
|
578
|
+
g_warn_message
|
579
|
+
g_assert_warning
|
580
|
+
g_print
|
581
|
+
g_printerr
|
582
|
+
g_set_printerr_handler
|
583
|
+
g_set_print_handler
|
584
|
+
g_node_child_index
|
585
|
+
g_node_child_position
|
586
|
+
g_node_children_foreach
|
587
|
+
g_node_copy
|
588
|
+
g_node_copy_deep
|
589
|
+
g_node_depth
|
590
|
+
g_node_destroy
|
591
|
+
g_node_find
|
592
|
+
g_node_find_child
|
593
|
+
g_node_first_sibling
|
594
|
+
g_node_get_root
|
595
|
+
g_node_insert
|
596
|
+
g_node_insert_after
|
597
|
+
g_node_insert_before
|
598
|
+
g_node_is_ancestor
|
599
|
+
g_node_last_child
|
600
|
+
g_node_last_sibling
|
601
|
+
g_node_max_height
|
602
|
+
g_node_n_children
|
603
|
+
g_node_new
|
604
|
+
g_node_n_nodes
|
605
|
+
g_node_nth_child
|
606
|
+
g_node_pop_allocator
|
607
|
+
g_node_prepend
|
608
|
+
g_node_push_allocator
|
609
|
+
g_node_reverse_children
|
610
|
+
g_node_traverse
|
611
|
+
g_node_unlink
|
612
|
+
g_option_context_add_group
|
613
|
+
g_option_context_add_main_entries
|
614
|
+
g_option_error_quark
|
615
|
+
g_option_context_free
|
616
|
+
g_option_context_get_description
|
617
|
+
g_option_context_get_help_enabled
|
618
|
+
g_option_context_get_ignore_unknown_options
|
619
|
+
g_option_context_get_main_group
|
620
|
+
g_option_context_get_summary
|
621
|
+
g_option_context_new
|
622
|
+
g_option_context_parse
|
623
|
+
g_option_context_set_description
|
624
|
+
g_option_context_set_help_enabled
|
625
|
+
g_option_context_set_ignore_unknown_options
|
626
|
+
g_option_context_set_main_group
|
627
|
+
g_option_context_set_summary
|
628
|
+
g_option_context_set_translate_func
|
629
|
+
g_option_context_set_translation_domain
|
630
|
+
g_option_context_get_help
|
631
|
+
g_option_group_add_entries
|
632
|
+
g_option_group_free
|
633
|
+
g_option_group_new
|
634
|
+
g_option_group_set_error_hook
|
635
|
+
g_option_group_set_parse_hooks
|
636
|
+
g_option_group_set_translate_func
|
637
|
+
g_option_group_set_translation_domain
|
638
|
+
g_pattern_match
|
639
|
+
g_pattern_match_simple
|
640
|
+
g_pattern_match_string
|
641
|
+
g_pattern_spec_equal
|
642
|
+
g_pattern_spec_free
|
643
|
+
g_pattern_spec_new
|
644
|
+
g_poll
|
645
|
+
g_spaced_primes_closest
|
646
|
+
g_fprintf
|
647
|
+
g_printf
|
648
|
+
g_sprintf
|
649
|
+
g_vasprintf
|
650
|
+
g_vfprintf
|
651
|
+
g_vprintf
|
652
|
+
g_vsprintf
|
653
|
+
g_snprintf
|
654
|
+
g_vsnprintf
|
655
|
+
g_qsort_with_data
|
656
|
+
g_queue_clear
|
657
|
+
g_queue_copy
|
658
|
+
g_queue_delete_link
|
659
|
+
g_queue_find
|
660
|
+
g_queue_find_custom
|
661
|
+
g_queue_foreach
|
662
|
+
g_queue_free
|
663
|
+
g_queue_get_length
|
664
|
+
g_queue_index
|
665
|
+
g_queue_init
|
666
|
+
g_queue_insert_after
|
667
|
+
g_queue_insert_before
|
668
|
+
g_queue_insert_sorted
|
669
|
+
g_queue_is_empty
|
670
|
+
g_queue_link_index
|
671
|
+
g_queue_new
|
672
|
+
g_queue_peek_head
|
673
|
+
g_queue_peek_head_link
|
674
|
+
g_queue_peek_nth
|
675
|
+
g_queue_peek_nth_link
|
676
|
+
g_queue_peek_tail
|
677
|
+
g_queue_peek_tail_link
|
678
|
+
g_queue_pop_head
|
679
|
+
g_queue_pop_head_link
|
680
|
+
g_queue_pop_nth
|
681
|
+
g_queue_pop_nth_link
|
682
|
+
g_queue_pop_tail
|
683
|
+
g_queue_pop_tail_link
|
684
|
+
g_queue_push_head
|
685
|
+
g_queue_push_head_link
|
686
|
+
g_queue_push_nth
|
687
|
+
g_queue_push_nth_link
|
688
|
+
g_queue_push_tail
|
689
|
+
g_queue_push_tail_link
|
690
|
+
g_queue_remove
|
691
|
+
g_queue_remove_all
|
692
|
+
g_queue_reverse
|
693
|
+
g_queue_sort
|
694
|
+
g_queue_unlink
|
695
|
+
g_rand_copy
|
696
|
+
g_rand_double
|
697
|
+
g_rand_double_range
|
698
|
+
g_rand_free
|
699
|
+
g_rand_int
|
700
|
+
g_rand_int_range
|
701
|
+
g_rand_new
|
702
|
+
g_rand_new_with_seed
|
703
|
+
g_rand_new_with_seed_array
|
704
|
+
g_random_double
|
705
|
+
g_random_double_range
|
706
|
+
g_random_int
|
707
|
+
g_random_int_range
|
708
|
+
g_random_set_seed
|
709
|
+
g_rand_set_seed
|
710
|
+
g_rand_set_seed_array
|
711
|
+
g_relation_count
|
712
|
+
g_relation_delete
|
713
|
+
g_relation_destroy
|
714
|
+
g_relation_exists
|
715
|
+
g_relation_index
|
716
|
+
g_relation_insert
|
717
|
+
g_relation_new
|
718
|
+
g_relation_print
|
719
|
+
g_relation_select
|
720
|
+
g_tuples_destroy
|
721
|
+
g_tuples_index
|
722
|
+
g_scanner_cur_line
|
723
|
+
g_scanner_cur_position
|
724
|
+
g_scanner_cur_token
|
725
|
+
g_scanner_cur_value
|
726
|
+
g_scanner_destroy
|
727
|
+
g_scanner_eof
|
728
|
+
g_scanner_error
|
729
|
+
g_scanner_get_next_token
|
730
|
+
g_scanner_input_file
|
731
|
+
g_scanner_input_text
|
732
|
+
g_scanner_lookup_symbol
|
733
|
+
g_scanner_new
|
734
|
+
g_scanner_peek_next_token
|
735
|
+
g_scanner_scope_add_symbol
|
736
|
+
g_scanner_scope_foreach_symbol
|
737
|
+
g_scanner_scope_lookup_symbol
|
738
|
+
g_scanner_scope_remove_symbol
|
739
|
+
g_scanner_set_scope
|
740
|
+
g_scanner_sync_file_offset
|
741
|
+
g_scanner_unexp_token
|
742
|
+
g_scanner_warn
|
743
|
+
g_sequence_new
|
744
|
+
g_sequence_free
|
745
|
+
g_sequence_get_length
|
746
|
+
g_sequence_foreach
|
747
|
+
g_sequence_foreach_range
|
748
|
+
g_sequence_sort
|
749
|
+
g_sequence_sort_iter
|
750
|
+
g_sequence_get_begin_iter
|
751
|
+
g_sequence_get_end_iter
|
752
|
+
g_sequence_get_iter_at_pos
|
753
|
+
g_sequence_append
|
754
|
+
g_sequence_prepend
|
755
|
+
g_sequence_insert_before
|
756
|
+
g_sequence_move
|
757
|
+
g_sequence_swap
|
758
|
+
g_sequence_insert_sorted
|
759
|
+
g_sequence_insert_sorted_iter
|
760
|
+
g_sequence_sort_changed
|
761
|
+
g_sequence_sort_changed_iter
|
762
|
+
g_sequence_remove
|
763
|
+
g_sequence_remove_range
|
764
|
+
g_sequence_move_range
|
765
|
+
g_sequence_search
|
766
|
+
g_sequence_search_iter
|
767
|
+
g_sequence_get
|
768
|
+
g_sequence_set
|
769
|
+
g_sequence_iter_is_begin
|
770
|
+
g_sequence_iter_is_end
|
771
|
+
g_sequence_iter_next
|
772
|
+
g_sequence_iter_prev
|
773
|
+
g_sequence_iter_get_position
|
774
|
+
g_sequence_iter_move
|
775
|
+
g_sequence_iter_get_sequence
|
776
|
+
g_sequence_iter_compare
|
777
|
+
g_sequence_range_get_midpoint
|
778
|
+
g_shell_error_quark
|
779
|
+
g_shell_parse_argv
|
780
|
+
g_shell_quote
|
781
|
+
g_shell_unquote
|
782
|
+
g_slist_alloc
|
783
|
+
g_slist_append
|
784
|
+
g_slist_concat
|
785
|
+
g_slist_copy
|
786
|
+
g_slist_delete_link
|
787
|
+
g_slist_find
|
788
|
+
g_slist_find_custom
|
789
|
+
g_slist_foreach
|
790
|
+
g_slist_free
|
791
|
+
g_slist_free_1
|
792
|
+
g_slist_index
|
793
|
+
g_slist_insert
|
794
|
+
g_slist_insert_before
|
795
|
+
g_slist_insert_sorted
|
796
|
+
g_slist_insert_sorted_with_data
|
797
|
+
g_slist_last
|
798
|
+
g_slist_length
|
799
|
+
g_slist_nth
|
800
|
+
g_slist_nth_data
|
801
|
+
g_slist_pop_allocator
|
802
|
+
g_slist_position
|
803
|
+
g_slist_prepend
|
804
|
+
g_slist_push_allocator
|
805
|
+
g_slist_remove
|
806
|
+
g_slist_remove_all
|
807
|
+
g_slist_remove_link
|
808
|
+
g_slist_reverse
|
809
|
+
g_slist_sort
|
810
|
+
g_slist_sort_with_data
|
811
|
+
g_spawn_async PRIVATE
|
812
|
+
g_spawn_async_with_pipes PRIVATE
|
813
|
+
g_spawn_close_pid
|
814
|
+
g_spawn_command_line_async PRIVATE
|
815
|
+
g_spawn_command_line_sync PRIVATE
|
816
|
+
g_spawn_error_quark
|
817
|
+
g_spawn_sync PRIVATE
|
818
|
+
g_spawn_async_utf8
|
819
|
+
g_spawn_async_with_pipes_utf8
|
820
|
+
g_spawn_command_line_async_utf8
|
821
|
+
g_spawn_command_line_sync_utf8
|
822
|
+
g_spawn_sync_utf8
|
823
|
+
g_chmod
|
824
|
+
g_open
|
825
|
+
g_creat
|
826
|
+
g_rename
|
827
|
+
g_mkdir
|
828
|
+
g_stat
|
829
|
+
g_lstat
|
830
|
+
g_remove
|
831
|
+
g_fopen
|
832
|
+
g_freopen
|
833
|
+
g_utime
|
834
|
+
g_access
|
835
|
+
g_chdir
|
836
|
+
g_unlink
|
837
|
+
g_rmdir
|
838
|
+
g_ascii_digit_value
|
839
|
+
g_ascii_dtostr
|
840
|
+
g_ascii_formatd
|
841
|
+
g_ascii_strdown
|
842
|
+
g_ascii_strtod
|
843
|
+
g_ascii_strtoull
|
844
|
+
g_ascii_strtoll
|
845
|
+
g_ascii_strup
|
846
|
+
g_ascii_tolower
|
847
|
+
g_ascii_toupper
|
848
|
+
g_ascii_xdigit_value
|
849
|
+
g_ascii_strcasecmp
|
850
|
+
g_ascii_strncasecmp
|
851
|
+
g_memdup
|
852
|
+
g_stpcpy
|
853
|
+
g_strcanon
|
854
|
+
g_strchomp
|
855
|
+
g_strchug
|
856
|
+
g_strcompress
|
857
|
+
g_strconcat
|
858
|
+
g_strdelimit
|
859
|
+
g_strdup
|
860
|
+
g_strdup_printf
|
861
|
+
g_strdupv
|
862
|
+
g_strdup_vprintf
|
863
|
+
g_strerror
|
864
|
+
g_strescape
|
865
|
+
g_strfreev
|
866
|
+
g_str_has_prefix
|
867
|
+
g_str_has_suffix
|
868
|
+
g_strjoin
|
869
|
+
g_strjoinv
|
870
|
+
g_strlcat
|
871
|
+
g_strlcpy
|
872
|
+
g_strndup
|
873
|
+
g_strnfill
|
874
|
+
g_strreverse
|
875
|
+
g_strrstr
|
876
|
+
g_strrstr_len
|
877
|
+
g_strsignal
|
878
|
+
g_strsplit
|
879
|
+
g_strsplit_set
|
880
|
+
g_strstr_len
|
881
|
+
g_strtod
|
882
|
+
g_strcasecmp
|
883
|
+
g_strncasecmp
|
884
|
+
g_strup
|
885
|
+
g_strdown
|
886
|
+
g_strv_length
|
887
|
+
g_strip_context
|
888
|
+
g_dgettext
|
889
|
+
g_dngettext
|
890
|
+
g_dpgettext
|
891
|
+
g_dpgettext2
|
892
|
+
g_uri_unescape_string
|
893
|
+
g_uri_unescape_segment
|
894
|
+
g_uri_parse_scheme
|
895
|
+
g_uri_escape_string
|
896
|
+
g_string_append
|
897
|
+
g_string_append_len
|
898
|
+
g_string_append_printf
|
899
|
+
g_string_append_unichar
|
900
|
+
g_string_append_vprintf
|
901
|
+
g_string_ascii_down
|
902
|
+
g_string_ascii_up
|
903
|
+
g_string_assign
|
904
|
+
g_string_chunk_free
|
905
|
+
g_string_chunk_clear
|
906
|
+
g_string_chunk_insert
|
907
|
+
g_string_chunk_insert_const
|
908
|
+
g_string_chunk_insert_len
|
909
|
+
g_string_chunk_new
|
910
|
+
g_string_equal
|
911
|
+
g_string_erase
|
912
|
+
g_string_free
|
913
|
+
g_string_hash
|
914
|
+
g_string_insert
|
915
|
+
g_string_insert_c
|
916
|
+
g_string_insert_len
|
917
|
+
g_string_insert_unichar
|
918
|
+
g_string_new
|
919
|
+
g_string_new_len
|
920
|
+
g_string_overwrite
|
921
|
+
g_string_overwrite_len
|
922
|
+
g_string_prepend
|
923
|
+
g_string_prepend_c
|
924
|
+
g_string_prepend_len
|
925
|
+
g_string_prepend_unichar
|
926
|
+
g_string_printf
|
927
|
+
g_string_set_size
|
928
|
+
g_string_sized_new
|
929
|
+
g_string_truncate
|
930
|
+
g_string_append_uri_escaped
|
931
|
+
g_string_down
|
932
|
+
g_string_up
|
933
|
+
g_string_vprintf
|
934
|
+
g_string_append_c
|
935
|
+
g_bit_lock
|
936
|
+
g_bit_trylock
|
937
|
+
g_bit_unlock
|
938
|
+
g_once_impl
|
939
|
+
g_once_init_enter_impl
|
940
|
+
g_once_init_leave
|
941
|
+
g_thread_init_glib
|
942
|
+
g_once_init_enter
|
943
|
+
g_thread_functions_for_glib_use
|
944
|
+
g_threads_got_initialized
|
945
|
+
g_thread_use_default_impl
|
946
|
+
g_thread_gettime
|
947
|
+
g_thread_create_full
|
948
|
+
g_thread_error_quark
|
949
|
+
g_thread_exit
|
950
|
+
g_thread_join
|
951
|
+
g_thread_self
|
952
|
+
g_thread_set_priority
|
953
|
+
g_static_mutex_free
|
954
|
+
g_static_mutex_get_mutex_impl
|
955
|
+
g_static_mutex_init
|
956
|
+
g_static_private_free
|
957
|
+
g_static_private_get
|
958
|
+
g_static_private_init
|
959
|
+
g_static_private_set
|
960
|
+
g_static_rec_mutex_free
|
961
|
+
g_static_rec_mutex_init
|
962
|
+
g_static_rec_mutex_lock
|
963
|
+
g_static_rec_mutex_lock_full
|
964
|
+
g_static_rec_mutex_trylock
|
965
|
+
g_static_rec_mutex_unlock
|
966
|
+
g_static_rec_mutex_unlock_full
|
967
|
+
g_static_rw_lock_free
|
968
|
+
g_static_rw_lock_init
|
969
|
+
g_static_rw_lock_reader_lock
|
970
|
+
g_static_rw_lock_reader_trylock
|
971
|
+
g_static_rw_lock_reader_unlock
|
972
|
+
g_static_rw_lock_writer_lock
|
973
|
+
g_static_rw_lock_writer_trylock
|
974
|
+
g_static_rw_lock_writer_unlock
|
975
|
+
g_thread_foreach
|
976
|
+
g_thread_get_initialized
|
977
|
+
g_thread_pool_free
|
978
|
+
g_thread_pool_get_max_threads
|
979
|
+
g_thread_pool_get_max_unused_threads
|
980
|
+
g_thread_pool_get_max_idle_time
|
981
|
+
g_thread_pool_get_num_threads
|
982
|
+
g_thread_pool_get_num_unused_threads
|
983
|
+
g_thread_pool_new
|
984
|
+
g_thread_pool_push
|
985
|
+
g_thread_pool_set_max_threads
|
986
|
+
g_thread_pool_set_max_unused_threads
|
987
|
+
g_thread_pool_set_max_idle_time
|
988
|
+
g_thread_pool_stop_unused_threads
|
989
|
+
g_thread_pool_unprocessed
|
990
|
+
g_thread_pool_set_sort_function
|
991
|
+
g_test_log_set_fatal_handler
|
992
|
+
g_assertion_message
|
993
|
+
g_assertion_message_cmpnum
|
994
|
+
g_assertion_message_cmpstr
|
995
|
+
g_assertion_message_expr
|
996
|
+
g_assertion_message_error
|
997
|
+
g_strcmp0
|
998
|
+
g_test_add_data_func
|
999
|
+
g_test_add_func
|
1000
|
+
g_test_add_vtable
|
1001
|
+
g_test_bug
|
1002
|
+
g_test_bug_base
|
1003
|
+
g_test_config_vars
|
1004
|
+
g_test_create_case
|
1005
|
+
g_test_create_suite
|
1006
|
+
g_test_get_root
|
1007
|
+
g_test_init
|
1008
|
+
g_test_log_buffer_free
|
1009
|
+
g_test_log_buffer_new
|
1010
|
+
g_test_log_buffer_pop
|
1011
|
+
g_test_log_buffer_push
|
1012
|
+
g_test_log_msg_free
|
1013
|
+
g_test_log_type_name
|
1014
|
+
g_test_maximized_result
|
1015
|
+
g_test_message
|
1016
|
+
g_test_minimized_result
|
1017
|
+
g_test_queue_destroy
|
1018
|
+
g_test_queue_free
|
1019
|
+
g_test_rand_double
|
1020
|
+
g_test_rand_double_range
|
1021
|
+
g_test_rand_int
|
1022
|
+
g_test_rand_int_range
|
1023
|
+
g_test_run
|
1024
|
+
g_test_run_suite
|
1025
|
+
g_test_suite_add
|
1026
|
+
g_test_suite_add_suite
|
1027
|
+
g_test_timer_elapsed
|
1028
|
+
g_test_timer_last
|
1029
|
+
g_test_timer_start
|
1030
|
+
g_test_trap_assertions
|
1031
|
+
g_test_trap_fork
|
1032
|
+
g_test_trap_has_passed
|
1033
|
+
g_test_trap_reached_timeout
|
1034
|
+
g_timer_continue
|
1035
|
+
g_timer_destroy
|
1036
|
+
g_timer_elapsed
|
1037
|
+
g_timer_new
|
1038
|
+
g_timer_reset
|
1039
|
+
g_timer_start
|
1040
|
+
g_timer_stop
|
1041
|
+
g_time_val_add
|
1042
|
+
g_time_val_from_iso8601
|
1043
|
+
g_time_val_to_iso8601
|
1044
|
+
g_usleep
|
1045
|
+
g_tree_destroy
|
1046
|
+
g_tree_foreach
|
1047
|
+
g_tree_height
|
1048
|
+
g_tree_insert
|
1049
|
+
g_tree_lookup
|
1050
|
+
g_tree_lookup_extended
|
1051
|
+
g_tree_new
|
1052
|
+
g_tree_ref
|
1053
|
+
g_tree_unref
|
1054
|
+
g_tree_new_full
|
1055
|
+
g_tree_new_with_data
|
1056
|
+
g_tree_nnodes
|
1057
|
+
g_tree_remove
|
1058
|
+
g_tree_replace
|
1059
|
+
g_tree_search
|
1060
|
+
g_tree_steal
|
1061
|
+
g_tree_traverse
|
1062
|
+
g_unichar_break_type
|
1063
|
+
g_utf8_collate
|
1064
|
+
g_utf8_collate_key
|
1065
|
+
g_utf8_collate_key_for_filename
|
1066
|
+
g_unicode_canonical_decomposition
|
1067
|
+
g_unicode_canonical_ordering
|
1068
|
+
g_unichar_combining_class
|
1069
|
+
g_utf8_normalize
|
1070
|
+
g_unichar_isalnum
|
1071
|
+
g_unichar_isalpha
|
1072
|
+
g_unichar_iscntrl
|
1073
|
+
g_unichar_isdefined
|
1074
|
+
g_unichar_isdigit
|
1075
|
+
g_unichar_isgraph
|
1076
|
+
g_unichar_islower
|
1077
|
+
g_unichar_isprint
|
1078
|
+
g_unichar_ispunct
|
1079
|
+
g_unichar_isspace
|
1080
|
+
g_unichar_istitle
|
1081
|
+
g_unichar_isupper
|
1082
|
+
g_unichar_iswide
|
1083
|
+
g_unichar_iswide_cjk
|
1084
|
+
g_unichar_isxdigit
|
1085
|
+
g_unichar_iszerowidth
|
1086
|
+
g_unichar_tolower
|
1087
|
+
g_unichar_totitle
|
1088
|
+
g_unichar_toupper
|
1089
|
+
g_unichar_ismark
|
1090
|
+
g_unichar_get_mirror_char
|
1091
|
+
g_unichar_get_script
|
1092
|
+
g_unichar_digit_value
|
1093
|
+
g_unichar_xdigit_value
|
1094
|
+
g_unichar_type
|
1095
|
+
g_utf8_casefold
|
1096
|
+
g_utf8_strup
|
1097
|
+
g_utf8_strdown
|
1098
|
+
g_get_charset
|
1099
|
+
g_ucs4_to_utf16
|
1100
|
+
g_ucs4_to_utf8
|
1101
|
+
g_utf16_to_ucs4
|
1102
|
+
g_utf16_to_utf8
|
1103
|
+
g_utf8_find_next_char
|
1104
|
+
g_utf8_find_prev_char
|
1105
|
+
g_utf8_get_char
|
1106
|
+
g_utf8_get_char_validated
|
1107
|
+
g_utf8_offset_to_pointer
|
1108
|
+
g_utf8_pointer_to_offset
|
1109
|
+
g_utf8_prev_char
|
1110
|
+
g_utf8_strchr
|
1111
|
+
g_utf8_strlen
|
1112
|
+
g_utf8_strncpy
|
1113
|
+
g_utf8_strrchr
|
1114
|
+
g_utf8_strreverse
|
1115
|
+
g_utf8_to_ucs4
|
1116
|
+
g_utf8_to_ucs4_fast
|
1117
|
+
g_utf8_to_utf16
|
1118
|
+
g_utf8_validate
|
1119
|
+
g_unichar_to_utf8
|
1120
|
+
g_unichar_validate
|
1121
|
+
glib_gettext
|
1122
|
+
g_int_equal
|
1123
|
+
g_int_hash
|
1124
|
+
g_int64_equal
|
1125
|
+
g_int64_hash
|
1126
|
+
g_double_equal
|
1127
|
+
g_double_hash
|
1128
|
+
g_direct_equal
|
1129
|
+
g_direct_hash
|
1130
|
+
g_str_equal
|
1131
|
+
g_str_hash
|
1132
|
+
g_atexit
|
1133
|
+
g_basename
|
1134
|
+
g_get_application_name
|
1135
|
+
g_find_program_in_path PRIVATE
|
1136
|
+
g_get_current_dir PRIVATE
|
1137
|
+
g_getenv PRIVATE
|
1138
|
+
g_unsetenv PRIVATE
|
1139
|
+
g_get_home_dir PRIVATE
|
1140
|
+
g_get_host_name
|
1141
|
+
g_setenv PRIVATE
|
1142
|
+
g_listenv
|
1143
|
+
g_find_program_in_path_utf8
|
1144
|
+
g_get_current_dir_utf8
|
1145
|
+
g_getenv_utf8
|
1146
|
+
g_unsetenv_utf8
|
1147
|
+
g_setenv_utf8
|
1148
|
+
g_get_home_dir_utf8
|
1149
|
+
g_get_language_names
|
1150
|
+
g_get_prgname
|
1151
|
+
g_get_real_name PRIVATE
|
1152
|
+
g_get_real_name_utf8
|
1153
|
+
g_get_system_config_dirs
|
1154
|
+
g_get_system_data_dirs
|
1155
|
+
g_win32_get_system_data_dirs_for_module
|
1156
|
+
g_get_tmp_dir PRIVATE
|
1157
|
+
g_get_tmp_dir_utf8
|
1158
|
+
g_get_user_cache_dir
|
1159
|
+
g_get_user_config_dir
|
1160
|
+
g_get_user_data_dir
|
1161
|
+
g_reload_user_special_dirs_cache
|
1162
|
+
g_get_user_special_dir
|
1163
|
+
g_get_user_name PRIVATE
|
1164
|
+
g_get_user_name_utf8
|
1165
|
+
glib_check_version
|
1166
|
+
g_nullify_pointer
|
1167
|
+
g_parse_debug_string
|
1168
|
+
g_path_get_basename
|
1169
|
+
g_path_get_dirname
|
1170
|
+
g_path_is_absolute
|
1171
|
+
g_path_skip_root
|
1172
|
+
g_set_application_name
|
1173
|
+
g_set_prgname
|
1174
|
+
g_bit_nth_lsf
|
1175
|
+
g_bit_nth_msf
|
1176
|
+
g_bit_storage
|
1177
|
+
g_trash_stack_height
|
1178
|
+
g_trash_stack_peek
|
1179
|
+
g_trash_stack_pop
|
1180
|
+
g_trash_stack_push
|
1181
|
+
g_get_codeset
|
1182
|
+
g_regex_error_quark
|
1183
|
+
g_regex_new
|
1184
|
+
g_regex_ref
|
1185
|
+
g_regex_unref
|
1186
|
+
g_regex_get_pattern
|
1187
|
+
g_regex_get_max_backref
|
1188
|
+
g_regex_get_capture_count
|
1189
|
+
g_regex_get_string_number
|
1190
|
+
g_regex_escape_string
|
1191
|
+
g_regex_match_simple
|
1192
|
+
g_regex_match
|
1193
|
+
g_regex_match_full
|
1194
|
+
g_regex_match_all
|
1195
|
+
g_regex_match_all_full
|
1196
|
+
g_regex_split_simple
|
1197
|
+
g_regex_split
|
1198
|
+
g_regex_split_full
|
1199
|
+
g_regex_replace
|
1200
|
+
g_regex_replace_literal
|
1201
|
+
g_regex_replace_eval
|
1202
|
+
g_regex_check_replacement
|
1203
|
+
g_match_info_get_regex
|
1204
|
+
g_match_info_get_string
|
1205
|
+
g_match_info_free
|
1206
|
+
g_match_info_next
|
1207
|
+
g_match_info_matches
|
1208
|
+
g_match_info_get_match_count
|
1209
|
+
g_match_info_is_partial_match
|
1210
|
+
g_match_info_expand_references
|
1211
|
+
g_match_info_fetch
|
1212
|
+
g_match_info_fetch_pos
|
1213
|
+
g_match_info_fetch_named
|
1214
|
+
g_match_info_fetch_named_pos
|
1215
|
+
g_match_info_fetch_all
|
1216
|
+
g_variant_type_string_is_valid
|
1217
|
+
g_variant_type_string_scan
|
1218
|
+
g_variant_type_free
|
1219
|
+
g_variant_type_copy
|
1220
|
+
g_variant_type_new
|
1221
|
+
g_variant_type_get_string_length
|
1222
|
+
g_variant_type_peek_string
|
1223
|
+
g_variant_type_dup_string
|
1224
|
+
g_variant_type_is_definite
|
1225
|
+
g_variant_type_is_container
|
1226
|
+
g_variant_type_is_basic
|
1227
|
+
g_variant_type_is_maybe
|
1228
|
+
g_variant_type_is_array
|
1229
|
+
g_variant_type_is_tuple
|
1230
|
+
g_variant_type_is_dict_entry
|
1231
|
+
g_variant_type_is_variant
|
1232
|
+
g_variant_type_hash
|
1233
|
+
g_variant_type_equal
|
1234
|
+
g_variant_type_is_subtype_of
|
1235
|
+
g_variant_type_element
|
1236
|
+
g_variant_type_first
|
1237
|
+
g_variant_type_next
|
1238
|
+
g_variant_type_n_items
|
1239
|
+
g_variant_type_key
|
1240
|
+
g_variant_type_value
|
1241
|
+
g_variant_type_new_array
|
1242
|
+
g_variant_type_new_maybe
|
1243
|
+
g_variant_type_new_tuple
|
1244
|
+
g_variant_type_new_dict_entry
|
1245
|
+
g_variant_type_checked_
|
1246
|
+
g_variant_unref
|
1247
|
+
g_variant_ref
|
1248
|
+
g_variant_ref_sink
|
1249
|
+
g_variant_n_children
|
1250
|
+
g_variant_get_child_value
|
1251
|
+
g_variant_get_size
|
1252
|
+
g_variant_get_data
|
1253
|
+
g_variant_store
|
1254
|
+
g_variant_is_normal_form
|
1255
|
+
g_variant_get_type
|
1256
|
+
g_variant_get_type_string
|
1257
|
+
g_variant_is_of_type
|
1258
|
+
g_variant_is_container
|
1259
|
+
g_variant_classify
|
1260
|
+
g_variant_new_boolean
|
1261
|
+
g_variant_new_byte
|
1262
|
+
g_variant_new_int16
|
1263
|
+
g_variant_new_uint16
|
1264
|
+
g_variant_new_int32
|
1265
|
+
g_variant_new_uint32
|
1266
|
+
g_variant_new_int64
|
1267
|
+
g_variant_new_uint64
|
1268
|
+
g_variant_new_handle
|
1269
|
+
g_variant_new_double
|
1270
|
+
g_variant_new_string
|
1271
|
+
g_variant_new_object_path
|
1272
|
+
g_variant_is_object_path
|
1273
|
+
g_variant_new_signature
|
1274
|
+
g_variant_is_signature
|
1275
|
+
g_variant_new_variant
|
1276
|
+
g_variant_new_strv
|
1277
|
+
g_variant_get_boolean
|
1278
|
+
g_variant_get_byte
|
1279
|
+
g_variant_get_int16
|
1280
|
+
g_variant_get_uint16
|
1281
|
+
g_variant_get_int32
|
1282
|
+
g_variant_get_uint32
|
1283
|
+
g_variant_get_int64
|
1284
|
+
g_variant_get_uint64
|
1285
|
+
g_variant_get_handle
|
1286
|
+
g_variant_get_double
|
1287
|
+
g_variant_get_string
|
1288
|
+
g_variant_dup_string
|
1289
|
+
g_variant_get_variant
|
1290
|
+
g_variant_get_strv
|
1291
|
+
g_variant_dup_strv
|
1292
|
+
g_variant_new_maybe
|
1293
|
+
g_variant_new_array
|
1294
|
+
g_variant_new_tuple
|
1295
|
+
g_variant_new_dict_entry
|
1296
|
+
g_variant_get_maybe
|
1297
|
+
g_variant_get_fixed_array
|
1298
|
+
g_variant_print
|
1299
|
+
g_variant_print_string
|
1300
|
+
g_variant_hash
|
1301
|
+
g_variant_equal
|
1302
|
+
g_variant_iter_copy
|
1303
|
+
g_variant_iter_free
|
1304
|
+
g_variant_iter_init
|
1305
|
+
g_variant_iter_n_children
|
1306
|
+
g_variant_iter_new
|
1307
|
+
g_variant_iter_next_value
|
1308
|
+
g_variant_builder_add_value
|
1309
|
+
g_variant_builder_init
|
1310
|
+
g_variant_builder_clear
|
1311
|
+
g_variant_builder_open
|
1312
|
+
g_variant_builder_close
|
1313
|
+
g_variant_builder_end
|
1314
|
+
g_variant_builder_new
|
1315
|
+
g_variant_builder_unref
|
1316
|
+
g_variant_builder_ref
|
1317
|
+
g_variant_new_va
|
1318
|
+
g_variant_get_va
|
1319
|
+
g_variant_new
|
1320
|
+
g_variant_get
|
1321
|
+
g_variant_builder_add
|
1322
|
+
g_variant_get_child
|
1323
|
+
g_variant_iter_next
|
1324
|
+
g_variant_iter_loop
|
1325
|
+
g_variant_new_from_data
|
1326
|
+
g_variant_get_normal_form
|
1327
|
+
g_variant_byteswap
|
1328
|
+
g_variant_new_parsed
|
1329
|
+
g_variant_new_parsed_va
|
1330
|
+
g_variant_parse
|
1331
|
+
g_variant_parser_get_error_quark
|
1332
|
+
g_variant_type_info_get_type_string
|
1333
|
+
g_variant_type_info_query
|
1334
|
+
g_variant_type_info_element
|
1335
|
+
g_variant_type_info_query_element
|
1336
|
+
g_variant_type_info_n_members
|
1337
|
+
g_variant_type_info_member_info
|
1338
|
+
g_variant_type_info_get
|
1339
|
+
g_variant_type_info_ref
|
1340
|
+
g_variant_type_info_unref
|
1341
|
+
g_variant_type_info_assert_no_infos
|
1342
|
+
g_variant_serialised_byteswap
|
1343
|
+
g_variant_serialised_get_child
|
1344
|
+
g_variant_serialised_is_normal
|
1345
|
+
g_variant_serialised_n_children
|
1346
|
+
g_variant_serialiser_is_object_path
|
1347
|
+
g_variant_serialiser_is_signature
|
1348
|
+
g_variant_serialiser_is_string
|
1349
|
+
g_variant_serialiser_needed_size
|
1350
|
+
g_variant_serialiser_serialise
|
1351
|
+
g_variant_format_string_scan_type
|
1352
|
+
g_variant_format_string_scan
|
1353
|
+
g_win32_error_message
|
1354
|
+
g_win32_ftruncate
|
1355
|
+
g_win32_get_package_installation_directory_of_module
|
1356
|
+
g_win32_get_package_installation_directory PRIVATE
|
1357
|
+
g_win32_get_package_installation_directory_utf8
|
1358
|
+
g_win32_get_package_installation_subdirectory PRIVATE
|
1359
|
+
g_win32_get_package_installation_subdirectory_utf8
|
1360
|
+
g_win32_get_windows_version
|
1361
|
+
g_win32_getlocale
|
1362
|
+
g_win32_locale_filename_from_utf8
|
1363
|
+
g_hostname_is_non_ascii
|
1364
|
+
g_hostname_is_ascii_encoded
|
1365
|
+
g_hostname_is_ip_address
|
1366
|
+
g_hostname_to_ascii
|
1367
|
+
g_hostname_to_unicode
|
1368
|
+
g_ascii_table
|
1369
|
+
g_utf8_skip
|
1370
|
+
g_idle_funcs
|
1371
|
+
g_timeout_funcs
|
1372
|
+
g_io_watch_funcs
|
1373
|
+
g_child_watch_funcs
|
1374
|
+
glib_binary_age
|
1375
|
+
glib_interface_age
|
1376
|
+
glib_major_version
|
1377
|
+
glib_mem_profiler_table
|
1378
|
+
glib_micro_version
|
1379
|
+
glib_minor_version
|
1380
|
+
glib_on_error_halt
|
1381
|
+
g_mem_gc_friendly
|