gio2 0.90.3-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +60 -0
- data/README +34 -0
- data/Rakefile +76 -0
- data/ext/gio2/depend +5 -0
- data/ext/gio2/extconf.rb +91 -0
- data/ext/gio2/gappinfo.c +318 -0
- data/ext/gio2/gapplaunchcontext.c +79 -0
- data/ext/gio2/gasyncinitable.c +244 -0
- data/ext/gio2/gasyncresult.c +39 -0
- data/ext/gio2/gbufferedinputstream.c +184 -0
- data/ext/gio2/gbufferedoutputstream.c +82 -0
- data/ext/gio2/gcancellable.c +177 -0
- data/ext/gio2/gcharsetconverter.c +72 -0
- data/ext/gio2/gcontenttype.c +135 -0
- data/ext/gio2/gconverter.c +117 -0
- data/ext/gio2/gconverterinputstream.c +48 -0
- data/ext/gio2/gconverteroutputstream.c +48 -0
- data/ext/gio2/gdatainputstream.c +341 -0
- data/ext/gio2/gdataoutputstream.c +202 -0
- data/ext/gio2/gdesktopappinfo.c +90 -0
- data/ext/gio2/gdrive.c +267 -0
- data/ext/gio2/gemblem.c +71 -0
- data/ext/gio2/gemblemedicon.c +63 -0
- data/ext/gio2/gfile.c +2058 -0
- data/ext/gio2/gfileattribute.c +263 -0
- data/ext/gio2/gfileattributematcher.c +90 -0
- data/ext/gio2/gfiledescriptorbased.c +42 -0
- data/ext/gio2/gfileenumerator.c +167 -0
- data/ext/gio2/gfileicon.c +46 -0
- data/ext/gio2/gfileinfo.c +641 -0
- data/ext/gio2/gfileinputstream.c +92 -0
- data/ext/gio2/gfileiostream.c +98 -0
- data/ext/gio2/gfilemonitor.c +63 -0
- data/ext/gio2/gfilenamecompleter.c +72 -0
- data/ext/gio2/gfileoutputstream.c +100 -0
- data/ext/gio2/gfilterinputstream.c +56 -0
- data/ext/gio2/gfilteroutputstream.c +56 -0
- data/ext/gio2/gicon.c +69 -0
- data/ext/gio2/ginetaddress.c +188 -0
- data/ext/gio2/ginetsocketaddress.c +54 -0
- data/ext/gio2/ginitable.c +195 -0
- data/ext/gio2/ginputstream.c +341 -0
- data/ext/gio2/gio2.c +120 -0
- data/ext/gio2/gio2.def +2 -0
- data/ext/gio2/gio2.h +343 -0
- data/ext/gio2/gioerror.c +67 -0
- data/ext/gio2/giomodule.c +63 -0
- data/ext/gio2/gioscheduler.c +195 -0
- data/ext/gio2/giostream.c +129 -0
- data/ext/gio2/gloadableicon.c +91 -0
- data/ext/gio2/gmemoryinputstream.c +65 -0
- data/ext/gio2/gmemoryoutputstream.c +65 -0
- data/ext/gio2/gmount.c +283 -0
- data/ext/gio2/gmountoperation.c +168 -0
- data/ext/gio2/gnetworkaddress.c +71 -0
- data/ext/gio2/gnetworkservice.c +64 -0
- data/ext/gio2/goutputstream.c +343 -0
- data/ext/gio2/gresolver.c +230 -0
- data/ext/gio2/gseekable.c +89 -0
- data/ext/gio2/gsimpleasyncresult.c +153 -0
- data/ext/gio2/gsocket.c +451 -0
- data/ext/gio2/gsocketaddress.c +45 -0
- data/ext/gio2/gsocketclient.c +273 -0
- data/ext/gio2/gsocketconnectable.c +97 -0
- data/ext/gio2/gsocketconnection.c +82 -0
- data/ext/gio2/gsocketcontrolmessage.c +82 -0
- data/ext/gio2/gsocketlistener.c +239 -0
- data/ext/gio2/gsocketservice.c +64 -0
- data/ext/gio2/gsrvtarget.c +77 -0
- data/ext/gio2/gtcpconnection.c +48 -0
- data/ext/gio2/gthemedicon.c +86 -0
- data/ext/gio2/gthreadedsocketservice.c +39 -0
- data/ext/gio2/gunixconnection.c +69 -0
- data/ext/gio2/gunixfdlist.c +112 -0
- data/ext/gio2/gunixfdmessage.c +81 -0
- data/ext/gio2/gunixinputstream.c +73 -0
- data/ext/gio2/gunixmounts.c +346 -0
- data/ext/gio2/gunixoutputstream.c +73 -0
- data/ext/gio2/gunixsocketaddress.c +79 -0
- data/ext/gio2/gvfs.c +84 -0
- data/ext/gio2/gvolume.c +191 -0
- data/ext/gio2/gvolumemonitor.c +77 -0
- data/ext/gio2/gzlibcompressor.c +47 -0
- data/ext/gio2/gzlibdecompressor.c +43 -0
- data/ext/gio2/util.c +323 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gio2.so +0 -0
- data/lib/1.9/gio2.so +0 -0
- data/lib/gio2.rb +141 -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 +537 -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 +236 -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 +81 -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 +79 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gcredentials.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +150 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +46 -0
- data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +562 -0
- data/vendor/local/include/glib-2.0/gio/gdbuserror.h +100 -0
- data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +286 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +149 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +73 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +112 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +94 -0
- data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gdbusserver.h +54 -0
- data/vendor/local/include/glib-2.0/gio/gdbusutils.h +44 -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 +132 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +952 -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 +122 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +1221 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +121 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +52 -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 +375 -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 +98 -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 +73 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +71 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
- data/vendor/local/include/glib-2.0/gio/gpermission.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gproxy.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +96 -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/gsettings.h +258 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +138 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +194 -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 +152 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +74 -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 +150 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +57 -0
- data/vendor/local/include/glib-2.0/glib-object.h +42 -0
- data/vendor/local/include/glib-2.0/glib.h +99 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +110 -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 +105 -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 +215 -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 +81 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +162 -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/gdatetime.h +217 -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 +266 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +284 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +531 -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 +309 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +290 -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 +117 -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 +471 -0
- data/vendor/local/include/glib-2.0/glib/grel.h +101 -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 +147 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +269 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +297 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +407 -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/gtimezone.h +44 -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 +421 -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 +248 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +334 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
- data/vendor/local/include/glib-2.0/gmodule.h +101 -0
- data/vendor/local/include/glib-2.0/gobject/gbinding.h +136 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +248 -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 +186 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +567 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +193 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +415 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1137 -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 +1736 -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 +227 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +260 -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 +1143 -0
- data/vendor/local/lib/gio-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0.def +1452 -0
- data/vendor/local/lib/glib-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -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 +370 -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 +15 -0
- data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -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-dev_2.26.0-2_win32.mft +570 -0
- data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
- data/vendor/local/manifest/glib_2.26.0-2_win32.mft +102 -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-2.26.0/COPYING +482 -0
- data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/glib-dev-2.26.0/COPYING +482 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +249 -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 +279 -0
- data/vendor/local/share/glib-2.0/schemas/gschema.dtd +60 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1403 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +733 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +563 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +291 -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 +423 -0
- data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +398 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +254 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +6211 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +1833 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +618 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2050 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +1124 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1215 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +540 -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 +7462 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +120 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +516 -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 +3144 -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 +188 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +189 -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 +196 -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 +393 -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 +343 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +311 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1012 -0
- data/vendor/local/share/gtk-doc/html/gio/GPermission.html +560 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxy.html +312 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +348 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +301 -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/GSettings.html +2424 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +609 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1193 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2438 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +1292 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +513 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +337 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +275 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +745 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +165 -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/GUnixConnection.html +298 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +222 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +389 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +288 -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 +491 -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 +705 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +252 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +170 -0
- data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +65 -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 +1084 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +223 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1598 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +112 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +6250 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +207 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +180 -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/ch24.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch25.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch25s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch25s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26.html +57 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s02.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s03.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s04.html +46 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s05.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s06.html +277 -0
- data/vendor/local/share/gtk-doc/html/gio/ch26s07.html +95 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27.html +70 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s02.html +130 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s03.html +202 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s04.html +96 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s05.html +823 -0
- data/vendor/local/share/gtk-doc/html/gio/ch27s06.html +828 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +109 -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/gdbus-convenience.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus.html +243 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +316 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1117 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +216 -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 +473 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +391 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +908 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +933 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +409 -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-Owning-Bus-Names.html +736 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +909 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +666 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +123 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1736 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2006 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +102 -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 +53 -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 +435 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +2513 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +62 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +69 -0
- data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/settings.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +265 -0
- data/vendor/local/share/gtk-doc/html/gio/tools.html +44 -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/annotation-glossary.html +77 -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 +559 -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 +420 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +359 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +396 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +417 -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 +419 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +8214 -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 +414 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +466 -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 +2056 -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 +1094 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1671 -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 +2045 -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 +1026 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1852 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2201 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +239 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +4278 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1864 -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 +692 -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 +2740 -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 +1033 -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 +748 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1105 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1552 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1468 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +194 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2745 -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 +532 -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 +1282 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1213 -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 +470 -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 +2960 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1291 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1805 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3478 -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 +400 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3448 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +253 -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 +466 -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 +2217 -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 +319 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +118 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2183 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2671 -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 +1288 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +344 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2846 -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 +265 -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/GBinding.html +803 -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/annotation-glossary.html +47 -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 +73 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +201 -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 +2721 -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 +361 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +307 -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 +417 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2412 -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 +1433 -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 +5555 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2875 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4460 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +416 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +260 -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 +762 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +801 -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 +192 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +786 -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 +85 -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 +265 -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/kk/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 +312 -0
- data/vendor/local/share/man/man1/glib-mkenums.1 +246 -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
- data/vendor/local/src/tml/packaging/glib_2.26.0-2_win32.log +2867 -0
- data/vendor/local/src/tml/packaging/glib_2.26.0-2_win32.sh +64 -0
- metadata +952 -0
Binary file
|
@@ -0,0 +1,1452 @@
|
|
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_date_time_add
|
239
|
+
g_date_time_add_days
|
240
|
+
g_date_time_add_full
|
241
|
+
g_date_time_add_hours
|
242
|
+
g_date_time_add_minutes
|
243
|
+
g_date_time_add_months
|
244
|
+
g_date_time_add_seconds
|
245
|
+
g_date_time_add_weeks
|
246
|
+
g_date_time_add_years
|
247
|
+
g_date_time_compare
|
248
|
+
g_date_time_difference
|
249
|
+
g_date_time_equal
|
250
|
+
g_date_time_format
|
251
|
+
g_date_time_get_day_of_month
|
252
|
+
g_date_time_get_day_of_week
|
253
|
+
g_date_time_get_day_of_year
|
254
|
+
g_date_time_get_hour
|
255
|
+
g_date_time_get_microsecond
|
256
|
+
g_date_time_get_minute
|
257
|
+
g_date_time_get_month
|
258
|
+
g_date_time_get_second
|
259
|
+
g_date_time_get_seconds
|
260
|
+
g_date_time_get_timezone_abbreviation
|
261
|
+
g_date_time_get_utc_offset
|
262
|
+
g_date_time_get_week_numbering_year
|
263
|
+
g_date_time_get_week_of_year
|
264
|
+
g_date_time_get_year
|
265
|
+
g_date_time_get_ymd
|
266
|
+
g_date_time_hash
|
267
|
+
g_date_time_is_daylight_savings
|
268
|
+
g_date_time_new
|
269
|
+
g_date_time_new_from_timeval_local
|
270
|
+
g_date_time_new_from_timeval_utc
|
271
|
+
g_date_time_new_from_unix_local
|
272
|
+
g_date_time_new_from_unix_utc
|
273
|
+
g_date_time_new_local
|
274
|
+
g_date_time_new_now
|
275
|
+
g_date_time_new_now_local
|
276
|
+
g_date_time_new_now_utc
|
277
|
+
g_date_time_new_utc
|
278
|
+
g_date_time_ref
|
279
|
+
g_date_time_to_local
|
280
|
+
g_date_time_to_timeval
|
281
|
+
g_date_time_to_timezone
|
282
|
+
g_date_time_to_unix
|
283
|
+
g_date_time_to_utc
|
284
|
+
g_date_time_unref
|
285
|
+
g_time_zone_new
|
286
|
+
g_time_zone_new_local
|
287
|
+
g_time_zone_new_utc
|
288
|
+
g_time_zone_ref
|
289
|
+
g_time_zone_unref
|
290
|
+
g_dir_close
|
291
|
+
g_dir_open PRIVATE
|
292
|
+
g_dir_read_name PRIVATE
|
293
|
+
g_dir_open_utf8
|
294
|
+
g_dir_read_name_utf8
|
295
|
+
g_dir_rewind
|
296
|
+
g_clear_error
|
297
|
+
g_error_copy
|
298
|
+
g_error_free
|
299
|
+
g_error_matches
|
300
|
+
g_error_new
|
301
|
+
g_error_new_literal
|
302
|
+
g_error_new_valist
|
303
|
+
g_propagate_error
|
304
|
+
g_set_error
|
305
|
+
g_set_error_literal
|
306
|
+
g_prefix_error
|
307
|
+
g_propagate_prefixed_error
|
308
|
+
g_build_filename
|
309
|
+
g_build_filenamev
|
310
|
+
g_build_path
|
311
|
+
g_build_pathv
|
312
|
+
g_file_error_from_errno
|
313
|
+
g_file_error_quark
|
314
|
+
g_file_get_contents PRIVATE
|
315
|
+
g_file_set_contents
|
316
|
+
g_file_open_tmp PRIVATE
|
317
|
+
g_file_test PRIVATE
|
318
|
+
g_file_read_link
|
319
|
+
g_format_size_for_display
|
320
|
+
g_mkstemp PRIVATE
|
321
|
+
g_mkstemp_full
|
322
|
+
g_mkdir_with_parents
|
323
|
+
g_file_get_contents_utf8
|
324
|
+
g_file_open_tmp_utf8
|
325
|
+
g_file_test_utf8
|
326
|
+
g_mkstemp_utf8
|
327
|
+
g_hash_table_destroy
|
328
|
+
g_hash_table_unref
|
329
|
+
g_hash_table_ref
|
330
|
+
g_hash_table_find
|
331
|
+
g_hash_table_foreach
|
332
|
+
g_hash_table_foreach_remove
|
333
|
+
g_hash_table_foreach_steal
|
334
|
+
g_hash_table_get_keys
|
335
|
+
g_hash_table_get_values
|
336
|
+
g_hash_table_insert
|
337
|
+
g_hash_table_lookup
|
338
|
+
g_hash_table_lookup_extended
|
339
|
+
g_hash_table_new
|
340
|
+
g_hash_table_new_full
|
341
|
+
g_hash_table_remove
|
342
|
+
g_hash_table_remove_all
|
343
|
+
g_hash_table_replace
|
344
|
+
g_hash_table_size
|
345
|
+
g_hash_table_steal
|
346
|
+
g_hash_table_steal_all
|
347
|
+
g_hash_table_iter_init
|
348
|
+
g_hash_table_iter_next
|
349
|
+
g_hash_table_iter_get_hash_table
|
350
|
+
g_hash_table_iter_remove
|
351
|
+
g_hash_table_iter_steal
|
352
|
+
g_hook_alloc
|
353
|
+
g_hook_compare_ids
|
354
|
+
g_hook_destroy
|
355
|
+
g_hook_destroy_link
|
356
|
+
g_hook_find
|
357
|
+
g_hook_find_data
|
358
|
+
g_hook_find_func
|
359
|
+
g_hook_find_func_data
|
360
|
+
g_hook_first_valid
|
361
|
+
g_hook_free
|
362
|
+
g_hook_get
|
363
|
+
g_hook_insert_before
|
364
|
+
g_hook_insert_sorted
|
365
|
+
g_hook_list_clear
|
366
|
+
g_hook_list_init
|
367
|
+
g_hook_list_invoke
|
368
|
+
g_hook_list_invoke_check
|
369
|
+
g_hook_list_marshal
|
370
|
+
g_hook_list_marshal_check
|
371
|
+
g_hook_next_valid
|
372
|
+
g_hook_prepend
|
373
|
+
g_hook_ref
|
374
|
+
g_hook_unref
|
375
|
+
g_io_add_watch
|
376
|
+
g_io_add_watch_full
|
377
|
+
g_io_create_watch
|
378
|
+
g_io_channel_error_from_errno
|
379
|
+
g_io_channel_error_quark
|
380
|
+
g_io_channel_flush
|
381
|
+
g_io_channel_get_buffer_condition
|
382
|
+
g_io_channel_get_buffered
|
383
|
+
g_io_channel_get_buffer_size
|
384
|
+
g_io_channel_get_close_on_unref
|
385
|
+
g_io_channel_get_encoding
|
386
|
+
g_io_channel_get_flags
|
387
|
+
g_io_channel_get_line_term
|
388
|
+
g_io_channel_init
|
389
|
+
g_io_channel_read_chars
|
390
|
+
g_io_channel_read_line
|
391
|
+
g_io_channel_read_line_string
|
392
|
+
g_io_channel_read_to_end
|
393
|
+
g_io_channel_read_unichar
|
394
|
+
g_io_channel_ref
|
395
|
+
g_io_channel_seek_position
|
396
|
+
g_io_channel_set_buffered
|
397
|
+
g_io_channel_set_buffer_size
|
398
|
+
g_io_channel_set_close_on_unref
|
399
|
+
g_io_channel_set_encoding
|
400
|
+
g_io_channel_set_flags
|
401
|
+
g_io_channel_set_line_term
|
402
|
+
g_io_channel_shutdown
|
403
|
+
g_io_channel_unref
|
404
|
+
g_io_channel_close
|
405
|
+
g_io_channel_read
|
406
|
+
g_io_channel_seek
|
407
|
+
g_io_channel_write
|
408
|
+
g_io_channel_write_chars
|
409
|
+
g_io_channel_write_unichar
|
410
|
+
g_io_channel_unix_get_fd
|
411
|
+
g_io_channel_unix_new
|
412
|
+
g_io_channel_new_file PRIVATE
|
413
|
+
g_io_channel_new_file_utf8
|
414
|
+
g_io_channel_win32_get_fd
|
415
|
+
g_io_channel_win32_make_pollfd
|
416
|
+
g_io_channel_win32_new_fd
|
417
|
+
g_io_channel_win32_new_messages
|
418
|
+
g_io_channel_win32_new_socket
|
419
|
+
g_io_channel_win32_new_stream_socket PRIVATE
|
420
|
+
g_io_channel_win32_poll
|
421
|
+
g_io_channel_win32_set_debug
|
422
|
+
g_key_file_error_quark
|
423
|
+
g_key_file_free
|
424
|
+
g_key_file_get_boolean
|
425
|
+
g_key_file_get_boolean_list
|
426
|
+
g_key_file_get_comment
|
427
|
+
g_key_file_get_groups
|
428
|
+
g_key_file_get_double
|
429
|
+
g_key_file_get_double_list
|
430
|
+
g_key_file_get_integer
|
431
|
+
g_key_file_get_int64
|
432
|
+
g_key_file_get_uint64
|
433
|
+
g_key_file_get_integer_list
|
434
|
+
g_key_file_get_keys
|
435
|
+
g_key_file_get_locale_string
|
436
|
+
g_key_file_get_locale_string_list
|
437
|
+
g_key_file_get_start_group
|
438
|
+
g_key_file_get_string
|
439
|
+
g_key_file_get_string_list
|
440
|
+
g_key_file_get_value
|
441
|
+
g_key_file_has_group
|
442
|
+
g_key_file_has_key
|
443
|
+
g_key_file_load_from_dirs
|
444
|
+
g_key_file_load_from_data
|
445
|
+
g_key_file_load_from_data_dirs
|
446
|
+
g_key_file_load_from_file
|
447
|
+
g_key_file_new
|
448
|
+
g_key_file_remove_comment
|
449
|
+
g_key_file_remove_group
|
450
|
+
g_key_file_remove_key
|
451
|
+
g_key_file_set_boolean
|
452
|
+
g_key_file_set_boolean_list
|
453
|
+
g_key_file_set_comment
|
454
|
+
g_key_file_set_double
|
455
|
+
g_key_file_set_double_list
|
456
|
+
g_key_file_set_integer
|
457
|
+
g_key_file_set_int64
|
458
|
+
g_key_file_set_uint64
|
459
|
+
g_key_file_set_integer_list
|
460
|
+
g_key_file_set_list_separator
|
461
|
+
g_key_file_set_locale_string
|
462
|
+
g_key_file_set_locale_string_list
|
463
|
+
g_key_file_set_string
|
464
|
+
g_key_file_set_string_list
|
465
|
+
g_key_file_set_value
|
466
|
+
g_key_file_to_data
|
467
|
+
g_list_alloc
|
468
|
+
g_list_append
|
469
|
+
g_list_concat
|
470
|
+
g_list_copy
|
471
|
+
g_list_delete_link
|
472
|
+
g_list_find
|
473
|
+
g_list_find_custom
|
474
|
+
g_list_first
|
475
|
+
g_list_foreach
|
476
|
+
g_list_free
|
477
|
+
g_list_free_1
|
478
|
+
g_list_index
|
479
|
+
g_list_insert
|
480
|
+
g_list_insert_before
|
481
|
+
g_list_insert_sorted
|
482
|
+
g_list_insert_sorted_with_data
|
483
|
+
g_list_last
|
484
|
+
g_list_length
|
485
|
+
g_list_nth
|
486
|
+
g_list_nth_data
|
487
|
+
g_list_nth_prev
|
488
|
+
g_list_pop_allocator
|
489
|
+
g_list_position
|
490
|
+
g_list_prepend
|
491
|
+
g_list_push_allocator
|
492
|
+
g_list_remove
|
493
|
+
g_list_remove_all
|
494
|
+
g_list_remove_link
|
495
|
+
g_list_reverse
|
496
|
+
g_list_sort
|
497
|
+
g_list_sort_with_data
|
498
|
+
g_child_watch_add
|
499
|
+
g_child_watch_add_full
|
500
|
+
g_child_watch_source_new
|
501
|
+
g_get_current_time
|
502
|
+
g_main_context_acquire
|
503
|
+
g_main_context_add_poll
|
504
|
+
g_main_context_check
|
505
|
+
g_main_context_default
|
506
|
+
g_main_context_dispatch
|
507
|
+
g_main_context_find_source_by_funcs_user_data
|
508
|
+
g_main_context_find_source_by_id
|
509
|
+
g_main_context_find_source_by_user_data
|
510
|
+
g_main_context_get_poll_func
|
511
|
+
g_main_context_get_thread_default
|
512
|
+
g_main_context_is_owner
|
513
|
+
g_main_context_iteration
|
514
|
+
g_main_context_new
|
515
|
+
g_main_context_pending
|
516
|
+
g_main_context_pop_thread_default
|
517
|
+
g_main_context_prepare
|
518
|
+
g_main_context_push_thread_default
|
519
|
+
g_main_context_query
|
520
|
+
g_main_context_ref
|
521
|
+
g_main_context_release
|
522
|
+
g_main_context_remove_poll
|
523
|
+
g_main_context_set_poll_func
|
524
|
+
g_main_context_unref
|
525
|
+
g_main_context_wait
|
526
|
+
g_main_context_wakeup
|
527
|
+
g_main_depth
|
528
|
+
g_main_current_source
|
529
|
+
g_main_loop_get_context
|
530
|
+
g_main_loop_is_running
|
531
|
+
g_main_loop_new
|
532
|
+
g_main_loop_quit
|
533
|
+
g_main_loop_ref
|
534
|
+
g_main_loop_run
|
535
|
+
g_main_loop_unref
|
536
|
+
g_source_add_poll
|
537
|
+
g_source_attach
|
538
|
+
g_source_destroy
|
539
|
+
g_source_get_can_recurse
|
540
|
+
g_source_get_context
|
541
|
+
g_source_get_current_time
|
542
|
+
g_source_get_id
|
543
|
+
g_source_get_name
|
544
|
+
g_source_get_priority
|
545
|
+
g_source_new
|
546
|
+
g_source_ref
|
547
|
+
g_source_remove
|
548
|
+
g_source_remove_by_funcs_user_data
|
549
|
+
g_source_remove_by_user_data
|
550
|
+
g_source_remove_poll
|
551
|
+
g_source_set_callback
|
552
|
+
g_source_set_callback_indirect
|
553
|
+
g_source_set_can_recurse
|
554
|
+
g_source_set_funcs
|
555
|
+
g_source_set_name
|
556
|
+
g_source_set_name_by_id
|
557
|
+
g_source_is_destroyed
|
558
|
+
g_source_set_priority
|
559
|
+
g_source_unref
|
560
|
+
g_idle_add
|
561
|
+
g_idle_add_full
|
562
|
+
g_idle_remove_by_data
|
563
|
+
g_idle_source_new
|
564
|
+
g_timeout_add
|
565
|
+
g_timeout_add_seconds
|
566
|
+
g_timeout_add_full
|
567
|
+
g_timeout_add_seconds_full
|
568
|
+
g_timeout_source_new
|
569
|
+
g_timeout_source_new_seconds
|
570
|
+
g_mapped_file_new
|
571
|
+
g_mapped_file_get_length
|
572
|
+
g_mapped_file_get_contents
|
573
|
+
g_mapped_file_ref
|
574
|
+
g_mapped_file_unref
|
575
|
+
g_mapped_file_free
|
576
|
+
g_markup_error_quark
|
577
|
+
g_markup_escape_text
|
578
|
+
g_markup_parse_context_end_parse
|
579
|
+
g_markup_parse_context_free
|
580
|
+
g_markup_parse_context_get_element
|
581
|
+
g_markup_parse_context_get_element_stack
|
582
|
+
g_markup_parse_context_get_position
|
583
|
+
g_markup_parse_context_get_user_data
|
584
|
+
g_markup_parse_context_new
|
585
|
+
g_markup_parse_context_parse
|
586
|
+
g_markup_parse_context_push
|
587
|
+
g_markup_parse_context_pop
|
588
|
+
g_markup_printf_escaped
|
589
|
+
g_markup_vprintf_escaped
|
590
|
+
g_markup_collect_attributes
|
591
|
+
g_free
|
592
|
+
g_malloc
|
593
|
+
g_malloc0
|
594
|
+
g_malloc_n
|
595
|
+
g_malloc0_n
|
596
|
+
g_mem_is_system_malloc
|
597
|
+
g_mem_profile
|
598
|
+
g_mem_set_vtable
|
599
|
+
g_realloc
|
600
|
+
g_realloc_n
|
601
|
+
g_try_malloc
|
602
|
+
g_try_malloc0
|
603
|
+
g_try_malloc_n
|
604
|
+
g_try_malloc0_n
|
605
|
+
g_try_realloc
|
606
|
+
g_try_realloc_n
|
607
|
+
g_allocator_free
|
608
|
+
g_allocator_new
|
609
|
+
g_mem_chunk_alloc
|
610
|
+
g_mem_chunk_alloc0
|
611
|
+
g_mem_chunk_clean
|
612
|
+
g_mem_chunk_destroy
|
613
|
+
g_mem_chunk_free
|
614
|
+
g_mem_chunk_info
|
615
|
+
g_mem_chunk_new
|
616
|
+
g_mem_chunk_print
|
617
|
+
g_mem_chunk_reset
|
618
|
+
g_blow_chunks
|
619
|
+
g_slice_alloc
|
620
|
+
g_slice_alloc0
|
621
|
+
g_slice_copy
|
622
|
+
g_slice_free1
|
623
|
+
g_slice_free_chain_with_offset
|
624
|
+
g_slice_set_config
|
625
|
+
g_slice_get_config
|
626
|
+
g_slice_get_config_state
|
627
|
+
g_printf_string_upper_bound
|
628
|
+
g_log
|
629
|
+
g_log_default_handler
|
630
|
+
g_log_remove_handler
|
631
|
+
g_log_set_always_fatal
|
632
|
+
g_log_set_default_handler
|
633
|
+
g_log_set_fatal_mask
|
634
|
+
g_log_set_handler
|
635
|
+
g_logv
|
636
|
+
g_return_if_fail_warning
|
637
|
+
g_warn_message
|
638
|
+
g_assert_warning
|
639
|
+
g_print
|
640
|
+
g_printerr
|
641
|
+
g_set_printerr_handler
|
642
|
+
g_set_print_handler
|
643
|
+
g_node_child_index
|
644
|
+
g_node_child_position
|
645
|
+
g_node_children_foreach
|
646
|
+
g_node_copy
|
647
|
+
g_node_copy_deep
|
648
|
+
g_node_depth
|
649
|
+
g_node_destroy
|
650
|
+
g_node_find
|
651
|
+
g_node_find_child
|
652
|
+
g_node_first_sibling
|
653
|
+
g_node_get_root
|
654
|
+
g_node_insert
|
655
|
+
g_node_insert_after
|
656
|
+
g_node_insert_before
|
657
|
+
g_node_is_ancestor
|
658
|
+
g_node_last_child
|
659
|
+
g_node_last_sibling
|
660
|
+
g_node_max_height
|
661
|
+
g_node_n_children
|
662
|
+
g_node_new
|
663
|
+
g_node_n_nodes
|
664
|
+
g_node_nth_child
|
665
|
+
g_node_pop_allocator
|
666
|
+
g_node_prepend
|
667
|
+
g_node_push_allocator
|
668
|
+
g_node_reverse_children
|
669
|
+
g_node_traverse
|
670
|
+
g_node_unlink
|
671
|
+
g_option_context_add_group
|
672
|
+
g_option_context_add_main_entries
|
673
|
+
g_option_error_quark
|
674
|
+
g_option_context_free
|
675
|
+
g_option_context_get_description
|
676
|
+
g_option_context_get_help_enabled
|
677
|
+
g_option_context_get_ignore_unknown_options
|
678
|
+
g_option_context_get_main_group
|
679
|
+
g_option_context_get_summary
|
680
|
+
g_option_context_new
|
681
|
+
g_option_context_parse
|
682
|
+
g_option_context_set_description
|
683
|
+
g_option_context_set_help_enabled
|
684
|
+
g_option_context_set_ignore_unknown_options
|
685
|
+
g_option_context_set_main_group
|
686
|
+
g_option_context_set_summary
|
687
|
+
g_option_context_set_translate_func
|
688
|
+
g_option_context_set_translation_domain
|
689
|
+
g_option_context_get_help
|
690
|
+
g_option_group_add_entries
|
691
|
+
g_option_group_free
|
692
|
+
g_option_group_new
|
693
|
+
g_option_group_set_error_hook
|
694
|
+
g_option_group_set_parse_hooks
|
695
|
+
g_option_group_set_translate_func
|
696
|
+
g_option_group_set_translation_domain
|
697
|
+
g_pattern_match
|
698
|
+
g_pattern_match_simple
|
699
|
+
g_pattern_match_string
|
700
|
+
g_pattern_spec_equal
|
701
|
+
g_pattern_spec_free
|
702
|
+
g_pattern_spec_new
|
703
|
+
g_poll
|
704
|
+
g_spaced_primes_closest
|
705
|
+
g_fprintf
|
706
|
+
g_printf
|
707
|
+
g_sprintf
|
708
|
+
g_vasprintf
|
709
|
+
g_vfprintf
|
710
|
+
g_vprintf
|
711
|
+
g_vsprintf
|
712
|
+
g_snprintf
|
713
|
+
g_vsnprintf
|
714
|
+
g_qsort_with_data
|
715
|
+
g_queue_clear
|
716
|
+
g_queue_copy
|
717
|
+
g_queue_delete_link
|
718
|
+
g_queue_find
|
719
|
+
g_queue_find_custom
|
720
|
+
g_queue_foreach
|
721
|
+
g_queue_free
|
722
|
+
g_queue_get_length
|
723
|
+
g_queue_index
|
724
|
+
g_queue_init
|
725
|
+
g_queue_insert_after
|
726
|
+
g_queue_insert_before
|
727
|
+
g_queue_insert_sorted
|
728
|
+
g_queue_is_empty
|
729
|
+
g_queue_link_index
|
730
|
+
g_queue_new
|
731
|
+
g_queue_peek_head
|
732
|
+
g_queue_peek_head_link
|
733
|
+
g_queue_peek_nth
|
734
|
+
g_queue_peek_nth_link
|
735
|
+
g_queue_peek_tail
|
736
|
+
g_queue_peek_tail_link
|
737
|
+
g_queue_pop_head
|
738
|
+
g_queue_pop_head_link
|
739
|
+
g_queue_pop_nth
|
740
|
+
g_queue_pop_nth_link
|
741
|
+
g_queue_pop_tail
|
742
|
+
g_queue_pop_tail_link
|
743
|
+
g_queue_push_head
|
744
|
+
g_queue_push_head_link
|
745
|
+
g_queue_push_nth
|
746
|
+
g_queue_push_nth_link
|
747
|
+
g_queue_push_tail
|
748
|
+
g_queue_push_tail_link
|
749
|
+
g_queue_remove
|
750
|
+
g_queue_remove_all
|
751
|
+
g_queue_reverse
|
752
|
+
g_queue_sort
|
753
|
+
g_queue_unlink
|
754
|
+
g_rand_copy
|
755
|
+
g_rand_double
|
756
|
+
g_rand_double_range
|
757
|
+
g_rand_free
|
758
|
+
g_rand_int
|
759
|
+
g_rand_int_range
|
760
|
+
g_rand_new
|
761
|
+
g_rand_new_with_seed
|
762
|
+
g_rand_new_with_seed_array
|
763
|
+
g_random_double
|
764
|
+
g_random_double_range
|
765
|
+
g_random_int
|
766
|
+
g_random_int_range
|
767
|
+
g_random_set_seed
|
768
|
+
g_rand_set_seed
|
769
|
+
g_rand_set_seed_array
|
770
|
+
g_relation_count
|
771
|
+
g_relation_delete
|
772
|
+
g_relation_destroy
|
773
|
+
g_relation_exists
|
774
|
+
g_relation_index
|
775
|
+
g_relation_insert
|
776
|
+
g_relation_new
|
777
|
+
g_relation_print
|
778
|
+
g_relation_select
|
779
|
+
g_tuples_destroy
|
780
|
+
g_tuples_index
|
781
|
+
g_scanner_cur_line
|
782
|
+
g_scanner_cur_position
|
783
|
+
g_scanner_cur_token
|
784
|
+
g_scanner_cur_value
|
785
|
+
g_scanner_destroy
|
786
|
+
g_scanner_eof
|
787
|
+
g_scanner_error
|
788
|
+
g_scanner_get_next_token
|
789
|
+
g_scanner_input_file
|
790
|
+
g_scanner_input_text
|
791
|
+
g_scanner_lookup_symbol
|
792
|
+
g_scanner_new
|
793
|
+
g_scanner_peek_next_token
|
794
|
+
g_scanner_scope_add_symbol
|
795
|
+
g_scanner_scope_foreach_symbol
|
796
|
+
g_scanner_scope_lookup_symbol
|
797
|
+
g_scanner_scope_remove_symbol
|
798
|
+
g_scanner_set_scope
|
799
|
+
g_scanner_sync_file_offset
|
800
|
+
g_scanner_unexp_token
|
801
|
+
g_scanner_warn
|
802
|
+
g_sequence_new
|
803
|
+
g_sequence_free
|
804
|
+
g_sequence_get_length
|
805
|
+
g_sequence_foreach
|
806
|
+
g_sequence_foreach_range
|
807
|
+
g_sequence_sort
|
808
|
+
g_sequence_sort_iter
|
809
|
+
g_sequence_get_begin_iter
|
810
|
+
g_sequence_get_end_iter
|
811
|
+
g_sequence_get_iter_at_pos
|
812
|
+
g_sequence_append
|
813
|
+
g_sequence_prepend
|
814
|
+
g_sequence_insert_before
|
815
|
+
g_sequence_move
|
816
|
+
g_sequence_swap
|
817
|
+
g_sequence_insert_sorted
|
818
|
+
g_sequence_insert_sorted_iter
|
819
|
+
g_sequence_sort_changed
|
820
|
+
g_sequence_sort_changed_iter
|
821
|
+
g_sequence_remove
|
822
|
+
g_sequence_remove_range
|
823
|
+
g_sequence_move_range
|
824
|
+
g_sequence_search
|
825
|
+
g_sequence_search_iter
|
826
|
+
g_sequence_get
|
827
|
+
g_sequence_set
|
828
|
+
g_sequence_iter_is_begin
|
829
|
+
g_sequence_iter_is_end
|
830
|
+
g_sequence_iter_next
|
831
|
+
g_sequence_iter_prev
|
832
|
+
g_sequence_iter_get_position
|
833
|
+
g_sequence_iter_move
|
834
|
+
g_sequence_iter_get_sequence
|
835
|
+
g_sequence_iter_compare
|
836
|
+
g_sequence_range_get_midpoint
|
837
|
+
g_shell_error_quark
|
838
|
+
g_shell_parse_argv
|
839
|
+
g_shell_quote
|
840
|
+
g_shell_unquote
|
841
|
+
g_slist_alloc
|
842
|
+
g_slist_append
|
843
|
+
g_slist_concat
|
844
|
+
g_slist_copy
|
845
|
+
g_slist_delete_link
|
846
|
+
g_slist_find
|
847
|
+
g_slist_find_custom
|
848
|
+
g_slist_foreach
|
849
|
+
g_slist_free
|
850
|
+
g_slist_free_1
|
851
|
+
g_slist_index
|
852
|
+
g_slist_insert
|
853
|
+
g_slist_insert_before
|
854
|
+
g_slist_insert_sorted
|
855
|
+
g_slist_insert_sorted_with_data
|
856
|
+
g_slist_last
|
857
|
+
g_slist_length
|
858
|
+
g_slist_nth
|
859
|
+
g_slist_nth_data
|
860
|
+
g_slist_pop_allocator
|
861
|
+
g_slist_position
|
862
|
+
g_slist_prepend
|
863
|
+
g_slist_push_allocator
|
864
|
+
g_slist_remove
|
865
|
+
g_slist_remove_all
|
866
|
+
g_slist_remove_link
|
867
|
+
g_slist_reverse
|
868
|
+
g_slist_sort
|
869
|
+
g_slist_sort_with_data
|
870
|
+
g_spawn_async PRIVATE
|
871
|
+
g_spawn_async_with_pipes PRIVATE
|
872
|
+
g_spawn_close_pid
|
873
|
+
g_spawn_command_line_async PRIVATE
|
874
|
+
g_spawn_command_line_sync PRIVATE
|
875
|
+
g_spawn_error_quark
|
876
|
+
g_spawn_sync PRIVATE
|
877
|
+
g_spawn_async_utf8
|
878
|
+
g_spawn_async_with_pipes_utf8
|
879
|
+
g_spawn_command_line_async_utf8
|
880
|
+
g_spawn_command_line_sync_utf8
|
881
|
+
g_spawn_sync_utf8
|
882
|
+
g_chmod
|
883
|
+
g_open
|
884
|
+
g_creat
|
885
|
+
g_rename
|
886
|
+
g_mkdir
|
887
|
+
g_stat
|
888
|
+
g_lstat
|
889
|
+
g_remove
|
890
|
+
g_fopen
|
891
|
+
g_freopen
|
892
|
+
g_utime
|
893
|
+
g_access
|
894
|
+
g_chdir
|
895
|
+
g_unlink
|
896
|
+
g_rmdir
|
897
|
+
g_ascii_digit_value
|
898
|
+
g_ascii_dtostr
|
899
|
+
g_ascii_formatd
|
900
|
+
g_ascii_strdown
|
901
|
+
g_ascii_strtod
|
902
|
+
g_ascii_strtoull
|
903
|
+
g_ascii_strtoll
|
904
|
+
g_ascii_strup
|
905
|
+
g_ascii_tolower
|
906
|
+
g_ascii_toupper
|
907
|
+
g_ascii_xdigit_value
|
908
|
+
g_ascii_strcasecmp
|
909
|
+
g_ascii_strncasecmp
|
910
|
+
g_memdup
|
911
|
+
g_stpcpy
|
912
|
+
g_strcanon
|
913
|
+
g_strchomp
|
914
|
+
g_strchug
|
915
|
+
g_strcompress
|
916
|
+
g_strconcat
|
917
|
+
g_strdelimit
|
918
|
+
g_strdup
|
919
|
+
g_strdup_printf
|
920
|
+
g_strdupv
|
921
|
+
g_strdup_vprintf
|
922
|
+
g_strerror
|
923
|
+
g_strescape
|
924
|
+
g_strfreev
|
925
|
+
g_str_has_prefix
|
926
|
+
g_str_has_suffix
|
927
|
+
g_strjoin
|
928
|
+
g_strjoinv
|
929
|
+
g_strlcat
|
930
|
+
g_strlcpy
|
931
|
+
g_strndup
|
932
|
+
g_strnfill
|
933
|
+
g_strreverse
|
934
|
+
g_strrstr
|
935
|
+
g_strrstr_len
|
936
|
+
g_strsignal
|
937
|
+
g_strsplit
|
938
|
+
g_strsplit_set
|
939
|
+
g_strstr_len
|
940
|
+
g_strtod
|
941
|
+
g_strcasecmp
|
942
|
+
g_strncasecmp
|
943
|
+
g_strup
|
944
|
+
g_strdown
|
945
|
+
g_strv_length
|
946
|
+
g_strip_context
|
947
|
+
g_dgettext
|
948
|
+
g_dcgettext
|
949
|
+
g_dngettext
|
950
|
+
g_dpgettext
|
951
|
+
g_dpgettext2
|
952
|
+
g_uri_unescape_string
|
953
|
+
g_uri_unescape_segment
|
954
|
+
g_uri_parse_scheme
|
955
|
+
g_uri_escape_string
|
956
|
+
g_string_append
|
957
|
+
g_string_append_len
|
958
|
+
g_string_append_printf
|
959
|
+
g_string_append_unichar
|
960
|
+
g_string_append_vprintf
|
961
|
+
g_string_ascii_down
|
962
|
+
g_string_ascii_up
|
963
|
+
g_string_assign
|
964
|
+
g_string_chunk_free
|
965
|
+
g_string_chunk_clear
|
966
|
+
g_string_chunk_insert
|
967
|
+
g_string_chunk_insert_const
|
968
|
+
g_string_chunk_insert_len
|
969
|
+
g_string_chunk_new
|
970
|
+
g_string_equal
|
971
|
+
g_string_erase
|
972
|
+
g_string_free
|
973
|
+
g_string_hash
|
974
|
+
g_string_insert
|
975
|
+
g_string_insert_c
|
976
|
+
g_string_insert_len
|
977
|
+
g_string_insert_unichar
|
978
|
+
g_string_new
|
979
|
+
g_string_new_len
|
980
|
+
g_string_overwrite
|
981
|
+
g_string_overwrite_len
|
982
|
+
g_string_prepend
|
983
|
+
g_string_prepend_c
|
984
|
+
g_string_prepend_len
|
985
|
+
g_string_prepend_unichar
|
986
|
+
g_string_printf
|
987
|
+
g_string_set_size
|
988
|
+
g_string_sized_new
|
989
|
+
g_string_truncate
|
990
|
+
g_string_append_uri_escaped
|
991
|
+
g_string_down
|
992
|
+
g_string_up
|
993
|
+
g_string_vprintf
|
994
|
+
g_string_append_c
|
995
|
+
g_bit_lock
|
996
|
+
g_bit_trylock
|
997
|
+
g_bit_unlock
|
998
|
+
g_once_impl
|
999
|
+
g_once_init_enter_impl
|
1000
|
+
g_once_init_leave
|
1001
|
+
g_thread_init_glib
|
1002
|
+
g_once_init_enter
|
1003
|
+
g_thread_functions_for_glib_use
|
1004
|
+
g_threads_got_initialized
|
1005
|
+
g_thread_use_default_impl
|
1006
|
+
g_thread_gettime
|
1007
|
+
g_thread_create_full
|
1008
|
+
g_thread_error_quark
|
1009
|
+
g_thread_exit
|
1010
|
+
g_thread_join
|
1011
|
+
g_thread_self
|
1012
|
+
g_thread_set_priority
|
1013
|
+
g_static_mutex_free
|
1014
|
+
g_static_mutex_get_mutex_impl
|
1015
|
+
g_static_mutex_init
|
1016
|
+
g_static_private_free
|
1017
|
+
g_static_private_get
|
1018
|
+
g_static_private_init
|
1019
|
+
g_static_private_set
|
1020
|
+
g_static_rec_mutex_free
|
1021
|
+
g_static_rec_mutex_init
|
1022
|
+
g_static_rec_mutex_lock
|
1023
|
+
g_static_rec_mutex_lock_full
|
1024
|
+
g_static_rec_mutex_trylock
|
1025
|
+
g_static_rec_mutex_unlock
|
1026
|
+
g_static_rec_mutex_unlock_full
|
1027
|
+
g_static_rw_lock_free
|
1028
|
+
g_static_rw_lock_init
|
1029
|
+
g_static_rw_lock_reader_lock
|
1030
|
+
g_static_rw_lock_reader_trylock
|
1031
|
+
g_static_rw_lock_reader_unlock
|
1032
|
+
g_static_rw_lock_writer_lock
|
1033
|
+
g_static_rw_lock_writer_trylock
|
1034
|
+
g_static_rw_lock_writer_unlock
|
1035
|
+
g_thread_foreach
|
1036
|
+
g_thread_get_initialized
|
1037
|
+
g_thread_pool_free
|
1038
|
+
g_thread_pool_get_max_threads
|
1039
|
+
g_thread_pool_get_max_unused_threads
|
1040
|
+
g_thread_pool_get_max_idle_time
|
1041
|
+
g_thread_pool_get_num_threads
|
1042
|
+
g_thread_pool_get_num_unused_threads
|
1043
|
+
g_thread_pool_new
|
1044
|
+
g_thread_pool_push
|
1045
|
+
g_thread_pool_set_max_threads
|
1046
|
+
g_thread_pool_set_max_unused_threads
|
1047
|
+
g_thread_pool_set_max_idle_time
|
1048
|
+
g_thread_pool_stop_unused_threads
|
1049
|
+
g_thread_pool_unprocessed
|
1050
|
+
g_thread_pool_set_sort_function
|
1051
|
+
g_test_log_set_fatal_handler
|
1052
|
+
g_assertion_message
|
1053
|
+
g_assertion_message_cmpnum
|
1054
|
+
g_assertion_message_cmpstr
|
1055
|
+
g_assertion_message_expr
|
1056
|
+
g_assertion_message_error
|
1057
|
+
g_strcmp0
|
1058
|
+
g_test_add_data_func
|
1059
|
+
g_test_add_func
|
1060
|
+
g_test_add_vtable
|
1061
|
+
g_test_bug
|
1062
|
+
g_test_bug_base
|
1063
|
+
g_test_config_vars
|
1064
|
+
g_test_create_case
|
1065
|
+
g_test_create_suite
|
1066
|
+
g_test_get_root
|
1067
|
+
g_test_init
|
1068
|
+
g_test_log_buffer_free
|
1069
|
+
g_test_log_buffer_new
|
1070
|
+
g_test_log_buffer_pop
|
1071
|
+
g_test_log_buffer_push
|
1072
|
+
g_test_log_msg_free
|
1073
|
+
g_test_log_type_name
|
1074
|
+
g_test_maximized_result
|
1075
|
+
g_test_message
|
1076
|
+
g_test_minimized_result
|
1077
|
+
g_test_queue_destroy
|
1078
|
+
g_test_queue_free
|
1079
|
+
g_test_rand_double
|
1080
|
+
g_test_rand_double_range
|
1081
|
+
g_test_rand_int
|
1082
|
+
g_test_rand_int_range
|
1083
|
+
g_test_run
|
1084
|
+
g_test_run_suite
|
1085
|
+
g_test_suite_add
|
1086
|
+
g_test_suite_add_suite
|
1087
|
+
g_test_timer_elapsed
|
1088
|
+
g_test_timer_last
|
1089
|
+
g_test_timer_start
|
1090
|
+
g_test_trap_assertions
|
1091
|
+
g_test_trap_fork
|
1092
|
+
g_test_trap_has_passed
|
1093
|
+
g_test_trap_reached_timeout
|
1094
|
+
g_timer_continue
|
1095
|
+
g_timer_destroy
|
1096
|
+
g_timer_elapsed
|
1097
|
+
g_timer_new
|
1098
|
+
g_timer_reset
|
1099
|
+
g_timer_start
|
1100
|
+
g_timer_stop
|
1101
|
+
g_time_val_add
|
1102
|
+
g_time_val_from_iso8601
|
1103
|
+
g_time_val_to_iso8601
|
1104
|
+
g_usleep
|
1105
|
+
g_tree_destroy
|
1106
|
+
g_tree_foreach
|
1107
|
+
g_tree_height
|
1108
|
+
g_tree_insert
|
1109
|
+
g_tree_lookup
|
1110
|
+
g_tree_lookup_extended
|
1111
|
+
g_tree_new
|
1112
|
+
g_tree_ref
|
1113
|
+
g_tree_unref
|
1114
|
+
g_tree_new_full
|
1115
|
+
g_tree_new_with_data
|
1116
|
+
g_tree_nnodes
|
1117
|
+
g_tree_remove
|
1118
|
+
g_tree_replace
|
1119
|
+
g_tree_search
|
1120
|
+
g_tree_steal
|
1121
|
+
g_tree_traverse
|
1122
|
+
g_unichar_break_type
|
1123
|
+
g_utf8_collate
|
1124
|
+
g_utf8_collate_key
|
1125
|
+
g_utf8_collate_key_for_filename
|
1126
|
+
g_unicode_canonical_decomposition
|
1127
|
+
g_unicode_canonical_ordering
|
1128
|
+
g_unichar_combining_class
|
1129
|
+
g_utf8_normalize
|
1130
|
+
g_unichar_isalnum
|
1131
|
+
g_unichar_isalpha
|
1132
|
+
g_unichar_iscntrl
|
1133
|
+
g_unichar_isdefined
|
1134
|
+
g_unichar_isdigit
|
1135
|
+
g_unichar_isgraph
|
1136
|
+
g_unichar_islower
|
1137
|
+
g_unichar_isprint
|
1138
|
+
g_unichar_ispunct
|
1139
|
+
g_unichar_isspace
|
1140
|
+
g_unichar_istitle
|
1141
|
+
g_unichar_isupper
|
1142
|
+
g_unichar_iswide
|
1143
|
+
g_unichar_iswide_cjk
|
1144
|
+
g_unichar_isxdigit
|
1145
|
+
g_unichar_iszerowidth
|
1146
|
+
g_unichar_tolower
|
1147
|
+
g_unichar_totitle
|
1148
|
+
g_unichar_toupper
|
1149
|
+
g_unichar_ismark
|
1150
|
+
g_unichar_get_mirror_char
|
1151
|
+
g_unichar_get_script
|
1152
|
+
g_unichar_digit_value
|
1153
|
+
g_unichar_xdigit_value
|
1154
|
+
g_unichar_type
|
1155
|
+
g_utf8_casefold
|
1156
|
+
g_utf8_strup
|
1157
|
+
g_utf8_strdown
|
1158
|
+
g_get_charset
|
1159
|
+
g_ucs4_to_utf16
|
1160
|
+
g_ucs4_to_utf8
|
1161
|
+
g_utf16_to_ucs4
|
1162
|
+
g_utf16_to_utf8
|
1163
|
+
g_utf8_find_next_char
|
1164
|
+
g_utf8_find_prev_char
|
1165
|
+
g_utf8_get_char
|
1166
|
+
g_utf8_get_char_validated
|
1167
|
+
g_utf8_offset_to_pointer
|
1168
|
+
g_utf8_pointer_to_offset
|
1169
|
+
g_utf8_prev_char
|
1170
|
+
g_utf8_strchr
|
1171
|
+
g_utf8_strlen
|
1172
|
+
g_utf8_strncpy
|
1173
|
+
g_utf8_strrchr
|
1174
|
+
g_utf8_strreverse
|
1175
|
+
g_utf8_to_ucs4
|
1176
|
+
g_utf8_to_ucs4_fast
|
1177
|
+
g_utf8_to_utf16
|
1178
|
+
g_utf8_validate
|
1179
|
+
g_unichar_to_utf8
|
1180
|
+
g_unichar_validate
|
1181
|
+
glib_gettext
|
1182
|
+
g_int_equal
|
1183
|
+
g_int_hash
|
1184
|
+
g_int64_equal
|
1185
|
+
g_int64_hash
|
1186
|
+
g_double_equal
|
1187
|
+
g_double_hash
|
1188
|
+
g_direct_equal
|
1189
|
+
g_direct_hash
|
1190
|
+
g_str_equal
|
1191
|
+
g_str_hash
|
1192
|
+
g_atexit
|
1193
|
+
g_basename
|
1194
|
+
g_get_application_name
|
1195
|
+
g_find_program_in_path PRIVATE
|
1196
|
+
g_get_current_dir PRIVATE
|
1197
|
+
g_getenv PRIVATE
|
1198
|
+
g_unsetenv PRIVATE
|
1199
|
+
g_get_home_dir PRIVATE
|
1200
|
+
g_get_host_name
|
1201
|
+
g_setenv PRIVATE
|
1202
|
+
g_listenv
|
1203
|
+
g_find_program_in_path_utf8
|
1204
|
+
g_get_current_dir_utf8
|
1205
|
+
g_getenv_utf8
|
1206
|
+
g_unsetenv_utf8
|
1207
|
+
g_setenv_utf8
|
1208
|
+
g_get_home_dir_utf8
|
1209
|
+
g_get_language_names
|
1210
|
+
g_get_prgname
|
1211
|
+
g_get_real_name PRIVATE
|
1212
|
+
g_get_real_name_utf8
|
1213
|
+
g_get_system_config_dirs
|
1214
|
+
g_get_system_data_dirs
|
1215
|
+
g_win32_get_system_data_dirs_for_module
|
1216
|
+
g_get_tmp_dir PRIVATE
|
1217
|
+
g_get_tmp_dir_utf8
|
1218
|
+
g_get_user_cache_dir
|
1219
|
+
g_get_user_config_dir
|
1220
|
+
g_get_user_data_dir
|
1221
|
+
g_reload_user_special_dirs_cache
|
1222
|
+
g_get_user_special_dir
|
1223
|
+
g_get_user_name PRIVATE
|
1224
|
+
g_get_user_name_utf8
|
1225
|
+
glib_check_version
|
1226
|
+
g_nullify_pointer
|
1227
|
+
g_parse_debug_string
|
1228
|
+
g_path_get_basename
|
1229
|
+
g_path_get_dirname
|
1230
|
+
g_path_is_absolute
|
1231
|
+
g_path_skip_root
|
1232
|
+
g_set_application_name
|
1233
|
+
g_set_prgname
|
1234
|
+
g_bit_nth_lsf
|
1235
|
+
g_bit_nth_msf
|
1236
|
+
g_bit_storage
|
1237
|
+
g_trash_stack_height
|
1238
|
+
g_trash_stack_peek
|
1239
|
+
g_trash_stack_pop
|
1240
|
+
g_trash_stack_push
|
1241
|
+
g_get_codeset
|
1242
|
+
g_regex_error_quark
|
1243
|
+
g_regex_new
|
1244
|
+
g_regex_ref
|
1245
|
+
g_regex_unref
|
1246
|
+
g_regex_get_pattern
|
1247
|
+
g_regex_get_max_backref
|
1248
|
+
g_regex_get_capture_count
|
1249
|
+
g_regex_get_string_number
|
1250
|
+
g_regex_get_compile_flags
|
1251
|
+
g_regex_get_match_flags
|
1252
|
+
g_regex_escape_string
|
1253
|
+
g_regex_match_simple
|
1254
|
+
g_regex_match
|
1255
|
+
g_regex_match_full
|
1256
|
+
g_regex_match_all
|
1257
|
+
g_regex_match_all_full
|
1258
|
+
g_regex_split_simple
|
1259
|
+
g_regex_split
|
1260
|
+
g_regex_split_full
|
1261
|
+
g_regex_replace
|
1262
|
+
g_regex_replace_literal
|
1263
|
+
g_regex_replace_eval
|
1264
|
+
g_regex_check_replacement
|
1265
|
+
g_match_info_get_regex
|
1266
|
+
g_match_info_get_string
|
1267
|
+
g_match_info_free
|
1268
|
+
g_match_info_next
|
1269
|
+
g_match_info_matches
|
1270
|
+
g_match_info_get_match_count
|
1271
|
+
g_match_info_is_partial_match
|
1272
|
+
g_match_info_expand_references
|
1273
|
+
g_match_info_fetch
|
1274
|
+
g_match_info_fetch_pos
|
1275
|
+
g_match_info_fetch_named
|
1276
|
+
g_match_info_fetch_named_pos
|
1277
|
+
g_match_info_fetch_all
|
1278
|
+
g_variant_type_string_is_valid
|
1279
|
+
g_variant_type_string_scan
|
1280
|
+
g_variant_type_free
|
1281
|
+
g_variant_type_copy
|
1282
|
+
g_variant_type_new
|
1283
|
+
g_variant_type_get_string_length
|
1284
|
+
g_variant_type_peek_string
|
1285
|
+
g_variant_type_dup_string
|
1286
|
+
g_variant_type_is_definite
|
1287
|
+
g_variant_type_is_container
|
1288
|
+
g_variant_type_is_basic
|
1289
|
+
g_variant_type_is_maybe
|
1290
|
+
g_variant_type_is_array
|
1291
|
+
g_variant_type_is_tuple
|
1292
|
+
g_variant_type_is_dict_entry
|
1293
|
+
g_variant_type_is_variant
|
1294
|
+
g_variant_type_hash
|
1295
|
+
g_variant_type_equal
|
1296
|
+
g_variant_type_is_subtype_of
|
1297
|
+
g_variant_type_element
|
1298
|
+
g_variant_type_first
|
1299
|
+
g_variant_type_next
|
1300
|
+
g_variant_type_n_items
|
1301
|
+
g_variant_type_key
|
1302
|
+
g_variant_type_value
|
1303
|
+
g_variant_type_new_array
|
1304
|
+
g_variant_type_new_maybe
|
1305
|
+
g_variant_type_new_tuple
|
1306
|
+
g_variant_type_new_dict_entry
|
1307
|
+
g_variant_type_checked_
|
1308
|
+
g_variant_unref
|
1309
|
+
g_variant_ref
|
1310
|
+
g_variant_ref_sink
|
1311
|
+
g_variant_is_floating
|
1312
|
+
g_variant_n_children
|
1313
|
+
g_variant_get_child_value
|
1314
|
+
g_variant_get_size
|
1315
|
+
g_variant_get_data
|
1316
|
+
g_variant_store
|
1317
|
+
g_variant_is_normal_form
|
1318
|
+
g_variant_get_type
|
1319
|
+
g_variant_get_type_string
|
1320
|
+
g_variant_is_of_type
|
1321
|
+
g_variant_is_container
|
1322
|
+
g_variant_classify
|
1323
|
+
g_variant_compare
|
1324
|
+
g_variant_new_boolean
|
1325
|
+
g_variant_new_byte
|
1326
|
+
g_variant_new_int16
|
1327
|
+
g_variant_new_uint16
|
1328
|
+
g_variant_new_int32
|
1329
|
+
g_variant_new_uint32
|
1330
|
+
g_variant_new_int64
|
1331
|
+
g_variant_new_uint64
|
1332
|
+
g_variant_new_handle
|
1333
|
+
g_variant_new_double
|
1334
|
+
g_variant_new_string
|
1335
|
+
g_variant_new_object_path
|
1336
|
+
g_variant_is_object_path
|
1337
|
+
g_variant_new_signature
|
1338
|
+
g_variant_is_signature
|
1339
|
+
g_variant_new_variant
|
1340
|
+
g_variant_new_strv
|
1341
|
+
g_variant_new_bytestring
|
1342
|
+
g_variant_new_bytestring_array
|
1343
|
+
g_variant_get_boolean
|
1344
|
+
g_variant_get_byte
|
1345
|
+
g_variant_get_int16
|
1346
|
+
g_variant_get_uint16
|
1347
|
+
g_variant_get_int32
|
1348
|
+
g_variant_get_uint32
|
1349
|
+
g_variant_get_int64
|
1350
|
+
g_variant_get_uint64
|
1351
|
+
g_variant_get_handle
|
1352
|
+
g_variant_get_double
|
1353
|
+
g_variant_get_string
|
1354
|
+
g_variant_dup_string
|
1355
|
+
g_variant_get_variant
|
1356
|
+
g_variant_get_strv
|
1357
|
+
g_variant_dup_strv
|
1358
|
+
g_variant_get_bytestring
|
1359
|
+
g_variant_dup_bytestring
|
1360
|
+
g_variant_get_bytestring_array
|
1361
|
+
g_variant_dup_bytestring_array
|
1362
|
+
g_variant_new_maybe
|
1363
|
+
g_variant_new_array
|
1364
|
+
g_variant_new_tuple
|
1365
|
+
g_variant_new_dict_entry
|
1366
|
+
g_variant_get_maybe
|
1367
|
+
g_variant_get_fixed_array
|
1368
|
+
g_variant_print
|
1369
|
+
g_variant_print_string
|
1370
|
+
g_variant_hash
|
1371
|
+
g_variant_equal
|
1372
|
+
g_variant_iter_copy
|
1373
|
+
g_variant_iter_free
|
1374
|
+
g_variant_iter_init
|
1375
|
+
g_variant_iter_n_children
|
1376
|
+
g_variant_iter_new
|
1377
|
+
g_variant_iter_next_value
|
1378
|
+
g_variant_builder_add_value
|
1379
|
+
g_variant_builder_init
|
1380
|
+
g_variant_builder_clear
|
1381
|
+
g_variant_builder_open
|
1382
|
+
g_variant_builder_close
|
1383
|
+
g_variant_builder_end
|
1384
|
+
g_variant_builder_new
|
1385
|
+
g_variant_builder_unref
|
1386
|
+
g_variant_builder_ref
|
1387
|
+
g_variant_new_va
|
1388
|
+
g_variant_get_va
|
1389
|
+
g_variant_new
|
1390
|
+
g_variant_get
|
1391
|
+
g_variant_builder_add
|
1392
|
+
g_variant_get_child
|
1393
|
+
g_variant_iter_next
|
1394
|
+
g_variant_iter_loop
|
1395
|
+
g_variant_new_from_data
|
1396
|
+
g_variant_get_normal_form
|
1397
|
+
g_variant_byteswap
|
1398
|
+
g_variant_new_parsed
|
1399
|
+
g_variant_new_parsed_va
|
1400
|
+
g_variant_builder_add_parsed
|
1401
|
+
g_variant_parse
|
1402
|
+
g_variant_parser_get_error_quark
|
1403
|
+
g_variant_type_info_get_type_string
|
1404
|
+
g_variant_type_info_query
|
1405
|
+
g_variant_type_info_element
|
1406
|
+
g_variant_type_info_query_element
|
1407
|
+
g_variant_type_info_n_members
|
1408
|
+
g_variant_type_info_member_info
|
1409
|
+
g_variant_type_info_get
|
1410
|
+
g_variant_type_info_ref
|
1411
|
+
g_variant_type_info_unref
|
1412
|
+
g_variant_type_info_assert_no_infos
|
1413
|
+
g_variant_serialised_byteswap
|
1414
|
+
g_variant_serialised_get_child
|
1415
|
+
g_variant_serialised_is_normal
|
1416
|
+
g_variant_serialised_n_children
|
1417
|
+
g_variant_serialiser_is_object_path
|
1418
|
+
g_variant_serialiser_is_signature
|
1419
|
+
g_variant_serialiser_is_string
|
1420
|
+
g_variant_serialiser_needed_size
|
1421
|
+
g_variant_serialiser_serialise
|
1422
|
+
g_variant_format_string_scan_type
|
1423
|
+
g_variant_format_string_scan
|
1424
|
+
g_win32_error_message
|
1425
|
+
g_win32_ftruncate
|
1426
|
+
g_win32_get_package_installation_directory_of_module
|
1427
|
+
g_win32_get_package_installation_directory PRIVATE
|
1428
|
+
g_win32_get_package_installation_directory_utf8
|
1429
|
+
g_win32_get_package_installation_subdirectory PRIVATE
|
1430
|
+
g_win32_get_package_installation_subdirectory_utf8
|
1431
|
+
g_win32_get_windows_version
|
1432
|
+
g_win32_getlocale
|
1433
|
+
g_win32_locale_filename_from_utf8
|
1434
|
+
g_hostname_is_non_ascii
|
1435
|
+
g_hostname_is_ascii_encoded
|
1436
|
+
g_hostname_is_ip_address
|
1437
|
+
g_hostname_to_ascii
|
1438
|
+
g_hostname_to_unicode
|
1439
|
+
g_ascii_table
|
1440
|
+
g_utf8_skip
|
1441
|
+
g_idle_funcs
|
1442
|
+
g_timeout_funcs
|
1443
|
+
g_io_watch_funcs
|
1444
|
+
g_child_watch_funcs
|
1445
|
+
glib_binary_age
|
1446
|
+
glib_interface_age
|
1447
|
+
glib_major_version
|
1448
|
+
glib_mem_profiler_table
|
1449
|
+
glib_micro_version
|
1450
|
+
glib_minor_version
|
1451
|
+
glib_on_error_halt
|
1452
|
+
g_mem_gc_friendly
|