Sha256: 7e8277d9cbe529993aa0c7c1a81f8746536e27470bb41f62dccc0a740e5a98bd

Contents?: true

Size: 1.62 KB

Versions: 67

Compression:

Stored size: 1.62 KB

Contents

<%inherit file="/base.tmpl"/>
<%block name="info">
    ${formatter.format_xref(node.parent, type="guide", group=page_kind)}
    <api:function>
      <api:returns>
        <api:type>${formatter.format_type(node.retval.type) | x}</api:type>
      </api:returns>
      <api:name>${formatter.format_function_name(node)}</api:name>
% for arg in formatter.get_in_parameters(node):
% if arg.type.ctype == '<varargs>':
      <api:varargs/>
% else:
      <api:arg>
        <api:type>${formatter.format_type(arg.type) | x}</api:type>
        <api:name>${formatter.format_parameter_name(node, arg)}</api:name>
      </api:arg>
% endif
% endfor
    </api:function>
</%block>
<%block name="synopsis">
  <synopsis><code mime="text/x-csrc">
${node.retval.type.ctype} ${formatter.format_function_name(node)} (\
% if not formatter.get_in_parameters(node):
void\
% else:
% for ix, arg in enumerate(formatter.get_in_parameters(node)):
% if ix != 0:
${' ' * (len(formatter.format_type(node.retval.type)) + len(formatter.format_function_name(node)) + 3)}\
% endif
% if arg.type.ctype == '<varargs>':
...\
% else:
${formatter.format_type(arg.type) | x} ${arg.argname}\
% endif
% if ix != len(formatter.get_in_parameters(node)) - 1:
,
% endif
% endfor
% endif
);
  </code></synopsis></%block>
<%block name="details">
% if formatter.get_in_parameters(node) or node.retval:
<terms>
% for arg in formatter.get_in_parameters(node):
<item>
<title><code>${arg.argname}</code></title>
${formatter.format(node, arg.doc)}
</item>
% endfor
% if node.retval:
<item>
<title><code>Returns</code></title>
${formatter.format(node, node.retval.doc)}
</item>
% endif
</terms>
% endif
</%block>

Version data entries

67 entries across 67 versions & 1 rubygems

Version Path
gobject-introspection-3.2.9-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.9-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.8-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.8-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.7-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.7-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.6-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.6-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.5-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.5-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.4-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.4-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.3-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.3-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.2-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.2-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.1-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.1-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.0-x64-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
gobject-introspection-3.2.0-x86-mingw32 vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl