| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | IntroductionToTheClangAST.rst | 26 `Doxygen <https://clang.llvm.org/doxygen>`_. The doxygen online 29 the doxygen of the class you're looking for (for example, search for: 70 declaration <https://clang.llvm.org/doxygen/classclang_1_1TranslationUnitDecl.html>`_. 72 declaration <https://clang.llvm.org/doxygen/classclang_1_1FunctionDecl.html>`_ 74 statement <https://clang.llvm.org/doxygen/classclang_1_1CompoundStmt.html>`_, 76 statement <https://clang.llvm.org/doxygen/classclang_1_1DeclStmt.html>`_ 78 statement <https://clang.llvm.org/doxygen/classclang_1_1ReturnStmt.html>`_. 85 `ASTContext <https://clang.llvm.org/doxygen/classclang_1_1ASTContext.html>`_. 87 `getTranslationUnitDecl <https://clang.llvm.org/doxygen/classclang_1_1ASTContext.html#abd909fb01ef1… 89 identifiers <https://clang.llvm.org/doxygen/classclang_1_1ASTContext.html#a4f95adb9958e22fbe55212ae… [all …]
|
| H A D | CMakeLists.txt | 25 # If asked, configure doxygen for the creation of a Qt Compressed Help file. 51 "Use svg instead of png files for doxygen graphs." OFF) 58 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/doxygen.cfg.in 59 ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg @ONLY) 77 add_custom_target(doxygen-clang 78 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg 80 COMMENT "Generating clang doxygen documentation." VERBATIM) 83 add_dependencies(doxygen doxygen-clang) 87 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doxygen/html
|
| H A D | doxygen.cfg.in | 4 # doxygen (www.doxygen.org) for a project. 58 # entered, it will be relative to the location where doxygen was started. If 61 OUTPUT_DIRECTORY = @abs_builddir@/doxygen 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 66 # option can be useful when feeding doxygen a huge amount of source files, where 74 # documentation generated by doxygen is written. Doxygen will use this 88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member 95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief 116 # doxygen will generate a detailed section even if there is only a brief 122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all [all …]
|
| H A D | doxygen-mainpage.dox | 13 /// This documentation is generated directly from the source code with doxygen.
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/ |
| H A D | Makefile.am | 50 doxygen: target 53 /bin/sh ${srcdir}/docs/doxygen/run_doxygen \ 56 doxygen-maint: 59 /bin/sh ${srcdir}/docs/doxygen/run_doxygen \ 62 doxygen-man: 65 /bin/sh ${srcdir}/docs/doxygen/run_doxygen \ 68 .PHONY: doxygen doxygen-maint doxygen-man
|
| H A D | Makefile.in | 501 doxygen: 504 /bin/sh ${srcdir}/docs/doxygen/run_doxygen \ 507 doxygen-maint: 510 /bin/sh ${srcdir}/docs/doxygen/run_doxygen \ 513 doxygen-man: 516 /bin/sh ${srcdir}/docs/doxygen/run_doxygen \ 519 .PHONY: doxygen doxygen-maint doxygen-man
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | CMakeLists.txt | 25 # If asked, configure doxygen for the creation of a Qt Compressed Help file. 60 "Use svg instead of png files for doxygen graphs." OFF) 67 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/doxygen.cfg.in 68 ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg @ONLY) 86 add_custom_target(doxygen-llvm 87 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg 89 COMMENT "Generating llvm doxygen documentation." VERBATIM) 92 add_dependencies(doxygen doxygen-llvm) 98 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doxygen/html/. 99 COMPONENT doxygen-html
|
| H A D | doxygen.cfg.in | 4 # doxygen (www.doxygen.org) for a project. 58 # entered, it will be relative to the location where doxygen was started. If 61 OUTPUT_DIRECTORY = @abs_top_builddir@/doxygen 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 66 # option can be useful when feeding doxygen a huge amount of source files, where 74 # documentation generated by doxygen is written. Doxygen will use this 88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member 95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief 116 # doxygen will generate a detailed section even if there is only a brief 122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all [all …]
|
| H A D | README.txt | 59 Install doxygen <https://www.doxygen.nl/download.html> and dot2tex <https://dot2tex.readthedocs.io/… 63 make doxygen-llvm # for LLVM docs 64 make doxygen-clang # for clang docs 68 <build-dir>/docs/doxygen/html # for LLVM docs 69 <build-dir>/tools/clang/docs/doxygen/html # for clang docs
|
| H A D | ProgrammersManual.rst | 26 do something, but it's not listed, check the source. Links to the `doxygen 27 <https://llvm.org/doxygen/>`__ sources are provided to make this as easy as 34 traversal routines, and useful utilities like the ``InstVisitor`` (`doxygen 35 <https://llvm.org/doxygen/InstVisitor_8h_source.html>`__) template. 110 templates are defined in the ``llvm/Support/Casting.h`` (`doxygen 111 <https://llvm.org/doxygen/Casting_8h_source.html>`__) file (note that you very 233 the ``str`` member function. See ``llvm/ADT/StringRef.h`` (`doxygen 234 <https://llvm.org/doxygen/StringRef_8h_source.html>`__) for more 246 The ``Twine`` (`doxygen <https://llvm.org/doxygen/classllvm_1_1Twine.html>`__) 263 concatenation. See ``llvm/ADT/Twine.h`` (`doxygen [all …]
|
| H A D | doxygen-mainpage.dox | 12 /// This documentation is generated directly from the source code with doxygen.
|
| /openbsd-src/gnu/llvm/llvm/utils/release/ |
| H A D | build-docs.sh | 45 mv $builddir/$proj_dir/docs/doxygen/html $output 108 doxygen-clang \ 109 doxygen-clang-tools \ 110 doxygen-flang \ 111 doxygen-llvm \ 112 doxygen-mlir \ 113 doxygen-polly
|
| /openbsd-src/usr.sbin/unbound/doc/ |
| H A D | unbound.doxygen | 4 # doxygen (www.doxygen.org) for a project. 18 # Use doxygen to compare the used configuration file with the template 20 # doxygen -x [configFile] 21 # Use doxygen to compare the used configuration file with the template 24 # doxygen -x_noenv [configFile] 68 # entered, it will be relative to the location where doxygen was started. If 73 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 76 # option can be useful when feeding doxygen a huge amount of source files, where 95 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 104 # documentation generated by doxygen is written. Doxygen will use this [all …]
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/docs/doxygen/ |
| H A D | run_doxygen | 13 doxygen= 30 doxygen="$maybedoxy" 35 if test -z "$doxygen"; then 220 g++ ${srcdir}/docs/doxygen/stdheader.cc -o ./stdheader 256 cp ${srcdir}/docs/doxygen/Intro.3 C++Intro.3
|
| H A D | user.cfg.in | 4 # doxygen (www.doxygen.org) for a project 13 ### When doxygen is run, the current directory is the top of the 38 # where doxygen was started. If left blank the current directory will be used. 43 # documentation generated by doxygen is written. Doxygen will use this 53 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 125 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited 161 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 219 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 227 # tag is set to YES, then doxygen will reuse the documentation of the first 269 ALIASES = "doctodo=@todo\nDoc me! See docs/doxygen/TODO and http://gcc.gnu.org/ml/l… [all …]
|
| H A D | TODO | 13 for examples of this. Doing so will at least cause doxygen to consider the 18 Area Still needs to be doxygen-documented 41 backward/* Not scanned by doxygen. Should it be? Doubtful. 54 do not have the C code (to which the doxygen comments would be attached), 59 use doxygen hooks like @pre and @see to reference the tables. Then the
|
| H A D | filter.sed | 1 # Input filter for doxygen.
|
| /openbsd-src/gnu/gcc/libstdc++-v3/docs/doxygen/ |
| H A D | run_doxygen | 18 local testing_version doxygen maybedoxy v_found 30 doxygen="$maybedoxy" 35 if test -z "$doxygen"; then 247 g++ ${srcdir}/docs/doxygen/stdheader.cc -o ./stdheader 282 cp ${srcdir}/docs/doxygen/Intro.3 C++Intro.3
|
| H A D | TODO | 13 for examples of this. Doing so will at least cause doxygen to consider the 18 Area Still needs to be doxygen-documented 39 backward/* Not scanned by doxygen. Should it be? Doubtful. 52 do not have the C code (to which the doxygen comments would be attached), 57 use doxygen hooks like @pre and @see to reference the tables. Then the
|
| H A D | user.cfg.in | 4 # doxygen (www.doxygen.org) for a project 31 # where doxygen was started. If left blank the current directory will be used. 35 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 38 # Enabling this option can be useful when feeding doxygen a huge amount of 45 # documentation generated by doxygen is written. Doxygen will use this 100 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show 118 # If left blank the directory from which doxygen is run is used as the 132 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 167 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 185 ALIASES = "doctodo=@todo\nDoc me! See docs/doxygen/TODO and http://gcc.gnu.org/ml/l… [all …]
|
| /openbsd-src/gnu/llvm/lldb/docs/ |
| H A D | doxygen.cfg.in | 4 # doxygen (www.doxygen.org) for a project 39 # where doxygen was started. If left blank the current directory will be used. 43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 46 # Enabling this option can be useful when feeding doxygen a huge amount of 53 # documentation generated by doxygen is written. Doxygen will use this 97 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 114 # If left blank the directory from which doxygen is run is used as the 128 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 164 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 214 # is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, [all …]
|
| H A D | CMakeLists.txt | 8 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/doxygen.cfg.in 9 ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg @ONLY) 12 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg
|
| H A D | doxygen-mainpage.dox | 12 /// This documentation is generated directly from the source code with doxygen.
|
| /openbsd-src/gnu/llvm/lldb/docs/resources/ |
| H A D | contributing.rst | 46 <https://llvm.org/doxygen/classllvm_1_1Expected.html>`_ or 48 <https://llvm.org/doxygen/classllvm_1_1Optional.html>`_ should be 80 <https://llvm.org/doxygen/Support_2ErrorHandling_8h.html>`_ for
|
| /openbsd-src/gnu/llvm/clang/www/ |
| H A D | menu.html.incl | 47 <a href="http://clang.llvm.org/doxygen/">doxygen</a>
|