Home
last modified time | relevance | path

Searched full:sphinx (Results 1 – 25 of 133) sorted by relevance

123456

/third_party/libbpf/docs/
Dconf.py3 # Configuration file for the Sphinx documentation builder.
7 # https://www.sphinx-doc.org/en/master/usage/configuration.html
15 'sphinx.ext.autodoc',
16 'sphinx.ext.doctest',
17 'sphinx.ext.mathjax',
18 'sphinx.ext.viewcode',
19 'sphinx.ext.imgmath',
20 'sphinx.ext.todo',
32 subprocess.call('cd sphinx ; make clean', shell=True)
33 subprocess.call('cd sphinx/doxygen ; doxygen', shell=True)
[all …]
/third_party/python/Doc/
Dmake.bat13 %PYTHON% -c "import sphinx" > nul 2> nul
15 echo Installing sphinx with %PYTHON%
16 %PYTHON% -m pip install sphinx==2.2.0
19 set SPHINXBUILD=%PYTHON% -c "import sphinx.cmd.build, sys; sys.exit(sphinx.cmd.build.main())"
61 rem Targets that don't require sphinx-build
74 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
76 echo.to the full path of the 'sphinx-build' executable. Alternatively you
77 echo.may add the Sphinx directory to PATH.
79 echo.If you don't have Sphinx installed, grab it from
80 echo.http://sphinx-doc.org/
[all …]
Drequirements.txt3 # Sphinx version is pinned so that new versions that introduce new warnings
6 sphinx==3.2.1
7 # Docutils version is pinned to a version compatible with Sphinx
8 # version 3.2.1. It can be removed after bumping Sphinx version to at
Dconf.py16 extensions = ['sphinx.ext.coverage', 'sphinx.ext.doctest',
47 # Minimum version of sphinx required
61 # Avoid a warning with Sphinx >= 2.0
89 …# Defaults taken from https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_s…
233 # Sphinx 2 and Sphinx 3 compatibility
236 # bpo-40204: Allow Sphinx 2 syntax in the C domain
239 # bpo-40204: Disable warnings on Sphinx 2 syntax of the C domain since the
Dabout.rst6 These documents are generated from `reStructuredText`_ sources by `Sphinx`_, a
10 .. _Sphinx: http://sphinx-doc.org/
27 <http://effbot.org/zone/pyref.htm>`_ project from which Sphinx got many good
/third_party/protobuf/python/docs/
Dmake.bat5 REM Command file for Sphinx documentation
8 set SPHINXBUILD=sphinx-build
18 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
20 echo.to the full path of the 'sphinx-build' executable. Alternatively you
21 echo.may add the Sphinx directory to PATH.
23 echo.If you don't have Sphinx installed, grab it from
24 echo.http://sphinx-doc.org/
Dconf.py32 # Configuration file for the Sphinx documentation builder.
36 # http://www.sphinx-doc.org/en/master/config
63 # If your documentation needs a minimal Sphinx version, state it here.
67 # Add any Sphinx extension module names here, as strings. They can be
68 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
71 "sphinx.ext.autosummary",
72 "sphinx.ext.ifconfig",
73 "sphinx.ext.intersphinx",
74 "sphinx.ext.napoleon",
89 # The language for content autogenerated by Sphinx. Refer to documentation
[all …]
/third_party/mesa3d/docs/_exts/
Dnir.py26 import sphinx
27 from sphinx.directives import SphinxDirective
28 from sphinx.domains import Domain
29 from sphinx.util.nodes import make_refnode
83 desc = sphinx.addnodes.desc(domain='nir', objtype='aluop')
86 sig = sphinx.addnodes.desc_signature()
88 sig += sphinx.addnodes.desc_name(op.name, op.name)
90 params = sphinx.addnodes.desc_parameterlist()
93 params += sphinx.addnodes.desc_parameter('', 'src' + str(i))
96 sig += sphinx.addnodes.desc_returns('',
[all …]
Dformatting.py2 # Sphinx extension providing formatting for Gallium-specific data
7 import sphinx.addnodes
14 signode += sphinx.addnodes.desc_name(envvar, envvar)
16 signode += sphinx.addnodes.desc_type(t, t)
18 signode += sphinx.addnodes.desc_annotation(default, default)
25 signode += sphinx.addnodes.desc_name(opcode, opcode)
26 signode += sphinx.addnodes.desc_annotation(desc, desc)
/third_party/libinput/doc/user/
Dconf.py.in3 # Configuration file for the Sphinx documentation builder.
7 # http://www.sphinx-doc.org/en/stable/config
35 # If your documentation needs a minimal Sphinx version, state it here.
39 # Add any Sphinx extension module names here, as strings. They can be
40 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
43 'sphinx.ext.mathjax',
44 'sphinx.ext.graphviz',
45 'sphinx.ext.extlinks',
60 # The language for content autogenerated by Sphinx. Refer to documentation
73 pygments_style = 'sphinx'
[all …]
Dmeson.build1 # Sphinx build
2 sphinx = find_program('sphinx-build-3', 'sphinx-build', required : false) variable
3 if not sphinx.found()
4 …error('Program "sphinx-build" not found or not executable. Try building with -Ddocumentation=false…
29 # The switch to sphinx caused a few pages to be renamed, sphinx uses
36 # File list is: [current-sphinx-input-file, old-generated-page]
207 custom_target('sphinx', custom
210 command : [ sphinx, '-q', '-b', 'html',
/third_party/python/Doc/tools/extensions/
Dpyspecific.py6 Sphinx extension with Python doc-specific markup.
23 from sphinx import addnodes
24 from sphinx.builders import Builder
26 from sphinx.errors import NoUri
28 from sphinx.environment import NoUri
29 from sphinx.locale import translators
30 from sphinx.util import status_iterator, logging
31 from sphinx.util.nodes import split_explicit_title
32 from sphinx.writers.text import TextWriter, TextTranslator
33 from sphinx.writers.latex import LaTeXTranslator
[all …]
/third_party/libabigail/doc/manuals/
Dconf.py4 # sphinx-quickstart on Fri Sep 26 09:50:31 2014.
23 # If your documentation needs a minimal Sphinx version, state it here.
26 # Add any Sphinx extension module names here, as strings. They can be extensions
27 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
55 # The language for content autogenerated by Sphinx. Refer to documentation
84 pygments_style = 'sphinx'
104 # The name for this set of Sphinx documents. If None, it defaults to
152 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
280 # HTML files that should be inserted before the pages created by sphinx.
284 # HTML files shat should be inserted after the pages created by sphinx.
/third_party/nghttp2/doc/
DREADME.rst4 The documentation of nghttp2 is generated using Sphinx. This
5 directory contains the source files to be processed by Sphinx. The
18 ``mkapiref.py`` and then run Sphinx to build the entire document.
38 In Sphinx doc, usually the function argument is formatted like
43 Note that this shadows the substitution feature of Sphinx.
85 At the time of this writing, Sphinx does not support enum type. So we
89 Sphinx will support enum officially, we can replace ``:enum:`` with
Dconf.py.in27 # sphinx-quickstart on Sun Mar 11 22:57:49 2012.
48 # If your documentation needs a minimal Sphinx version, state it here.
51 # Add any Sphinx extension module names here, as strings. They can be extensions
52 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
80 # The language for content autogenerated by Sphinx. Refer to documentation
113 pygments_style = 'sphinx'
133 # The name for this set of Sphinx documents. If None, it defaults to
185 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
/third_party/libuv/docs/src/
Dconf.py4 # sphinx-quickstart on Sun Jul 27 11:47:51 2014.
41 sys.path.insert(0, os.path.abspath('sphinx-plugins'))
45 # If your documentation needs a minimal Sphinx version, state it here.
48 # Add any Sphinx extension module names here, as strings. They can be
49 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
78 # The language for content autogenerated by Sphinx. Refer to documentation
108 pygments_style = 'sphinx'
131 # The name for this set of Sphinx documents. If None, it defaults to
184 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
318 # HTML files that should be inserted before the pages created by sphinx.
[all …]
/third_party/mesa3d/docs/
Dconf.py8 # sphinx-quickstart on Wed Mar 29 14:08:51 2017.
34 # If your documentation needs a minimal Sphinx version, state it here.
38 # Add any Sphinx extension module names here, as strings. They can be
39 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
41 extensions = ['sphinx.ext.graphviz', 'breathe', 'formatting', 'nir', 'redirects']
72 # The language for content autogenerated by Sphinx. Refer to documentation
85 pygments_style = 'sphinx'
/third_party/libuv/docs/
Dmake.bat3 REM Command file for Sphinx documentation
6 set SPHINXBUILD=sphinx-build
54 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
56 echo.to the full path of the 'sphinx-build' executable. Alternatively you
57 echo.may add the Sphinx directory to PATH.
59 echo.If you don't have Sphinx installed, grab it from
60 echo.http://sphinx-doc.org/
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/docs/
DMakefile.sphinx1 # Makefile for Sphinx documentation
2 # Ported from llvm/docs/Makefile.sphinx
3 # Requires sphinx-build which may come preinstalled on your system.
5 # you can get it from http://www.sphinx-doc.org/ .
7 # apt-get install python-sphinx
11 SPHINXBUILD = mkdir -p $(BUILDDIR) && sphinx-build
13 BUILDDIR = ../build/sphinx
Dconf.py23 # If your documentation needs a minimal Sphinx version, state it here.
26 # Add any Sphinx extension module names here, as strings. They can be extensions
27 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
28 extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo']
55 # The language for content autogenerated by Sphinx. Refer to documentation
104 # The name for this set of Sphinx documents. If None, it defaults to
152 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
/third_party/ltp/tools/sparse/sparse-src/Documentation/
Dconf.py26 # Add any Sphinx extension module names here, as strings. They can be
27 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
29 sys.path.insert(0, os.path.abspath('sphinx'))
76 # The language for content autogenerated by Sphinx. Refer to documentation
89 pygments_style = 'sphinx'
116 html_static_path = ['sphinx/static']
DMakefile1 # Minimal makefile for Sphinx documentation
6 SPHINXBUILD = sphinx-build
19 # route all targets to Sphinx using the new "make mode" option.
Ddoc-guide.rst12 Sparse uses `Sphinx`_ to format this documentation in several formats,
23 .. _Sphinx: http://www.sphinx-doc.org/
120 .. c:autodoc:: Documentation/sphinx/cdoc.py
155 .. c:autodoc:: Documentation/sphinx/ir.py
/third_party/libbpf/
D.readthedocs.yaml8 # Build documentation in the docs/ directory with Sphinx
9 sphinx:
22 - requirements: docs/sphinx/requirements.txt
/third_party/nghttp2/doc/_exts/rubydomain/
Drubydomain.py3 sphinx.domains.ruby
18 from sphinx import addnodes
19 from sphinx import version_info
20 from sphinx.roles import XRefRole
21 from sphinx.locale import _
22 from sphinx.domains import Domain, ObjType, Index
23 from sphinx.directives import ObjectDescription
24 from sphinx.util.nodes import make_refnode
25 from sphinx.util.docfields import Field, GroupedField, TypedField
424 # Sphinx 1.4 introduced backward incompatible changes, it now
[all …]

123456