diff --git a/example/external/url/mrdocs.yml b/example/external/url/mrdocs.yml index 7e8603de00..a3d27a41fc 100644 --- a/example/external/url/mrdocs.yml +++ b/example/external/url/mrdocs.yml @@ -30,6 +30,9 @@ see-below: - 'boost::urls::grammar::see_below' - 'boost::urls::string_token::see_below' +# Metadata Extraction +private-bases: false + # Generator generate: adoc base-url: https://www.github.com/boostorg/url/blob/develop/include/ # boost/url/url_view.hpp diff --git a/share/mrdocs/addons/generator/adoc/partials/markup/h.adoc.hbs b/share/mrdocs/addons/generator/adoc/partials/markup/h.adoc.hbs index 3db75e008c..e9cb664e30 100644 --- a/share/mrdocs/addons/generator/adoc/partials/markup/h.adoc.hbs +++ b/share/mrdocs/addons/generator/adoc/partials/markup/h.adoc.hbs @@ -1,3 +1,3 @@ {{#if id}}[#{{{id}}}] {{/if}} -={{{select level (repeat "=" level) (select @root.config.multipage "==" "=")}}} {{> @partial-block }} \ No newline at end of file +={{{select level (repeat "=" level) (select @root.config.multipage "==" "=")}}} {{> @partial-block }} diff --git a/share/mrdocs/addons/generator/common/partials/symbol/detail/members-table-row.hbs b/share/mrdocs/addons/generator/common/partials/symbol/detail/members-table-row.hbs index 0626553d98..7c8bfcf716 100644 --- a/share/mrdocs/addons/generator/common/partials/symbol/detail/members-table-row.hbs +++ b/share/mrdocs/addons/generator/common/partials/symbol/detail/members-table-row.hbs @@ -4,6 +4,7 @@ {{! Member name, linked to its documentation }} {{#>markup/a href=url}}{{#>markup/code}}{{>symbol/name . nolink=true}}{{/markup/code}}{{/markup/a}} {{>symbol/special-function-suffix .}} {{~/markup/td}} +{{#if (eq includeBrief true)}} {{#>markup/td}} {{#if (ne kind "overloads")~}} {{{~doc.brief}}} @@ -11,6 +12,7 @@ {{#each (unique (pluck (pluck members "doc") "brief"))~}} {{{.}}} {{/each~}} +{{/if~}} +{{~/markup/td~}} {{/if}} -{{~/markup/td}} {{~/markup/tr}} \ No newline at end of file diff --git a/share/mrdocs/addons/generator/common/partials/symbol/members-table.hbs b/share/mrdocs/addons/generator/common/partials/symbol/members-table.hbs index 87eb259a8f..86e5d41d73 100644 --- a/share/mrdocs/addons/generator/common/partials/symbol/members-table.hbs +++ b/share/mrdocs/addons/generator/common/partials/symbol/members-table.hbs @@ -13,6 +13,7 @@ --}} {{#if (any_of_by members "isRegular" "isSeeBelow")}} {{#>markup/h level=(select @root.config.multipage 1 2)}}{{title}}{{/markup/h}} +{{#if (any_of_by members "doc")}} {{#>markup/table cols=2}} {{#>markup/thead}} {{#>markup/tr~}} @@ -22,8 +23,22 @@ {{/markup/thead}} {{#>markup/tbody}} {{#each (filter_by (sort_by members "name") "isRegular" "isSeeBelow")}} -{{> symbol/detail/members-table-row .}} +{{> symbol/detail/members-table-row . includeBrief=true}} {{/each}} {{/markup/tbody}} {{/markup/table}} +{{else}} +{{#>markup/table cols=1}} +{{#>markup/thead}} +{{#>markup/tr~}} +{{#>markup/th}}Name{{/markup/th}} +{{/markup/tr}} +{{/markup/thead}} +{{#>markup/tbody}} +{{#each (filter_by (sort_by members "name") "isRegular" "isSeeBelow")}} +{{> symbol/detail/members-table-row . includeBrief=false}} +{{/each}} +{{/markup/tbody}} +{{/markup/table}} +{{/if}} {{/if}} diff --git a/src/lib/AST/ASTVisitor.cpp b/src/lib/AST/ASTVisitor.cpp index c5442f0758..380b61c231 100644 --- a/src/lib/AST/ASTVisitor.cpp +++ b/src/lib/AST/ASTVisitor.cpp @@ -896,14 +896,14 @@ populate( // Extract direct bases. D->bases() will get the bases // from whichever declaration is the definition (if any) - if(D->hasDefinition()) + if(D->hasDefinition() && I.Bases.empty()) { for (const CXXBaseSpecifier& B : D->bases()) { AccessSpecifier const access = B.getAccessSpecifier(); if (!config_->privateBases && - access == AccessSpecifier::AS_private) + access == AS_private) { continue; } diff --git a/src/lib/Lib/TagfileWriter.cpp b/src/lib/Lib/TagfileWriter.cpp index f1ec7be081..6cdde33180 100644 --- a/src/lib/Lib/TagfileWriter.cpp +++ b/src/lib/Lib/TagfileWriter.cpp @@ -11,6 +11,7 @@ #include "../Gen/xml/CXXTags.hpp" #include "TagfileWriter.hpp" +#include "lib/Gen/hbs/VisitorHelpers.hpp" #include "lib/Lib/ConfigImpl.hpp" #include "lib/Support/RawOstream.hpp" @@ -92,6 +93,14 @@ void TagfileWriter:: operator()(T const& I) { + if constexpr (std::derived_from) + { + if (!hbs::shouldGenerate(I)) + { + return; + } + } + if constexpr (T::isNamespace()) { // Namespaces are compound elements with members @@ -119,12 +128,15 @@ writeNamespace( bool onlyNamespaces = true; corpus_->traverse(I, [&](Info const& I) { + if (!hbs::shouldGenerate(I)) + { + return; + } + if (I.Kind != InfoKind::Namespace) { onlyNamespaces = false; - return false; } - return true; }); // Write the compound element for this namespace @@ -138,8 +150,13 @@ writeNamespace( tags_.write("filename", generateFilename(I)); // Write the class-like members of this namespace - corpus_->traverse(I, [this](U const& J) + corpus_->orderedTraverse(I, [this](U const& J) { + if (!hbs::shouldGenerate(J)) + { + return; + } + if (!U::isNamespace() && !U::isFunction()) { tags_.write( @@ -150,7 +167,7 @@ writeNamespace( }); // Write the function-like members of this namespace - corpus_->traverse(I, [this](U const& J) + corpus_->orderedTraverse(I, [this](U const& J) { if constexpr (U::isFunction()) { @@ -162,7 +179,7 @@ writeNamespace( } // Write compound elements for the members of this namespace - corpus_->traverse(I, [this](U const& J) + corpus_->orderedTraverse(I, [this](U const& J) { this->operator()(J); }); @@ -183,7 +200,7 @@ writeClassLike( if constexpr (T::isRecord()) { // Write the function-like members of this record - corpus_->traverse(I, [this](U const& J) + corpus_->orderedTraverse(I, [this](U const& J) { if constexpr (U::isFunction()) { diff --git a/test-files/golden-tests/core/libcxx.adoc b/test-files/golden-tests/core/libcxx.adoc index 900f6d010f..101521c2b4 100644 --- a/test-files/golden-tests/core/libcxx.adoc +++ b/test-files/golden-tests/core/libcxx.adoc @@ -4,16 +4,17 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Functions + [cols=2] |=== | Name | Description @@ -29,15 +30,18 @@ == std + [#sqrt] == sqrt + Computes the square root of an integral value. === Synopsis + Declared in `<libcxx.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -49,6 +53,7 @@ sqrt(T value); === Description + This function calculates the square root of a given integral value using bit manipulation. @@ -56,6 +61,7 @@ given integral value using bit manipulation. === Exceptions + |=== | Name | Thrown on @@ -67,12 +73,14 @@ given integral value using bit manipulation. === Return Value + The square root of the input value. === Template Parameters + |=== | Name | Description @@ -84,6 +92,7 @@ The square root of the input value. === Parameters + |=== | Name | Description diff --git a/test-files/golden-tests/core/libcxx.html b/test-files/golden-tests/core/libcxx.html index 55deea010a..24a9912e0b 100644 --- a/test-files/golden-tests/core/libcxx.html +++ b/test-files/golden-tests/core/libcxx.html @@ -13,13 +13,12 @@

Namespaces

- + - +
NameDescriptionName
std -
std

Functions

diff --git a/test-files/golden-tests/core/utf-8.adoc b/test-files/golden-tests/core/utf-8.adoc index e782f4ba6f..e50c8bea3c 100644 --- a/test-files/golden-tests/core/utf-8.adoc +++ b/test-files/golden-tests/core/utf-8.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <<Христос_воскрес,`Христос_воскрес`>> -| - |=== [#Христос_воскрес] == Христос_воскрес + === Synopsis + Declared in `<utf‐8.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/core/utf-8.html b/test-files/golden-tests/core/utf-8.html index d53a0ecc8d..e4310be652 100644 --- a/test-files/golden-tests/core/utf-8.html +++ b/test-files/golden-tests/core/utf-8.html @@ -13,13 +13,12 @@

Functions

- + - +
NameDescriptionName
Христос_воскрес -
Христос_воскрес
diff --git a/test-files/golden-tests/filters/file/exclude-self.adoc b/test-files/golden-tests/filters/file/exclude-self.adoc index fb780877b6..3c1e9836f0 100644 --- a/test-files/golden-tests/filters/file/exclude-self.adoc +++ b/test-files/golden-tests/filters/file/exclude-self.adoc @@ -7,4 +7,5 @@ + [.small]#Created with https://www.mrdocs.com[MrDocs]# diff --git a/test-files/golden-tests/filters/file/include-self.adoc b/test-files/golden-tests/filters/file/include-self.adoc index ee63473d4c..cf452de34c 100644 --- a/test-files/golden-tests/filters/file/include-self.adoc +++ b/test-files/golden-tests/filters/file/include-self.adoc @@ -4,34 +4,36 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#TEST] == TEST + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#TEST-SUCCESS] == <>::SUCCESS + === Synopsis + Declared in `<include‐self.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/filters/file/include-self.html b/test-files/golden-tests/filters/file/include-self.html index 3a8c5b95d9..9b14ce6e66 100644 --- a/test-files/golden-tests/filters/file/include-self.html +++ b/test-files/golden-tests/filters/file/include-self.html @@ -13,13 +13,12 @@

Namespaces

- + - +
NameDescriptionName
TEST -
TEST
@@ -31,13 +30,12 @@

Types

- + - +
NameDescriptionName
SUCCESS -
SUCCESS
diff --git a/test-files/golden-tests/filters/symbol-name/blacklist_0.adoc b/test-files/golden-tests/filters/symbol-name/blacklist_0.adoc index 84d0552ace..539d343b95 100644 --- a/test-files/golden-tests/filters/symbol-name/blacklist_0.adoc +++ b/test-files/golden-tests/filters/symbol-name/blacklist_0.adoc @@ -4,43 +4,39 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#N0] == N0 + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N0-f0] == <>::f0 + === Synopsis + Declared in `<blacklist_0.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -53,40 +49,41 @@ f0(); == N3 + [#N4] == N4 + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#N4-N5] == <>::N5 + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N4-N5-f1] == <>::<>::f1 + === Synopsis + Declared in `<blacklist_0.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -98,21 +95,23 @@ f1(); [#N4-N6] == <>::N6 + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N4-N6-f1] == <>::<>::f1 + === Synopsis + Declared in `<blacklist_0.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -124,41 +123,42 @@ f1(); [#N7] == N7 + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#N7-N8] == <>::N8 + [#N7-N9] == <>::N9 + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N7-N9-g0] == <>::<>::g0 + === Synopsis + Declared in `<blacklist_0.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/filters/symbol-name/blacklist_0.html b/test-files/golden-tests/filters/symbol-name/blacklist_0.html index c53ad2fb78..c612f1c659 100644 --- a/test-files/golden-tests/filters/symbol-name/blacklist_0.html +++ b/test-files/golden-tests/filters/symbol-name/blacklist_0.html @@ -13,19 +13,15 @@

Namespaces

- + - - - - + + + +
NameDescriptionName
N0 -
N3 -
N4 -
N7 -
N0
N3
N4
N7
@@ -37,13 +33,12 @@

Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -76,15 +71,13 @@

Namespaces

- + - - + +
NameDescriptionName
N5 -
N6 -
N5
N6
@@ -96,13 +89,12 @@

Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -130,13 +122,12 @@

Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -164,15 +155,13 @@

Namespaces

- + - - + +
NameDescriptionName
N8 -
N9 -
N8
N9
@@ -189,13 +178,12 @@

Functions

- + - +
NameDescriptionName
g0 -
g0
diff --git a/test-files/golden-tests/filters/symbol-name/extraction-mode.adoc b/test-files/golden-tests/filters/symbol-name/extraction-mode.adoc index 421907e2e3..9ee98b3f6b 100644 --- a/test-files/golden-tests/filters/symbol-name/extraction-mode.adoc +++ b/test-files/golden-tests/filters/symbol-name/extraction-mode.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Namespaces + [cols=2] |=== | Name | Description @@ -21,6 +23,7 @@ |=== === Namespace Aliases + [cols=2] |=== | Name | Description @@ -42,6 +45,7 @@ |=== === Types + [cols=2] |=== | Name | Description @@ -58,6 +62,7 @@ |=== === Functions + [cols=2] |=== | Name | Description @@ -87,11 +92,13 @@ [#regular_ns] == regular_ns + A regular namespace with different filters for members === Types + [cols=2] |=== | Name | Description @@ -108,6 +115,7 @@ A regular namespace with different filters for members |=== === Functions + [cols=2] |=== | Name | Description @@ -137,12 +145,14 @@ A regular namespace with different filters for members [#regular_ns-regular] == <>::regular + A symbol that passes the filters === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -151,6 +161,7 @@ struct regular; ---- === Types + [cols=2] |=== | Name | Description @@ -166,6 +177,7 @@ struct regular; === Description + The symbol should have a page as usual @@ -173,12 +185,14 @@ The symbol should have a page as usual [#regular_ns-regular-also_regular] == <>::<>::also_regular + Child of a regular symbol extracted as regular === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -187,6 +201,7 @@ struct also_regular; ---- === Types + [cols=2] |=== | Name | Description @@ -203,12 +218,14 @@ struct also_regular; [#regular_ns-regular-also_regular-regular_as_well] == <>::<>::<>::regular_as_well + Grandchild of a regular symbol extracted as regular === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -222,12 +239,14 @@ struct regular_as_well; [#regular_ns-see_below] == <>::see_below + A symbol that passes the see‐below filter === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -240,6 +259,7 @@ struct see_below { /* see-below */ }; === Description + A symbol that passes the filters and the see‐below filter. The symbol should have a page as usual but, because it's a scope and not a namespace, the members should not be listed on that page. @@ -249,12 +269,14 @@ and not a namespace, the members should not be listed on that page. [#regular_ns-get_dependency] == <>::get_dependency + A function to get an excluded symbol === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -265,6 +287,7 @@ get_dependency(); === Description + When used in a function, only the symbol name should be shown. No links should be generated for this symbol. @@ -273,12 +296,14 @@ No links should be generated for this symbol. [#regular_ns-get_implementation_defined] == <>::get_implementation_defined + A function to get an implementation‐defined symbol === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -289,6 +314,7 @@ get_implementation_defined(); === Description + When used in a function, the implementation‐defined comment should replace the real type. @@ -300,12 +326,14 @@ to explain the implementation‐defined symbol. [#regular_ns-get_regular] == <>::get_regular + A function to get a regular symbol === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -316,6 +344,7 @@ get_regular(); === Description + When used in a function, the symbol should be shown as usual with a link to the page. @@ -324,12 +353,14 @@ with a link to the page. [#regular_ns-get_see_below] == <>::get_see_below + A function to get a see‐below symbol === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -340,6 +371,7 @@ get_see_below(); === Description + When used in a function, the symbol name should be shown as usual. The page for this symbol is what should be different because the synopsis should say "See below" and the members are not @@ -351,11 +383,13 @@ used as a dependency elsewhere. [#see_below_ns] == see_below_ns + A see‐below namespace === Types + [cols=2] |=== | Name | Description @@ -372,6 +406,7 @@ A see‐below namespace |=== === Functions + [cols=2] |=== | Name | Description @@ -390,6 +425,7 @@ A see‐below namespace === Description + All member symbols should become see‐below. All members are traversed as see‐below. @@ -401,12 +437,14 @@ the see‐below comment. [#see_below_ns-regular] == <>::regular + Regular symbol in a see‐below namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -419,6 +457,7 @@ struct regular { /* see-below */ }; === Description + The symbol becomes see‐below because the whole namespace is see‐below. @@ -427,12 +466,14 @@ is see‐below. [#see_below_ns-see_below] == <>::see_below + See‐below symbol in a see‐below namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -445,6 +486,7 @@ struct see_below { /* see-below */ }; === Description + The symbol becomes see‐below because the whole namespace is see‐below and because it's explicitly marked as see‐below. @@ -453,12 +495,14 @@ is see‐below and because it's explicitly marked as see‐below& [#see_below_ns-get_dependency] == <>::get_dependency + A function to get a dependency symbol in a see‐below namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -469,6 +513,7 @@ get_dependency(); === Description + The symbol should be extracted as a dependency because the exclude filter has precedence over the see‐below filter. Only included symbols can be promoted to see‐below. @@ -481,12 +526,14 @@ to explain the dependency. [#see_below_ns-get_implementation_defined] == <>::get_implementation_defined + A function to get an implementation‐defined symbol in a see‐below namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -497,6 +544,7 @@ get_implementation_defined(); === Description + When used in a function, the implementation‐defined comment should replace the real type. @@ -508,12 +556,14 @@ to explain the implementation‐defined symbol. [#regular] == regular + A regular symbol in the global namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -522,6 +572,7 @@ struct regular; ---- === Types + [cols=2] |=== | Name | Description @@ -537,6 +588,7 @@ struct regular; === Description + This symbol should have a page as usual. @@ -544,12 +596,14 @@ This symbol should have a page as usual. [#regular-also_regular] == <>::also_regular + Child of a regular symbol: should be traversed as usual === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -558,6 +612,7 @@ struct also_regular; ---- === Types + [cols=2] |=== | Name | Description @@ -574,12 +629,14 @@ struct also_regular; [#regular-also_regular-regular_as_well] == <>::<>::regular_as_well + Grandchild of a regular symbol: should be traversed as usual === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -593,12 +650,14 @@ struct regular_as_well; [#see_below] == see_below + A see‐below symbol in the global namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -611,6 +670,7 @@ struct see_below { /* see-below */ }; === Description + This symbol should have a page as usual but, because it's a scope and not a namespace, the members should not be listed on that page. @@ -621,12 +681,14 @@ The synopsis should say "See below". [#get_dependency] == get_dependency + A function to get a dependency symbol on the global namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -637,6 +699,7 @@ get_dependency(); === Description + The symbol should be extracted as a dependency but its members should not be traversed. @@ -645,12 +708,14 @@ members should not be traversed. [#get_implementation_defined] == get_implementation_defined + A function to get an implementation‐defined symbol in the global namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -661,6 +726,7 @@ get_implementation_defined(); === Description + When used in a function, the implementation‐defined comment should replace the real type. @@ -672,12 +738,14 @@ to explain the implementation‐defined symbol. [#get_regular] == get_regular + A function to get a regular symbol in the global namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -688,6 +756,7 @@ get_regular(); === Description + When used in a function, the symbol should be shown as usual with a link to the page. @@ -696,12 +765,14 @@ with a link to the page. [#get_see_below] == get_see_below + A function to get a see‐below symbol in the global namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -712,6 +783,7 @@ get_see_below(); === Description + When used in a function, the symbol name should be shown as usual. The page for this symbol is what should be different because the synopsis should say "See below" and the members are not @@ -723,12 +795,14 @@ used as a dependency elsewhere. [#dependency_ns_alias] == dependency_ns_alias + Namespace alias to form the dependency on dependency_ns === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -739,12 +813,14 @@ namespace dependency_ns_alias = dependency_ns; [#implementation_defined_ns_alias] == implementation_defined_ns_alias + Namespace alias to form a dependency on the implementation‐defined namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -755,12 +831,14 @@ namespace implementation_defined_ns_alias = /* impl [#see_below_ns_alias] == see_below_ns_alias + Namespace alias to form a dependency on the see‐below namespace === Synopsis + Declared in `<extraction‐mode.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -770,6 +848,7 @@ namespace see_below_ns_alias = <> -| - |=== === Variables -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#regular] == regular + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#regular-absolute_uri_rule_t] == <>::absolute_uri_rule_t + === Synopsis + Declared in `<impl‐defined‐member.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -57,8 +56,10 @@ struct absolute_uri_rule_t; [#absolute_uri_rule] == absolute_uri_rule + === Synopsis + Declared in `<impl‐defined‐member.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -70,8 +71,10 @@ constexpr [#regular_absolute_uri_rule] == regular_absolute_uri_rule + === Synopsis + Declared in `<impl‐defined‐member.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/filters/symbol-name/impl-defined-member.html b/test-files/golden-tests/filters/symbol-name/impl-defined-member.html index e53d79460f..fb6a7cb4fb 100644 --- a/test-files/golden-tests/filters/symbol-name/impl-defined-member.html +++ b/test-files/golden-tests/filters/symbol-name/impl-defined-member.html @@ -13,28 +13,25 @@

Namespaces

- + - +
NameDescriptionName
regular -
regular

Variables

- + - - + +
NameDescriptionName
absolute_uri_rule -
regular_absolute_uri_rule -
absolute_uri_rule
regular_absolute_uri_rule
@@ -46,13 +43,12 @@

Types

- + - +
NameDescriptionName
absolute_uri_rule_t -
absolute_uri_rule_t
diff --git a/test-files/golden-tests/filters/symbol-name/whitelist_0.adoc b/test-files/golden-tests/filters/symbol-name/whitelist_0.adoc index b1ad8996b6..3d270dc3da 100644 --- a/test-files/golden-tests/filters/symbol-name/whitelist_0.adoc +++ b/test-files/golden-tests/filters/symbol-name/whitelist_0.adoc @@ -4,40 +4,38 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== [#N0] == N0 + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N0-f0_WL] == <>::f0_WL + === Synopsis + Declared in `<whitelist_0.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -49,41 +47,42 @@ f0_WL(); [#N1] == N1 + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#N1-N3_WL] == <>::N3_WL + [#N1-N4] == <>::N4 + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N1-N4-f1_WL] == <>::<>::f1_WL + === Synopsis + Declared in `<whitelist_0.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -95,61 +94,61 @@ f1_WL(); [#N5] == N5 + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N5-N6_BL] == <>::N6_BL + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N5-N6_BL-M7] == <>::<>::M7 + [#N5-N6_BL-N7] == <>::<>::N7 + [#N5-N6_BL-N8] == <>::<>::N8 + [#N5-N6_BL-f1_BL] == <>::<>::f1_BL + === Synopsis + Declared in `<whitelist_0.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/filters/symbol-name/whitelist_0.html b/test-files/golden-tests/filters/symbol-name/whitelist_0.html index 747c075505..78aabc9255 100644 --- a/test-files/golden-tests/filters/symbol-name/whitelist_0.html +++ b/test-files/golden-tests/filters/symbol-name/whitelist_0.html @@ -13,17 +13,14 @@

Namespaces

- + - - - + + +
NameDescriptionName
N0 -
N1 -
N5 -
N0
N1
N5
@@ -35,13 +32,12 @@

Functions

- + - +
NameDescriptionName
f0_WL -
f0_WL
@@ -69,15 +65,13 @@

Namespaces

- + - - + +
NameDescriptionName
N3_WL -
N4 -
N3_WL
N4
@@ -94,13 +88,12 @@

Functions

- + - +
NameDescriptionName
f1_WL -
f1_WL
@@ -128,13 +121,12 @@

Namespaces

- + - +
NameDescriptionName
N6_BL -
N6_BL
@@ -146,30 +138,26 @@

Namespaces

- + - - - + + +
NameDescriptionName
M7 -
N7 -
N8 -
M7
N7
N8

Functions

- + - +
NameDescriptionName
f1_BL -
f1_BL
diff --git a/test-files/golden-tests/filters/symbol-type/nested-private-template.adoc b/test-files/golden-tests/filters/symbol-type/nested-private-template.adoc index dbf63f9172..150c418d4b 100644 --- a/test-files/golden-tests/filters/symbol-type/nested-private-template.adoc +++ b/test-files/golden-tests/filters/symbol-type/nested-private-template.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#range] == range + === Synopsis + Declared in `<nested‐private‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -30,23 +32,22 @@ class range; === Private Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#range-impl-0e] == <>::impl + === Synopsis + Declared in `<nested‐private‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -63,8 +64,10 @@ struct impl; [#range-impl-00] == <>::impl<R, false> + === Synopsis + Declared in `<nested‐private‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/filters/symbol-type/nested-private-template.html b/test-files/golden-tests/filters/symbol-type/nested-private-template.html index 5fb380d1d9..ea33cc8c30 100644 --- a/test-files/golden-tests/filters/symbol-type/nested-private-template.html +++ b/test-files/golden-tests/filters/symbol-type/nested-private-template.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
range -
range
@@ -44,15 +43,13 @@

Private Types

- + - - + +
NameDescriptionName
impl -
impl<R, false> -
impl
impl<R, false>
diff --git a/test-files/golden-tests/javadoc/brief-1.adoc b/test-files/golden-tests/javadoc/brief-1.adoc index a32075e812..84c3d1afef 100644 --- a/test-files/golden-tests/javadoc/brief-1.adoc +++ b/test-files/golden-tests/javadoc/brief-1.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -27,6 +29,7 @@ continues to the line. [#f5] == f5 + brief *bold* it @@ -36,6 +39,7 @@ continues to the line. === Synopsis + Declared in `<brief‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -47,12 +51,14 @@ f5(); [#f6] == f6 + brief === Synopsis + Declared in `<brief‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -63,6 +69,7 @@ f6(); === Description + many lined *bold* what will diff --git a/test-files/golden-tests/javadoc/brief-2.adoc b/test-files/golden-tests/javadoc/brief-2.adoc index 38d4dd268c..a3550452ac 100644 --- a/test-files/golden-tests/javadoc/brief-2.adoc +++ b/test-files/golden-tests/javadoc/brief-2.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -46,12 +48,14 @@ ief [#f1] == f1 + brief === Synopsis + Declared in `<brief‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -63,12 +67,14 @@ f1(); [#f2] == f2 + brief === Synopsis + Declared in `<brief‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -80,12 +86,14 @@ f2(); [#f3] == f3 + brief === Synopsis + Declared in `<brief‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -97,12 +105,14 @@ f3(); [#f4] == f4 + brief x === Synopsis + Declared in `<brief‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -113,6 +123,7 @@ f4(); === Description + br ief @@ -121,6 +132,7 @@ ief [#f5] == f5 + br ief @@ -128,6 +140,7 @@ ief === Synopsis + Declared in `<brief‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -139,6 +152,7 @@ f5(); [#f6] == f6 + br ief @@ -146,6 +160,7 @@ ief === Synopsis + Declared in `<brief‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -156,6 +171,7 @@ f6(); === Description + desc diff --git a/test-files/golden-tests/javadoc/commands.adoc b/test-files/golden-tests/javadoc/commands.adoc index d8bfd70efd..79a7327680 100644 --- a/test-files/golden-tests/javadoc/commands.adoc +++ b/test-files/golden-tests/javadoc/commands.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -19,12 +21,14 @@ [#f1] == f1 + brief === Synopsis + Declared in `<commands.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -35,6 +39,7 @@ f1(); === Description + mrdocs hello diff --git a/test-files/golden-tests/javadoc/duplicate-jdoc.adoc b/test-files/golden-tests/javadoc/duplicate-jdoc.adoc index 7387fcbb63..23d6da29e9 100644 --- a/test-files/golden-tests/javadoc/duplicate-jdoc.adoc +++ b/test-files/golden-tests/javadoc/duplicate-jdoc.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -44,12 +46,14 @@ [#f0] == f0 + f0 brief === Synopsis + Declared in `<duplicate‐jdoc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -60,6 +64,7 @@ f0(); === Return Value + int @@ -67,12 +72,14 @@ int [#f1] == f1 + f1 brief === Synopsis + Declared in `<duplicate‐jdoc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -83,6 +90,7 @@ f1(); === Return Value + bool @@ -90,12 +98,14 @@ bool [#g0] == g0 + g0 brief === Synopsis + Declared in `<duplicate‐jdoc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -106,6 +116,7 @@ g0(int a); === Parameters + |=== | Name | Description @@ -122,12 +133,14 @@ g0(int a); [#g1] == g1 + g1 brief === Synopsis + Declared in `<duplicate‐jdoc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -138,6 +151,7 @@ g1(int a); === Parameters + |=== | Name | Description @@ -154,12 +168,14 @@ g1(int a); [#h0] == h0 + h0 brief === Synopsis + Declared in `<duplicate‐jdoc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -171,6 +187,7 @@ h0(); === Template Parameters + |=== | Name | Description @@ -187,12 +204,14 @@ h0(); [#h1] == h1 + h1 brief === Synopsis + Declared in `<duplicate‐jdoc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -204,6 +223,7 @@ h1(); === Template Parameters + |=== | Name | Description diff --git a/test-files/golden-tests/javadoc/para-1.adoc b/test-files/golden-tests/javadoc/para-1.adoc index 532d2b7975..23e0e20449 100644 --- a/test-files/golden-tests/javadoc/para-1.adoc +++ b/test-files/golden-tests/javadoc/para-1.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -28,8 +30,10 @@ [#f1] == f1 + === Synopsis + Declared in `<para‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -41,8 +45,10 @@ f1(); [#f2] == f2 + === Synopsis + Declared in `<para‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -54,8 +60,10 @@ f2(); [#f3] == f3 + === Synopsis + Declared in `<para‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -67,12 +75,14 @@ f3(); [#f4] == f4 + brief === Synopsis + Declared in `<para‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -83,6 +93,7 @@ f4(); === Description + a b diff --git a/test-files/golden-tests/javadoc/para-2.adoc b/test-files/golden-tests/javadoc/para-2.adoc index e0e89512d2..9c559d3e02 100644 --- a/test-files/golden-tests/javadoc/para-2.adoc +++ b/test-files/golden-tests/javadoc/para-2.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -19,12 +21,14 @@ [#f1] == f1 + brief === Synopsis + Declared in `<para‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -35,6 +39,7 @@ f1(); === Description + a b c diff --git a/test-files/golden-tests/javadoc/para-3.adoc b/test-files/golden-tests/javadoc/para-3.adoc index 0c14646de7..9a3dc62204 100644 --- a/test-files/golden-tests/javadoc/para-3.adoc +++ b/test-files/golden-tests/javadoc/para-3.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -17,10 +19,12 @@ [#my_function] == my_function + A function === Synopsis + Declared in `<para‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -32,6 +36,7 @@ my_function(); === Description + === A heading. Some text. diff --git a/test-files/golden-tests/javadoc/param-direction.adoc b/test-files/golden-tests/javadoc/param-direction.adoc index c90c2334f5..af19aff690 100644 --- a/test-files/golden-tests/javadoc/param-direction.adoc +++ b/test-files/golden-tests/javadoc/param-direction.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -44,8 +46,10 @@ [#f] == f + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -56,6 +60,7 @@ f(int x0); === Parameters + |=== | Name | Description @@ -66,8 +71,10 @@ f(int x0); [#g] == g + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -80,6 +87,7 @@ g( === Parameters + |=== | Name | Description @@ -92,8 +100,10 @@ g( [#h] == h + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -106,6 +116,7 @@ h( === Parameters + |=== | Name | Description @@ -118,8 +129,10 @@ h( [#i] == i + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -132,6 +145,7 @@ i( === Parameters + |=== | Name | Description @@ -144,8 +158,10 @@ i( [#j] == j + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -158,6 +174,7 @@ j( === Parameters + |=== | Name | Description @@ -170,8 +187,10 @@ j( [#k] == k + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -185,6 +204,7 @@ k( === Parameters + |=== | Name | Description @@ -199,8 +219,10 @@ k( [#l] == l + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -215,6 +237,7 @@ l( === Parameters + |=== | Name | Description @@ -229,8 +252,10 @@ l( [#m] == m + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -243,6 +268,7 @@ m( === Parameters + |=== | Name | Description @@ -255,8 +281,10 @@ m( [#n] == n + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -267,6 +295,7 @@ n(int x8); === Parameters + |=== | Name | Description @@ -277,8 +306,10 @@ n(int x8); [#o] == o + === Synopsis + Declared in `<param‐direction.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -289,6 +320,7 @@ o(int x9); === Parameters + |=== | Name | Description diff --git a/test-files/golden-tests/javadoc/param.adoc b/test-files/golden-tests/javadoc/param.adoc index 3b9388de33..5230469e25 100644 --- a/test-files/golden-tests/javadoc/param.adoc +++ b/test-files/golden-tests/javadoc/param.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -26,8 +28,10 @@ [#f] == f + === Synopsis + Declared in `<param.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -38,6 +42,7 @@ f(int x); === Parameters + |=== | Name | Description @@ -48,8 +53,10 @@ f(int x); [#g] == g + === Synopsis + Declared in `<param.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -62,6 +69,7 @@ g( === Parameters + |=== | Name | Description @@ -74,8 +82,10 @@ g( [#h] == h + === Synopsis + Declared in `<param.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -89,6 +99,7 @@ h( === Parameters + |=== | Name | Description @@ -103,8 +114,10 @@ h( [#i] == i + === Synopsis + Declared in `<param.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -119,6 +132,7 @@ i( === Parameters + |=== | Name | Description diff --git a/test-files/golden-tests/javadoc/pre-post.adoc b/test-files/golden-tests/javadoc/pre-post.adoc index 825826e785..f90e6dfb1f 100644 --- a/test-files/golden-tests/javadoc/pre-post.adoc +++ b/test-files/golden-tests/javadoc/pre-post.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -17,8 +19,10 @@ [#f] == f + === Synopsis + Declared in `<pre‐post.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -29,6 +33,7 @@ f(); === Preconditions + * first precondition @@ -38,6 +43,7 @@ f(); === Postconditions + * first postcondition diff --git a/test-files/golden-tests/javadoc/ref.adoc b/test-files/golden-tests/javadoc/ref.adoc index f4ce8ad62e..a42d692fd7 100644 --- a/test-files/golden-tests/javadoc/ref.adoc +++ b/test-files/golden-tests/javadoc/ref.adoc @@ -4,25 +4,25 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Functions + [cols=2] |=== | Name | Description @@ -47,7 +47,9 @@ xref:#F-operator_bitnot[F::operator˜] [#A] == A + === Types + [cols=2] |=== | Name | Description @@ -66,6 +68,7 @@ xref:#A-f1[f1] |=== === Functions + [cols=2] |=== | Name | Description @@ -81,6 +84,7 @@ xref:#f0[f0] [#A-B] == <>::B + See xref:#A-f1[f1] @@ -88,6 +92,7 @@ xref:#A-f1[f1] === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -97,19 +102,19 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Description + See xref:#A-f1[A::f1] @@ -121,8 +126,10 @@ xref:#A-f1[::A::f1] [#A-B-f2] == <>::<>::f2 + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -134,8 +141,10 @@ f2(); [#A-C] == <>::C + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -144,16 +153,13 @@ struct C; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -161,8 +167,10 @@ struct C; [#A-C-f3] == <>::<>::f3 + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -174,8 +182,10 @@ f3(); [#A-C-f4] == <>::<>::f4 + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -187,8 +197,10 @@ f4(); [#A-D] == <>::D + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -198,6 +210,7 @@ struct D ---- === Types + [cols=2] |=== | Name | Description @@ -210,15 +223,13 @@ xref:#A-C-f3[f3] |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| |=== @@ -226,6 +237,7 @@ xref:#A-C-f3[f3] [#A-D-E] == <>::<>::E + See xref:#A-C-f3[f3] @@ -233,6 +245,7 @@ xref:#A-C-f3[f3] === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -245,6 +258,7 @@ struct E; === Description + See xref:#A-D-f4[f4] @@ -256,8 +270,10 @@ xref:#A-C-f4[C::f4] [#A-D-f4] == <>::<>::f4 + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -269,6 +285,7 @@ f4(); [#A-f1] == <>::f1 + See xref:#f0[f0] @@ -276,6 +293,7 @@ xref:#f0[f0] === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -286,6 +304,7 @@ f1(); === Description + See xref:#f0[::f0] @@ -294,8 +313,10 @@ xref:#f0[::f0] [#F] == F + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -304,127 +325,50 @@ struct F; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== @@ -432,8 +376,10 @@ struct F; [#F-operator_not] == <>::operator! + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -445,8 +391,10 @@ operator!(); [#F-operator_not_eq] == <>::operator!= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -458,8 +406,10 @@ operator!=(<>&); [#F-operator_mod] == <>::operator% + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -471,8 +421,10 @@ operator%(<>&); [#F-operator_mod_eq] == <>::operator%= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -484,8 +436,10 @@ operator%=(<>&); [#F-operator_bitand] == <>::operator& + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -497,8 +451,10 @@ operator&(<>&); [#F-operator_and] == <>::operator&& + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -510,8 +466,10 @@ operator&&(<>&); [#F-operator_and_eq] == <>::operator&= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -523,8 +481,10 @@ operator&=(<>&); [#F-operator_call] == <>::operator() + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -536,8 +496,10 @@ operator()(<>&); [#F-operator_star] == <>::operator* + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -549,8 +511,10 @@ operator*(<>&); [#F-operator_star_eq] == <>::operator*= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -562,8 +526,10 @@ operator*=(<>&); [#F-operator_plus] == <>::operator+ + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -575,8 +541,10 @@ operator+(<>&); [#F-operator_inc] == <>::operator++ + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -588,8 +556,10 @@ operator++(); [#F-operator_plus_eq] == <>::operator+= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -601,8 +571,10 @@ operator+=(<>&); [#F-operator_comma] == <>::operator, + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -614,8 +586,10 @@ operator,(<>&); [#F-operator_minus] == <>::operator‐ + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -627,8 +601,10 @@ operator‐(<>&); [#F-operator_dec] == <>::operator‐‐ + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -640,8 +616,10 @@ operator‐‐(); [#F-operator_minus_eq] == <>::operator‐= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -653,8 +631,10 @@ operator‐=(<>&); [#F-operator_ptr] == <>::operator‐> + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -666,8 +646,10 @@ operator‐>(); [#F-operator_ptrmem] == <>::operator‐>* + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -679,8 +661,10 @@ operator‐>*(<>&); [#F-operator_slash] == <>::operator/ + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -692,8 +676,10 @@ operator/(<>&); [#F-operator_slash_eq] == <>::operator/= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -705,8 +691,10 @@ operator/=(<>&); [#F-operator_lt] == <>::operator< + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -718,8 +706,10 @@ operator<(<>&); [#F-operator_lshift] == <>::operator<< + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -731,8 +721,10 @@ operator<<(<>&); [#F-operator_lshift_eq] == <>::operator<<= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -744,8 +736,10 @@ operator<<=(<>&); [#F-operator_le] == <>::operator<= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -757,8 +751,10 @@ operator<=(<>&); [#F-operator_3way] == <>::operator<=> + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -770,8 +766,10 @@ operator<=>(<>&); [#F-operator_assign] == <>::operator= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -783,8 +781,10 @@ operator=(<>&); [#F-operator_eq] == <>::operator== + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -796,8 +796,10 @@ operator==(<>&); [#F-operator_gt] == <>::operator> + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -809,8 +811,10 @@ operator>(<>&); [#F-operator_ge] == <>::operator>= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -822,8 +826,10 @@ operator>=(<>&); [#F-operator_rshift] == <>::operator>> + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -835,8 +841,10 @@ operator>>(<>&); [#F-operator_rshift_eq] == <>::operator>>= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -848,8 +856,10 @@ operator>>=(<>&); [#F-operator_subs] == <>::operator[] + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -861,8 +871,10 @@ operator[](<>&); [#F-operator_xor] == <>::operatorˆ + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -874,8 +886,10 @@ operatorˆ(<>&); [#F-operator_xor_eq] == <>::operatorˆ= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -887,8 +901,10 @@ operatorˆ=(<>&); [#F-operator_bitor] == <>::operator| + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -900,8 +916,10 @@ operator|(<>&); [#F-operator_or_eq] == <>::operator|= + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -913,8 +931,10 @@ operator|=(<>&); [#F-operator_or] == <>::operator|| + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -926,8 +946,10 @@ operator||(<>&); [#F-operator_bitnot] == <>::operator˜ + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -939,8 +961,10 @@ operator˜(); [#f0] == f0 + === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -952,6 +976,7 @@ f0(); [#f5] == f5 + See xref:#A-f1[A::f1] @@ -959,6 +984,7 @@ xref:#A-f1[A::f1] === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -969,6 +995,7 @@ f5(); === Description + See xref:#A-f1[::A::f1] @@ -977,6 +1004,7 @@ xref:#A-f1[::A::f1] [#f6] == f6 + See xref:#F-operator_bitnot[F::operator˜] @@ -984,6 +1012,7 @@ xref:#F-operator_bitnot[F::operator˜] === Synopsis + Declared in `<ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -994,6 +1023,7 @@ f6(); === Description + See xref:#F-operator_comma[F::operator,] diff --git a/test-files/golden-tests/javadoc/ref.html b/test-files/golden-tests/javadoc/ref.html index ccdd717038..f319d5b97b 100644 --- a/test-files/golden-tests/javadoc/ref.html +++ b/test-files/golden-tests/javadoc/ref.html @@ -13,26 +13,24 @@

Namespaces

- + - +
NameDescriptionName
A -
A

Types

- + - +
NameDescriptionName
F -
F

Functions

@@ -121,13 +119,12 @@

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -176,15 +173,13 @@

Member Functions

- + - - + +
NameDescriptionName
f3 -
f4 -
f3
f4
@@ -256,14 +251,13 @@

Member Functions

- + - - + +
NameDescriptionName
f3 -
f4
f3
f4
@@ -364,89 +358,50 @@

Member Functions

- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionName
operator! -
operator!= -
operator% -
operator%= -
operator& -
operator&& -
operator&= -
operator() -
operator* -
operator*= -
operator+ -
operator++ -
operator+= -
operator, -
operator- -
operator-- -
operator-= -
operator-> -
operator->* -
operator/ -
operator/= -
operator< -
operator<< -
operator<<= -
operator<= -
operator<=> -
operator= -
operator== -
operator> -
operator>= -
operator>> -
operator>>= -
operator[] -
operator^ -
operator^= -
operator| -
operator|= -
operator|| -
operator~ -
operator!
operator!=
operator%
operator%=
operator&
operator&&
operator&=
operator()
operator*
operator*=
operator+
operator++
operator+=
operator,
operator-
operator--
operator-=
operator->
operator->*
operator/
operator/=
operator<
operator<<
operator<<=
operator<=
operator<=>
operator=
operator==
operator>
operator>=
operator>>
operator>>=
operator[]
operator^
operator^=
operator|
operator|=
operator||
operator~
diff --git a/test-files/golden-tests/metadata/alias-template.adoc b/test-files/golden-tests/metadata/alias-template.adoc index d40581c46a..eb31304aa1 100644 --- a/test-files/golden-tests/metadata/alias-template.adoc +++ b/test-files/golden-tests/metadata/alias-template.adoc @@ -4,30 +4,26 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#A] == A + === Synopsis + Declared in `<alias‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -42,8 +38,10 @@ struct A; [#B] == B + === Synopsis + Declared in `<alias‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -60,8 +58,10 @@ struct B; [#D] == D + === Synopsis + Declared in `<alias‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -71,13 +71,12 @@ struct D; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -85,8 +84,10 @@ struct D; [#D-E] == <>::E + === Synopsis + Declared in `<alias‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -98,8 +99,10 @@ using E = <><T, U>; [#C] == C + === Synopsis + Declared in `<alias‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/alias-template.html b/test-files/golden-tests/metadata/alias-template.html index aafcae822e..c2c7384c44 100644 --- a/test-files/golden-tests/metadata/alias-template.html +++ b/test-files/golden-tests/metadata/alias-template.html @@ -13,19 +13,15 @@

Types

- + - - - - + + + +
NameDescriptionName
A -
B -
C -
D -
A
B
C
D
@@ -86,13 +82,12 @@

Types

- + - +
NameDescriptionName
E -
E
diff --git a/test-files/golden-tests/metadata/attributes_1.adoc b/test-files/golden-tests/metadata/attributes_1.adoc index 5abb9fd073..480b2ed11d 100644 --- a/test-files/golden-tests/metadata/attributes_1.adoc +++ b/test-files/golden-tests/metadata/attributes_1.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#f] == f + === Synopsis + Declared in `<attributes_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/attributes_1.html b/test-files/golden-tests/metadata/attributes_1.html index ec4aa39f27..e0d7f71722 100644 --- a/test-files/golden-tests/metadata/attributes_1.html +++ b/test-files/golden-tests/metadata/attributes_1.html @@ -13,13 +13,12 @@

Functions

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/metadata/class-template-partial-spec.adoc b/test-files/golden-tests/metadata/class-template-partial-spec.adoc index 0b12e35d53..601e904151 100644 --- a/test-files/golden-tests/metadata/class-template-partial-spec.adoc +++ b/test-files/golden-tests/metadata/class-template-partial-spec.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<class‐template‐partial‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -28,19 +30,14 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -48,8 +45,10 @@ struct A; [#A-B-0a] == <>::B + === Synopsis + Declared in `<class‐template‐partial‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -66,8 +65,10 @@ struct B; [#A-B-06] == <>::B<U*, T> + === Synopsis + Declared in `<class‐template‐partial‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -82,8 +83,10 @@ struct <><U*, T>; [#A-B-04] == <>::B<T, long> + === Synopsis + Declared in `<class‐template‐partial‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/class-template-partial-spec.html b/test-files/golden-tests/metadata/class-template-partial-spec.html index 03c202cb73..669e55771e 100644 --- a/test-files/golden-tests/metadata/class-template-partial-spec.html +++ b/test-files/golden-tests/metadata/class-template-partial-spec.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -42,17 +41,14 @@

Types

- + - - - + + +
NameDescriptionName
B -
B<U*, T> -
B<T, long> -
B
B<U*, T>
B<T, long>
diff --git a/test-files/golden-tests/metadata/class-template-spec.adoc b/test-files/golden-tests/metadata/class-template-spec.adoc index 3c7f413d9e..b724b382ab 100644 --- a/test-files/golden-tests/metadata/class-template-spec.adoc +++ b/test-files/golden-tests/metadata/class-template-spec.adoc @@ -4,45 +4,31 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -52,13 +38,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -66,8 +51,10 @@ struct A; [#A-0e-f] == <>::f + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -79,8 +66,10 @@ f(); [#A-00] == A<int> + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -90,13 +79,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -104,8 +92,10 @@ struct <><int>; [#A-00-g] == <><int>::g + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -117,8 +107,10 @@ g(); [#A-0c] == A<long> + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -128,13 +120,12 @@ struct <><long>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -142,8 +133,10 @@ struct <><long>; [#A-0c-h] == <><long>::h + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -155,8 +148,10 @@ h(); [#B-00] == B + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -166,13 +161,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -180,8 +174,10 @@ struct B; [#B-00-f] == <>::f + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -193,8 +189,10 @@ f(); [#B-07] == B<T*> + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -204,13 +202,12 @@ struct <><T*>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -218,8 +215,10 @@ struct <><T*>; [#B-07-g] == <><T*>::g + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -231,8 +230,10 @@ g(); [#B-06] == B<T&> + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -242,13 +243,12 @@ struct <><T&>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -256,8 +256,10 @@ struct <><T&>; [#B-06-h] == <><T&>::h + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -269,8 +271,10 @@ h(); [#C-0f] == C + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -282,13 +286,12 @@ struct C; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -296,8 +299,10 @@ struct C; [#C-0f-f] == <>::f + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -309,8 +314,10 @@ f(); [#C-0a] == C<int, int> + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -320,13 +327,12 @@ struct <><int, int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -334,8 +340,10 @@ struct <><int, int>; [#C-0a-g] == <><int, int>::g + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -347,8 +355,10 @@ g(); [#C-0e] == C<T*, int> + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -358,13 +368,12 @@ struct <><T*, int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -372,8 +381,10 @@ struct <><T*, int>; [#C-0e-h] == <><T*, int>::h + === Synopsis + Declared in `<class‐template‐spec.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/class-template-spec.html b/test-files/golden-tests/metadata/class-template-spec.html index a1e6edd659..22782bc39b 100644 --- a/test-files/golden-tests/metadata/class-template-spec.html +++ b/test-files/golden-tests/metadata/class-template-spec.html @@ -13,29 +13,20 @@

Types

- + - - - - - - - - - + + + + + + + + +
NameDescriptionName
A -
A<int> -
A<long> -
B -
B<T*> -
B<T&> -
C -
C<int, int> -
C<T*, int> -
A
A<int>
A<long>
B
B<T*>
B<T&>
C
C<int, int>
C<T*, int>
@@ -58,13 +49,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -105,13 +95,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
@@ -152,13 +141,12 @@

Member Functions

- + - +
NameDescriptionName
h -
h
@@ -199,13 +187,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -246,13 +233,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
@@ -293,13 +279,12 @@

Member Functions

- + - +
NameDescriptionName
h -
h
@@ -342,13 +327,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -389,13 +373,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
@@ -436,13 +419,12 @@

Member Functions

- + - +
NameDescriptionName
h -
h
diff --git a/test-files/golden-tests/metadata/class-template-specializations-1.adoc b/test-files/golden-tests/metadata/class-template-specializations-1.adoc index c18c633434..941e4f0664 100644 --- a/test-files/golden-tests/metadata/class-template-specializations-1.adoc +++ b/test-files/golden-tests/metadata/class-template-specializations-1.adoc @@ -4,291 +4,113 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#R0] == R0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -298,25 +120,21 @@ struct R0 ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -324,8 +142,10 @@ struct R0 [#R1] == R1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -340,8 +160,10 @@ struct R1 [#R10] == R10 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -356,8 +178,10 @@ struct R10 [#R11] == R11 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -372,8 +196,10 @@ struct R11 [#R12] == R12 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -388,8 +214,10 @@ struct R12 [#R13] == R13 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -404,8 +232,10 @@ struct R13 [#R14] == R14 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -420,8 +250,10 @@ struct R14 [#R15] == R15 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -436,8 +268,10 @@ struct R15 [#R16] == R16 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -452,8 +286,10 @@ struct R16 [#R17] == R17 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -468,8 +304,10 @@ struct R17 [#R18] == R18 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -484,8 +322,10 @@ struct R18 [#R19] == R19 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -500,8 +340,10 @@ struct R19 [#R2] == R2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -511,25 +353,21 @@ struct R2 ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -537,8 +375,10 @@ struct R2 [#R20] == R20 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -553,8 +393,10 @@ struct R20 [#R21] == R21 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -569,8 +411,10 @@ struct R21 [#R22] == R22 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -585,8 +429,10 @@ struct R22 [#R23] == R23 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -601,8 +447,10 @@ struct R23 [#R24] == R24 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -617,8 +465,10 @@ struct R24 [#R25] == R25 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -633,8 +483,10 @@ struct R25 [#R26] == R26 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -649,8 +501,10 @@ struct R26 [#R27] == R27 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -665,8 +519,10 @@ struct R27 [#R28] == R28 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -676,25 +532,21 @@ struct R28 ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -702,8 +554,10 @@ struct R28 [#R29] == R29 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -713,25 +567,21 @@ struct R29 ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -739,8 +589,10 @@ struct R29 [#R3] == R3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -755,8 +607,10 @@ struct R3 [#R30] == R30 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -766,22 +620,20 @@ struct R30 ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -789,8 +641,10 @@ struct R30 [#R31] == R31 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -808,8 +662,10 @@ struct R31 [#R32] == R32 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -824,8 +680,10 @@ struct R32 [#R33] == R33 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -840,8 +698,10 @@ struct R33 [#R34] == R34 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -851,13 +711,12 @@ struct R34 ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -865,8 +724,10 @@ struct R34 [#R35] == R35 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -884,8 +745,10 @@ struct R35 [#R36] == R36 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -900,8 +763,10 @@ struct R36 [#R37] == R37 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -916,8 +781,10 @@ struct R37 [#R38] == R38 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -935,8 +802,10 @@ struct R38 [#R39] == R39 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -951,8 +820,10 @@ struct R39 [#R4] == R4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -967,8 +838,10 @@ struct R4 [#R40] == R40 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -983,8 +856,10 @@ struct R40 [#R41] == R41 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -994,22 +869,20 @@ struct R41 ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1017,8 +890,10 @@ struct R41 [#R42] == R42 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1036,8 +911,10 @@ struct R42 [#R43] == R43 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1052,8 +929,10 @@ struct R43 [#R44] == R44 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1068,8 +947,10 @@ struct R44 [#R45] == R45 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1079,13 +960,12 @@ struct R45 ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1093,8 +973,10 @@ struct R45 [#R46] == R46 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1112,8 +994,10 @@ struct R46 [#R47] == R47 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1128,8 +1012,10 @@ struct R47 [#R48] == R48 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1144,8 +1030,10 @@ struct R48 [#R5] == R5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1160,8 +1048,10 @@ struct R5 [#R6] == R6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1176,8 +1066,10 @@ struct R6 [#R7] == R7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1192,8 +1084,10 @@ struct R7 [#R8] == R8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1208,8 +1102,10 @@ struct R8 [#R9] == R9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1224,8 +1120,10 @@ struct R9 [#S0-0cf] == S0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1237,25 +1135,21 @@ struct S0; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1263,8 +1157,10 @@ struct S0; [#S0-0cf-S1] == <>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1273,22 +1169,20 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1296,8 +1190,10 @@ struct S1; [#S0-0cf-S1-S2] == <>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1309,25 +1205,21 @@ struct S2; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1335,8 +1227,10 @@ struct S2; [#S0-0cf-S1-S2-S3] == <>::<>::<>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1345,13 +1239,12 @@ struct S3; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1359,8 +1252,10 @@ struct S3; [#S0-0cf-S1-S2-S3-f3] == <>::<>::<>::<>::f3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1372,8 +1267,10 @@ f3(); [#S0-0cf-S1-S2-S4] == <>::<>::<>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1385,13 +1282,12 @@ struct S4; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1399,8 +1295,10 @@ struct S4; [#S0-0cf-S1-S2-S4-f4] == <>::<>::<>::<>::f4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1412,8 +1310,10 @@ f4(); [#S0-0cf-S1-S2-f2] == <>::<>::<>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1425,8 +1325,10 @@ f2(); [#S0-0cf-S1-f1] == <>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1438,8 +1340,10 @@ f1(); [#S0-0cf-S5] == <>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1451,22 +1355,20 @@ struct S5; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1474,8 +1376,10 @@ struct S5; [#S0-0cf-S5-S6] == <>::<>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1484,22 +1388,20 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1507,8 +1409,10 @@ struct S6; [#S0-0cf-S5-S6-S7] == <>::<>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1520,25 +1424,21 @@ struct S7; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1546,8 +1446,10 @@ struct S7; [#S0-0cf-S5-S6-S7-S8] == <>::<>::<>::<>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1556,13 +1458,12 @@ struct S8; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1570,8 +1471,10 @@ struct S8; [#S0-0cf-S5-S6-S7-S8-f8] == <>::<>::<>::<>::<>::f8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1583,8 +1486,10 @@ f8(); [#S0-0cf-S5-S6-S7-S9] == <>::<>::<>::<>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1596,13 +1501,12 @@ struct S9; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1610,8 +1514,10 @@ struct S9; [#S0-0cf-S5-S6-S7-S9-f9] == <>::<>::<>::<>::<>::f9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1623,8 +1529,10 @@ f9(); [#S0-0cf-S5-S6-S7-f7] == <>::<>::<>::<>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1636,8 +1544,10 @@ f7(); [#S0-0cf-S5-S6-f6] == <>::<>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1649,8 +1559,10 @@ f6(); [#S0-0cf-S5-f5] == <>::<>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1662,8 +1574,10 @@ f5(); [#S0-0cf-f0] == <>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1675,8 +1589,10 @@ f0(); [#S0-0be] == S0<0> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1691,8 +1607,10 @@ struct <><0>; [#S0-09c] == S0<2> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1702,25 +1620,21 @@ struct <><2>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1728,8 +1642,10 @@ struct <><2>; [#S0-09c-S1] == <><2>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1743,8 +1659,10 @@ struct S1; [#S0-09c-S5] == <><2>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1761,8 +1679,10 @@ struct S5; [#S0-09c-f0] == <><2>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1774,8 +1694,10 @@ f0(); [#S0-073] == S0<3> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1785,25 +1707,21 @@ struct <><3>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1811,8 +1729,10 @@ struct <><3>; [#S0-073-S1] == <><3>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1821,22 +1741,20 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1844,8 +1762,10 @@ struct S1; [#S0-073-S1-S2] == <><3>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1862,8 +1782,10 @@ struct S2; [#S0-073-S1-f1] == <><3>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1875,8 +1797,10 @@ f1(); [#S0-073-S5] == <><3>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1893,8 +1817,10 @@ struct S5; [#S0-073-f0] == <><3>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1906,8 +1832,10 @@ f0(); [#S0-0a1] == S0<4> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1917,25 +1845,21 @@ struct <><4>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1943,8 +1867,10 @@ struct <><4>; [#S0-0a1-S1] == <><4>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1953,25 +1879,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -1979,8 +1901,10 @@ struct S1; [#S0-0a1-S1-S2-00] == <><4>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1997,8 +1921,10 @@ struct S2; [#S0-0a1-S1-S2-0f] == <><4>::<>::S2<5> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2013,8 +1939,10 @@ struct <><5>; [#S0-0a1-S1-f1] == <><4>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2026,8 +1954,10 @@ f1(); [#S0-0a1-S5] == <><4>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2044,8 +1974,10 @@ struct S5; [#S0-0a1-f0] == <><4>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2057,8 +1989,10 @@ f0(); [#S0-07e] == S0<6> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2068,25 +2002,21 @@ struct <><6>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2094,8 +2024,10 @@ struct <><6>; [#S0-07e-S1] == <><6>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2104,28 +2036,22 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2133,8 +2059,10 @@ struct S1; [#S0-07e-S1-S2-04] == <><6>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2151,8 +2079,10 @@ struct S2; [#S0-07e-S1-S2-06] == <><6>::<>::S2<7, T*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2167,8 +2097,10 @@ struct <><7, T*>; [#S0-07e-S1-S2-07] == <><6>::<>::S2<7, int*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2183,8 +2115,10 @@ struct <><7, int*>; [#S0-07e-S1-f1] == <><6>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2196,8 +2130,10 @@ f1(); [#S0-07e-S5] == <><6>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2214,8 +2150,10 @@ struct S5; [#S0-07e-f0] == <><6>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2227,8 +2165,10 @@ f0(); [#S0-0a3] == S0<8> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2238,25 +2178,21 @@ struct <><8>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2264,8 +2200,10 @@ struct <><8>; [#S0-0a3-S1] == <><8>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2274,25 +2212,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2300,8 +2234,10 @@ struct S1; [#S0-0a3-S1-S2-0b] == <><8>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2318,8 +2254,10 @@ struct S2; [#S0-0a3-S1-S2-0c] == <><8>::<>::S2<9> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2329,25 +2267,21 @@ struct <><9>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2355,8 +2289,10 @@ struct <><9>; [#S0-0a3-S1-S2-0c-S3] == <><8>::<>::<><9>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2370,8 +2306,10 @@ struct S3; [#S0-0a3-S1-S2-0c-S4] == <><8>::<>::<><9>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2388,8 +2326,10 @@ struct S4; [#S0-0a3-S1-S2-0c-f2] == <><8>::<>::<><9>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2401,8 +2341,10 @@ f2(); [#S0-0a3-S1-f1] == <><8>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2414,8 +2356,10 @@ f1(); [#S0-0a3-S5] == <><8>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2432,8 +2376,10 @@ struct S5; [#S0-0a3-f0] == <><8>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2445,8 +2391,10 @@ f0(); [#S0-08] == S0<10> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2456,25 +2404,21 @@ struct <><10>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2482,8 +2426,10 @@ struct <><10>; [#S0-08-S1] == <><10>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2492,25 +2438,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2518,8 +2460,10 @@ struct S1; [#S0-08-S1-S2-0b] == <><10>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2536,8 +2480,10 @@ struct S2; [#S0-08-S1-S2-08] == <><10>::<>::S2<11> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2547,25 +2493,21 @@ struct <><11>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2573,8 +2515,10 @@ struct <><11>; [#S0-08-S1-S2-08-S3] == <><10>::<>::<><11>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2588,8 +2532,10 @@ struct S3; [#S0-08-S1-S2-08-S4] == <><10>::<>::<><11>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2606,8 +2552,10 @@ struct S4; [#S0-08-S1-S2-08-f2] == <><10>::<>::<><11>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2619,8 +2567,10 @@ f2(); [#S0-08-S1-f1] == <><10>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2632,8 +2582,10 @@ f1(); [#S0-08-S5] == <><10>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2650,8 +2602,10 @@ struct S5; [#S0-08-f0] == <><10>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2663,8 +2617,10 @@ f0(); [#S0-0e] == S0<12> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2674,25 +2630,21 @@ struct <><12>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2700,8 +2652,10 @@ struct <><12>; [#S0-0e-S1] == <><12>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2710,25 +2664,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2736,8 +2686,10 @@ struct S1; [#S0-0e-S1-S2-09] == <><12>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2754,8 +2706,10 @@ struct S2; [#S0-0e-S1-S2-02] == <><12>::<>::S2<13> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2765,28 +2719,22 @@ struct <><13>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2794,8 +2742,10 @@ struct <><13>; [#S0-0e-S1-S2-02-S3] == <><12>::<>::<><13>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2809,8 +2759,10 @@ struct S3; [#S0-0e-S1-S2-02-S4-00] == <><12>::<>::<><13>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2827,8 +2779,10 @@ struct S4; [#S0-0e-S1-S2-02-S4-0c] == <><12>::<>::<><13>::S4<14> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2843,8 +2797,10 @@ struct <><14>; [#S0-0e-S1-S2-02-f2] == <><12>::<>::<><13>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2856,8 +2812,10 @@ f2(); [#S0-0e-S1-f1] == <><12>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2869,8 +2827,10 @@ f1(); [#S0-0e-S5] == <><12>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2887,8 +2847,10 @@ struct S5; [#S0-0e-f0] == <><12>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2900,8 +2862,10 @@ f0(); [#S0-09e4] == S0<15> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2911,25 +2875,21 @@ struct <><15>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2937,8 +2897,10 @@ struct <><15>; [#S0-09e4-S1] == <><15>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2947,25 +2909,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -2973,8 +2931,10 @@ struct S1; [#S0-09e4-S1-S2-07] == <><15>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -2991,8 +2951,10 @@ struct S2; [#S0-09e4-S1-S2-02] == <><15>::<>::S2<16> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3002,31 +2964,23 @@ struct <><16>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3034,8 +2988,10 @@ struct <><16>; [#S0-09e4-S1-S2-02-S3] == <><15>::<>::<><16>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3049,8 +3005,10 @@ struct S3; [#S0-09e4-S1-S2-02-S4-00] == <><15>::<>::<><16>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3067,8 +3025,10 @@ struct S4; [#S0-09e4-S1-S2-02-S4-07] == <><15>::<>::<><16>::S4<17, T*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3083,8 +3043,10 @@ struct <><17, T*>; [#S0-09e4-S1-S2-02-S4-02] == <><15>::<>::<><16>::S4<17, int*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3099,8 +3061,10 @@ struct <><17, int*>; [#S0-09e4-S1-S2-02-f2] == <><15>::<>::<><16>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3112,8 +3076,10 @@ f2(); [#S0-09e4-S1-f1] == <><15>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3125,8 +3091,10 @@ f1(); [#S0-09e4-S5] == <><15>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3143,8 +3111,10 @@ struct S5; [#S0-09e4-f0] == <><15>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3156,8 +3126,10 @@ f0(); [#S0-07a] == S0<18> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3167,25 +3139,21 @@ struct <><18>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3193,8 +3161,10 @@ struct <><18>; [#S0-07a-S1] == <><18>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3208,8 +3178,10 @@ struct S1; [#S0-07a-S5] == <><18>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3226,8 +3198,10 @@ struct S5; [#S0-07a-f0] == <><18>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3239,8 +3213,10 @@ f0(); [#S0-0a7] == S0<19> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3250,28 +3226,22 @@ struct <><19>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3279,8 +3249,10 @@ struct <><19>; [#S0-0a7-S1] == <><19>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3294,8 +3266,10 @@ struct S1; [#S0-0a7-S5-03] == <><19>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3312,8 +3286,10 @@ struct S5; [#S0-0a7-S5-07] == <><19>::S5<20> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3328,8 +3304,10 @@ struct <><20>; [#S0-0a7-f0] == <><19>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3341,8 +3319,10 @@ f0(); [#S0-0314] == S0<21> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3352,31 +3332,23 @@ struct <><21>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3384,8 +3356,10 @@ struct <><21>; [#S0-0314-S1] == <><21>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3399,8 +3373,10 @@ struct S1; [#S0-0314-S5-07] == <><21>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3417,8 +3393,10 @@ struct S5; [#S0-0314-S5-0b] == <><21>::S5<22, T*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3433,8 +3411,10 @@ struct <><22, T*>; [#S0-0314-S5-03] == <><21>::S5<22, int*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3449,8 +3429,10 @@ struct <><22, int*>; [#S0-0314-f0] == <><21>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3462,8 +3444,10 @@ f0(); [#S0-058] == S0<23> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3473,28 +3457,22 @@ struct <><23>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3502,8 +3480,10 @@ struct <><23>; [#S0-058-S1] == <><23>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3517,8 +3497,10 @@ struct S1; [#S0-058-S5-0b] == <><23>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3535,8 +3517,10 @@ struct S5; [#S0-058-S5-09] == <><23>::S5<24> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3546,22 +3530,20 @@ struct <><24>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3569,8 +3551,10 @@ struct <><24>; [#S0-058-S5-09-S6] == <><23>::<><24>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3584,8 +3568,10 @@ struct S6; [#S0-058-S5-09-f5] == <><23>::<><24>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3597,8 +3583,10 @@ f5(); [#S0-058-f0] == <><23>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3610,8 +3598,10 @@ f0(); [#S0-0a2] == S0<25> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3621,28 +3611,22 @@ struct <><25>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3650,8 +3634,10 @@ struct <><25>; [#S0-0a2-S1] == <><25>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3665,8 +3651,10 @@ struct S1; [#S0-0a2-S5-04] == <><25>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3683,8 +3671,10 @@ struct S5; [#S0-0a2-S5-02] == <><25>::S5<26> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3694,22 +3684,20 @@ struct <><26>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3717,8 +3705,10 @@ struct <><26>; [#S0-0a2-S5-02-S6] == <><25>::<><26>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3727,22 +3717,20 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3750,8 +3738,10 @@ struct S6; [#S0-0a2-S5-02-S6-S7] == <><25>::<><26>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3768,8 +3758,10 @@ struct S7; [#S0-0a2-S5-02-S6-f6] == <><25>::<><26>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3781,8 +3773,10 @@ f6(); [#S0-0a2-S5-02-f5] == <><25>::<><26>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3794,8 +3788,10 @@ f5(); [#S0-0a2-f0] == <><25>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3807,8 +3803,10 @@ f0(); [#S0-09e2] == S0<27> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3818,28 +3816,22 @@ struct <><27>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3847,8 +3839,10 @@ struct <><27>; [#S0-09e2-S1] == <><27>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3862,8 +3856,10 @@ struct S1; [#S0-09e2-S5-0b] == <><27>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3880,8 +3876,10 @@ struct S5; [#S0-09e2-S5-0c] == <><27>::S5<28> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3891,22 +3889,20 @@ struct <><28>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3914,8 +3910,10 @@ struct <><28>; [#S0-09e2-S5-0c-S6] == <><27>::<><28>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3924,28 +3922,22 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -3953,8 +3945,10 @@ struct S6; [#S0-09e2-S5-0c-S6-S7-0b] == <><27>::<><28>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3971,8 +3965,10 @@ struct S7; [#S0-09e2-S5-0c-S6-S7-0a] == <><27>::<><28>::<>::S7<29, T*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -3987,8 +3983,10 @@ struct <><29, T*>; [#S0-09e2-S5-0c-S6-S7-0d] == <><27>::<><28>::<>::S7<29, int*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4003,8 +4001,10 @@ struct <><29, int*>; [#S0-09e2-S5-0c-S6-f6] == <><27>::<><28>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4016,8 +4016,10 @@ f6(); [#S0-09e2-S5-0c-f5] == <><27>::<><28>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4029,8 +4031,10 @@ f5(); [#S0-09e2-f0] == <><27>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4042,8 +4046,10 @@ f0(); [#S0-01] == S0<30> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4053,28 +4059,22 @@ struct <><30>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4082,8 +4082,10 @@ struct <><30>; [#S0-01-S1] == <><30>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4097,8 +4099,10 @@ struct S1; [#S0-01-S5-07] == <><30>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4115,8 +4119,10 @@ struct S5; [#S0-01-S5-04] == <><30>::S5<31> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4126,22 +4132,20 @@ struct <><31>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4149,8 +4153,10 @@ struct <><31>; [#S0-01-S5-04-S6] == <><30>::<><31>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4159,25 +4165,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4185,8 +4187,10 @@ struct S6; [#S0-01-S5-04-S6-S7-0c] == <><30>::<><31>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4203,8 +4207,10 @@ struct S7; [#S0-01-S5-04-S6-S7-05] == <><30>::<><31>::<>::S7<32> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4219,8 +4225,10 @@ struct <><32>; [#S0-01-S5-04-S6-f6] == <><30>::<><31>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4232,8 +4240,10 @@ f6(); [#S0-01-S5-04-f5] == <><30>::<><31>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4245,8 +4255,10 @@ f5(); [#S0-01-f0] == <><30>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4258,8 +4270,10 @@ f0(); [#S0-09ee] == S0<33> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4269,28 +4283,22 @@ struct <><33>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4298,8 +4306,10 @@ struct <><33>; [#S0-09ee-S1] == <><33>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4313,8 +4323,10 @@ struct S1; [#S0-09ee-S5-0b] == <><33>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4331,8 +4343,10 @@ struct S5; [#S0-09ee-S5-02] == <><33>::S5<34> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4342,22 +4356,20 @@ struct <><34>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4365,8 +4377,10 @@ struct <><34>; [#S0-09ee-S5-02-S6] == <><33>::<><34>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4375,25 +4389,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4401,8 +4411,10 @@ struct S6; [#S0-09ee-S5-02-S6-S7-09] == <><33>::<><34>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4419,8 +4431,10 @@ struct S7; [#S0-09ee-S5-02-S6-S7-03] == <><33>::<><34>::<>::S7<35> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4430,25 +4444,21 @@ struct <><35>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4456,8 +4466,10 @@ struct <><35>; [#S0-09ee-S5-02-S6-S7-03-S8] == <><33>::<><34>::<>::<><35>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4471,8 +4483,10 @@ struct S8; [#S0-09ee-S5-02-S6-S7-03-S9] == <><33>::<><34>::<>::<><35>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4489,8 +4503,10 @@ struct S9; [#S0-09ee-S5-02-S6-S7-03-f7] == <><33>::<><34>::<>::<><35>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4502,8 +4518,10 @@ f7(); [#S0-09ee-S5-02-S6-f6] == <><33>::<><34>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4515,8 +4533,10 @@ f6(); [#S0-09ee-S5-02-f5] == <><33>::<><34>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4528,8 +4548,10 @@ f5(); [#S0-09ee-f0] == <><33>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4541,8 +4563,10 @@ f0(); [#S0-033] == S0<36> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4552,28 +4576,22 @@ struct <><36>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4581,8 +4599,10 @@ struct <><36>; [#S0-033-S1] == <><36>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4596,8 +4616,10 @@ struct S1; [#S0-033-S5-03] == <><36>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4614,8 +4636,10 @@ struct S5; [#S0-033-S5-0f] == <><36>::S5<37> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4625,22 +4649,20 @@ struct <><37>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4648,8 +4670,10 @@ struct <><37>; [#S0-033-S5-0f-S6] == <><36>::<><37>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4658,25 +4682,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4684,8 +4704,10 @@ struct S6; [#S0-033-S5-0f-S6-S7-05] == <><36>::<><37>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4702,8 +4724,10 @@ struct S7; [#S0-033-S5-0f-S6-S7-0d] == <><36>::<><37>::<>::S7<38> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4713,25 +4737,21 @@ struct <><38>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4739,8 +4759,10 @@ struct <><38>; [#S0-033-S5-0f-S6-S7-0d-S8] == <><36>::<><37>::<>::<><38>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4754,8 +4776,10 @@ struct S8; [#S0-033-S5-0f-S6-S7-0d-S9] == <><36>::<><37>::<>::<><38>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4772,8 +4796,10 @@ struct S9; [#S0-033-S5-0f-S6-S7-0d-f7] == <><36>::<><37>::<>::<><38>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4785,8 +4811,10 @@ f7(); [#S0-033-S5-0f-S6-f6] == <><36>::<><37>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4798,8 +4826,10 @@ f6(); [#S0-033-S5-0f-f5] == <><36>::<><37>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4811,8 +4841,10 @@ f5(); [#S0-033-f0] == <><36>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4824,8 +4856,10 @@ f0(); [#S0-06] == S0<39> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4835,28 +4869,22 @@ struct <><39>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4864,8 +4892,10 @@ struct <><39>; [#S0-06-S1] == <><39>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4879,8 +4909,10 @@ struct S1; [#S0-06-S5-03] == <><39>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4897,8 +4929,10 @@ struct S5; [#S0-06-S5-07] == <><39>::S5<40> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4908,22 +4942,20 @@ struct <><40>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4931,8 +4963,10 @@ struct <><40>; [#S0-06-S5-07-S6] == <><39>::<><40>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4941,25 +4975,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -4967,8 +4997,10 @@ struct S6; [#S0-06-S5-07-S6-S7-08] == <><39>::<><40>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4985,8 +5017,10 @@ struct S7; [#S0-06-S5-07-S6-S7-0a] == <><39>::<><40>::<>::S7<41> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -4996,31 +5030,23 @@ struct <><41>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5028,8 +5054,10 @@ struct <><41>; [#S0-06-S5-07-S6-S7-0a-S8] == <><39>::<><40>::<>::<><41>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5043,8 +5071,10 @@ struct S8; [#S0-06-S5-07-S6-S7-0a-S9-05] == <><39>::<><40>::<>::<><41>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5061,8 +5091,10 @@ struct S9; [#S0-06-S5-07-S6-S7-0a-S9-00] == <><39>::<><40>::<>::<><41>::S9<42, T*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5077,8 +5109,10 @@ struct <><42, T*>; [#S0-06-S5-07-S6-S7-0a-S9-08] == <><39>::<><40>::<>::<><41>::S9<42, int*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5093,8 +5127,10 @@ struct <><42, int*>; [#S0-06-S5-07-S6-S7-0a-f7] == <><39>::<><40>::<>::<><41>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5106,8 +5142,10 @@ f7(); [#S0-06-S5-07-S6-f6] == <><39>::<><40>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5119,8 +5157,10 @@ f6(); [#S0-06-S5-07-f5] == <><39>::<><40>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5132,8 +5172,10 @@ f5(); [#S0-06-f0] == <><39>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5145,8 +5187,10 @@ f0(); [#S0-0ba] == S0<43> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5156,28 +5200,22 @@ struct <><43>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5185,8 +5223,10 @@ struct <><43>; [#S0-0ba-S1] == <><43>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5200,8 +5240,10 @@ struct S1; [#S0-0ba-S5-0f] == <><43>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5218,8 +5260,10 @@ struct S5; [#S0-0ba-S5-08] == <><43>::S5<44> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5229,22 +5273,20 @@ struct <><44>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5252,8 +5294,10 @@ struct <><44>; [#S0-0ba-S5-08-S6] == <><43>::<><44>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5262,25 +5306,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5288,8 +5328,10 @@ struct S6; [#S0-0ba-S5-08-S6-S7-04] == <><43>::<><44>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5306,8 +5348,10 @@ struct S7; [#S0-0ba-S5-08-S6-S7-02] == <><43>::<><44>::<>::S7<45> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5317,28 +5361,22 @@ struct <><45>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5346,8 +5384,10 @@ struct <><45>; [#S0-0ba-S5-08-S6-S7-02-S8] == <><43>::<><44>::<>::<><45>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5361,8 +5401,10 @@ struct S8; [#S0-0ba-S5-08-S6-S7-02-S9-0b] == <><43>::<><44>::<>::<><45>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5379,8 +5421,10 @@ struct S9; [#S0-0ba-S5-08-S6-S7-02-S9-0f] == <><43>::<><44>::<>::<><45>::S9<46> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5395,8 +5439,10 @@ struct <><46>; [#S0-0ba-S5-08-S6-S7-02-f7] == <><43>::<><44>::<>::<><45>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5408,8 +5454,10 @@ f7(); [#S0-0ba-S5-08-S6-f6] == <><43>::<><44>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5421,8 +5469,10 @@ f6(); [#S0-0ba-S5-08-f5] == <><43>::<><44>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5434,8 +5484,10 @@ f5(); [#S0-0ba-f0] == <><43>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5447,8 +5499,10 @@ f0(); [#S0-0c4] == S0<1, T*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5463,8 +5517,10 @@ struct <><1, T*>; [#S0-020a] == S0<1, int*> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5479,8 +5535,10 @@ struct <><1, int*>; [#S0-03c] == S0<2, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5490,25 +5548,21 @@ struct <><2, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5516,8 +5570,10 @@ struct <><2, bool>; [#S0-03c-S1] == <><2, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5526,22 +5582,20 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5549,8 +5603,10 @@ struct S1; [#S0-03c-S1-S2] == <><2, bool>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5567,8 +5623,10 @@ struct S2; [#S0-03c-S1-f1] == <><2, bool>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5580,8 +5638,10 @@ f1(); [#S0-03c-S5] == <><2, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5598,8 +5658,10 @@ struct S5; [#S0-03c-f0] == <><2, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5611,8 +5673,10 @@ f0(); [#S0-092] == S0<3, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5622,25 +5686,21 @@ struct <><3, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5648,8 +5708,10 @@ struct <><3, bool>; [#S0-092-S1] == <><3, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5658,22 +5720,20 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5681,8 +5741,10 @@ struct S1; [#S0-092-S1-S2] == <><3, bool>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5699,8 +5761,10 @@ struct S2; [#S0-092-S1-f1] == <><3, bool>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5712,8 +5776,10 @@ f1(); [#S0-092-S5] == <><3, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5730,8 +5796,10 @@ struct S5; [#S0-092-f0] == <><3, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5743,8 +5811,10 @@ f0(); [#S0-0b6] == S0<4, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5754,25 +5824,21 @@ struct <><4, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5780,8 +5846,10 @@ struct <><4, bool>; [#S0-0b6-S1] == <><4, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5790,22 +5858,20 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5813,8 +5879,10 @@ struct S1; [#S0-0b6-S1-S2] == <><4, bool>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5831,8 +5899,10 @@ struct S2; [#S0-0b6-S1-f1] == <><4, bool>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5844,8 +5914,10 @@ f1(); [#S0-0b6-S5] == <><4, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5862,8 +5934,10 @@ struct S5; [#S0-0b6-f0] == <><4, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5875,8 +5949,10 @@ f0(); [#S0-023] == S0<6, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5886,25 +5962,21 @@ struct <><6, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5912,8 +5984,10 @@ struct <><6, bool>; [#S0-023-S1] == <><6, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5922,22 +5996,20 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -5945,8 +6017,10 @@ struct S1; [#S0-023-S1-S2] == <><6, bool>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5963,8 +6037,10 @@ struct S2; [#S0-023-S1-f1] == <><6, bool>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5976,8 +6052,10 @@ f1(); [#S0-023-S5] == <><6, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -5994,8 +6072,10 @@ struct S5; [#S0-023-f0] == <><6, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6007,8 +6087,10 @@ f0(); [#S0-04] == S0<8, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6018,25 +6100,21 @@ struct <><8, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6044,8 +6122,10 @@ struct <><8, bool>; [#S0-04-S1] == <><8, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6054,25 +6134,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6080,8 +6156,10 @@ struct S1; [#S0-04-S1-S2-0e] == <><8, bool>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6098,8 +6176,10 @@ struct S2; [#S0-04-S1-S2-0a] == <><8, bool>::<>::S2<9, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6109,25 +6189,21 @@ struct <><9, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6135,8 +6211,10 @@ struct <><9, bool>; [#S0-04-S1-S2-0a-S3] == <><8, bool>::<>::<><9, bool>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6145,13 +6223,12 @@ struct S3; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6159,8 +6236,10 @@ struct S3; [#S0-04-S1-S2-0a-S3-f3] == <><8, bool>::<>::<><9, bool>::<>::f3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6172,8 +6251,10 @@ f3(); [#S0-04-S1-S2-0a-S4] == <><8, bool>::<>::<><9, bool>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6190,8 +6271,10 @@ struct S4; [#S0-04-S1-S2-0a-f2] == <><8, bool>::<>::<><9, bool>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6203,8 +6286,10 @@ f2(); [#S0-04-S1-f1] == <><8, bool>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6216,8 +6301,10 @@ f1(); [#S0-04-S5] == <><8, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6234,8 +6321,10 @@ struct S5; [#S0-04-f0] == <><8, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6247,8 +6336,10 @@ f0(); [#S0-05a] == S0<10, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6258,25 +6349,21 @@ struct <><10, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6284,8 +6371,10 @@ struct <><10, bool>; [#S0-05a-S1] == <><10, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6294,25 +6383,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6320,8 +6405,10 @@ struct S1; [#S0-05a-S1-S2-07] == <><10, bool>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6338,8 +6425,10 @@ struct S2; [#S0-05a-S1-S2-0b] == <><10, bool>::<>::S2<11, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6349,25 +6438,21 @@ struct <><11, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6375,8 +6460,10 @@ struct <><11, bool>; [#S0-05a-S1-S2-0b-S3] == <><10, bool>::<>::<><11, bool>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6390,8 +6477,10 @@ struct S3; [#S0-05a-S1-S2-0b-S4] == <><10, bool>::<>::<><11, bool>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6408,8 +6497,10 @@ struct S4; [#S0-05a-S1-S2-0b-f2] == <><10, bool>::<>::<><11, bool>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6421,8 +6512,10 @@ f2(); [#S0-05a-S1-f1] == <><10, bool>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6434,8 +6527,10 @@ f1(); [#S0-05a-S5] == <><10, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6452,8 +6547,10 @@ struct S5; [#S0-05a-f0] == <><10, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6465,8 +6562,10 @@ f0(); [#S0-0cd] == S0<12, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6476,25 +6575,21 @@ struct <><12, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6502,8 +6597,10 @@ struct <><12, bool>; [#S0-0cd-S1] == <><12, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6512,25 +6609,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6538,8 +6631,10 @@ struct S1; [#S0-0cd-S1-S2-0e] == <><12, bool>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6556,8 +6651,10 @@ struct S2; [#S0-0cd-S1-S2-05] == <><12, bool>::<>::S2<13, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6567,25 +6664,21 @@ struct <><13, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6593,8 +6686,10 @@ struct <><13, bool>; [#S0-0cd-S1-S2-05-S3] == <><12, bool>::<>::<><13, bool>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6608,8 +6703,10 @@ struct S3; [#S0-0cd-S1-S2-05-S4] == <><12, bool>::<>::<><13, bool>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6626,8 +6723,10 @@ struct S4; [#S0-0cd-S1-S2-05-f2] == <><12, bool>::<>::<><13, bool>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6639,8 +6738,10 @@ f2(); [#S0-0cd-S1-f1] == <><12, bool>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6652,8 +6753,10 @@ f1(); [#S0-0cd-S5] == <><12, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6670,8 +6773,10 @@ struct S5; [#S0-0cd-f0] == <><12, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6683,8 +6788,10 @@ f0(); [#S0-000] == S0<15, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6694,25 +6801,21 @@ struct <><15, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6720,8 +6823,10 @@ struct <><15, bool>; [#S0-000-S1] == <><15, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6730,25 +6835,21 @@ struct S1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6756,8 +6857,10 @@ struct S1; [#S0-000-S1-S2-08] == <><15, bool>::<>::S2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6774,8 +6877,10 @@ struct S2; [#S0-000-S1-S2-03] == <><15, bool>::<>::S2<16, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6785,25 +6890,21 @@ struct <><16, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6811,8 +6912,10 @@ struct <><16, bool>; [#S0-000-S1-S2-03-S3] == <><15, bool>::<>::<><16, bool>::S3 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6826,8 +6929,10 @@ struct S3; [#S0-000-S1-S2-03-S4] == <><15, bool>::<>::<><16, bool>::S4 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6844,8 +6949,10 @@ struct S4; [#S0-000-S1-S2-03-f2] == <><15, bool>::<>::<><16, bool>::f2 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6857,8 +6964,10 @@ f2(); [#S0-000-S1-f1] == <><15, bool>::<>::f1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6870,8 +6979,10 @@ f1(); [#S0-000-S5] == <><15, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6888,8 +6999,10 @@ struct S5; [#S0-000-f0] == <><15, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6901,8 +7014,10 @@ f0(); [#S0-051] == S0<18, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6912,25 +7027,21 @@ struct <><18, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -6938,8 +7049,10 @@ struct <><18, bool>; [#S0-051-S1] == <><18, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6953,8 +7066,10 @@ struct S1; [#S0-051-S5] == <><18, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6971,8 +7086,10 @@ struct S5; [#S0-051-f0] == <><18, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6984,8 +7101,10 @@ f0(); [#S0-002] == S0<19, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -6995,25 +7114,21 @@ struct <><19, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7021,8 +7136,10 @@ struct <><19, bool>; [#S0-002-S1] == <><19, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7036,8 +7153,10 @@ struct S1; [#S0-002-S5] == <><19, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7054,8 +7173,10 @@ struct S5; [#S0-002-f0] == <><19, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7067,8 +7188,10 @@ f0(); [#S0-003] == S0<21, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7078,25 +7201,21 @@ struct <><21, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7104,8 +7223,10 @@ struct <><21, bool>; [#S0-003-S1] == <><21, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7119,8 +7240,10 @@ struct S1; [#S0-003-S5] == <><21, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7137,8 +7260,10 @@ struct S5; [#S0-003-f0] == <><21, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7150,8 +7275,10 @@ f0(); [#S0-0c7] == S0<23, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7161,28 +7288,22 @@ struct <><23, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7190,8 +7311,10 @@ struct <><23, bool>; [#S0-0c7-S1] == <><23, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7205,8 +7328,10 @@ struct S1; [#S0-0c7-S5-03] == <><23, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7223,8 +7348,10 @@ struct S5; [#S0-0c7-S5-0f] == <><23, bool>::S5<24, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7234,22 +7361,20 @@ struct <><24, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7257,8 +7382,10 @@ struct <><24, bool>; [#S0-0c7-S5-0f-S6] == <><23, bool>::<><24, bool>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7267,22 +7394,20 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7290,8 +7415,10 @@ struct S6; [#S0-0c7-S5-0f-S6-S7] == <><23, bool>::<><24, bool>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7308,8 +7435,10 @@ struct S7; [#S0-0c7-S5-0f-S6-f6] == <><23, bool>::<><24, bool>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7321,8 +7450,10 @@ f6(); [#S0-0c7-S5-0f-f5] == <><23, bool>::<><24, bool>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7334,8 +7465,10 @@ f5(); [#S0-0c7-f0] == <><23, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7347,8 +7480,10 @@ f0(); [#S0-0529f] == S0<25, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7358,28 +7493,22 @@ struct <><25, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7387,8 +7516,10 @@ struct <><25, bool>; [#S0-0529f-S1] == <><25, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7402,8 +7533,10 @@ struct S1; [#S0-0529f-S5-051] == <><25, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7420,8 +7553,10 @@ struct S5; [#S0-0529f-S5-05c] == <><25, bool>::S5<26, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7431,22 +7566,20 @@ struct <><26, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7454,8 +7587,10 @@ struct <><26, bool>; [#S0-0529f-S5-05c-S6] == <><25, bool>::<><26, bool>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7464,22 +7599,20 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7487,8 +7620,10 @@ struct S6; [#S0-0529f-S5-05c-S6-S7] == <><25, bool>::<><26, bool>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7505,8 +7640,10 @@ struct S7; [#S0-0529f-S5-05c-S6-f6] == <><25, bool>::<><26, bool>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7518,8 +7655,10 @@ f6(); [#S0-0529f-S5-05c-f5] == <><25, bool>::<><26, bool>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7531,8 +7670,10 @@ f5(); [#S0-0529f-f0] == <><25, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7544,8 +7685,10 @@ f0(); [#S0-007] == S0<27, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7555,28 +7698,22 @@ struct <><27, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7584,8 +7721,10 @@ struct <><27, bool>; [#S0-007-S1] == <><27, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7599,8 +7738,10 @@ struct S1; [#S0-007-S5-0f] == <><27, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7617,8 +7758,10 @@ struct S5; [#S0-007-S5-0d] == <><27, bool>::S5<28, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7628,22 +7771,20 @@ struct <><28, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7651,8 +7792,10 @@ struct <><28, bool>; [#S0-007-S5-0d-S6] == <><27, bool>::<><28, bool>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7661,22 +7804,20 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7684,8 +7825,10 @@ struct S6; [#S0-007-S5-0d-S6-S7] == <><27, bool>::<><28, bool>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7702,8 +7845,10 @@ struct S7; [#S0-007-S5-0d-S6-f6] == <><27, bool>::<><28, bool>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7715,8 +7860,10 @@ f6(); [#S0-007-S5-0d-f5] == <><27, bool>::<><28, bool>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7728,8 +7875,10 @@ f5(); [#S0-007-f0] == <><27, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7741,8 +7890,10 @@ f0(); [#S0-021] == S0<30, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7752,28 +7903,22 @@ struct <><30, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7781,8 +7926,10 @@ struct <><30, bool>; [#S0-021-S1] == <><30, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7796,8 +7943,10 @@ struct S1; [#S0-021-S5-06] == <><30, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7814,8 +7963,10 @@ struct S5; [#S0-021-S5-0b] == <><30, bool>::S5<31, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7825,22 +7976,20 @@ struct <><31, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7848,8 +7997,10 @@ struct <><31, bool>; [#S0-021-S5-0b-S6] == <><30, bool>::<><31, bool>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7858,22 +8009,20 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7881,8 +8030,10 @@ struct S6; [#S0-021-S5-0b-S6-S7] == <><30, bool>::<><31, bool>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7899,8 +8050,10 @@ struct S7; [#S0-021-S5-0b-S6-f6] == <><30, bool>::<><31, bool>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7912,8 +8065,10 @@ f6(); [#S0-021-S5-0b-f5] == <><30, bool>::<><31, bool>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7925,8 +8080,10 @@ f5(); [#S0-021-f0] == <><30, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7938,8 +8095,10 @@ f0(); [#S0-0318] == S0<33, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7949,28 +8108,22 @@ struct <><33, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -7978,8 +8131,10 @@ struct <><33, bool>; [#S0-0318-S1] == <><33, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -7993,8 +8148,10 @@ struct S1; [#S0-0318-S5-0f] == <><33, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8011,8 +8168,10 @@ struct S5; [#S0-0318-S5-0b] == <><33, bool>::S5<34, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8022,22 +8181,20 @@ struct <><34, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8045,8 +8202,10 @@ struct <><34, bool>; [#S0-0318-S5-0b-S6] == <><33, bool>::<><34, bool>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8055,25 +8214,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8081,8 +8236,10 @@ struct S6; [#S0-0318-S5-0b-S6-S7-04] == <><33, bool>::<><34, bool>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8099,8 +8256,10 @@ struct S7; [#S0-0318-S5-0b-S6-S7-05] == <><33, bool>::<><34, bool>::<>::S7<35, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8110,25 +8269,21 @@ struct <><35, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8136,8 +8291,10 @@ struct <><35, bool>; [#S0-0318-S5-0b-S6-S7-05-S8] == <><33, bool>::<><34, bool>::<>::<><35, bool>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8146,13 +8303,12 @@ struct S8; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8160,8 +8316,10 @@ struct S8; [#S0-0318-S5-0b-S6-S7-05-S8-f8] == <><33, bool>::<><34, bool>::<>::<><35, bool>::<>::f8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8173,8 +8331,10 @@ f8(); [#S0-0318-S5-0b-S6-S7-05-S9] == <><33, bool>::<><34, bool>::<>::<><35, bool>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8191,8 +8351,10 @@ struct S9; [#S0-0318-S5-0b-S6-S7-05-f7] == <><33, bool>::<><34, bool>::<>::<><35, bool>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8204,8 +8366,10 @@ f7(); [#S0-0318-S5-0b-S6-f6] == <><33, bool>::<><34, bool>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8217,8 +8381,10 @@ f6(); [#S0-0318-S5-0b-f5] == <><33, bool>::<><34, bool>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8230,8 +8396,10 @@ f5(); [#S0-0318-f0] == <><33, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8243,8 +8411,10 @@ f0(); [#S0-0d] == S0<36, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8254,28 +8424,22 @@ struct <><36, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8283,8 +8447,10 @@ struct <><36, bool>; [#S0-0d-S1] == <><36, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8298,8 +8464,10 @@ struct S1; [#S0-0d-S5-09] == <><36, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8316,8 +8484,10 @@ struct S5; [#S0-0d-S5-0b] == <><36, bool>::S5<37, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8327,22 +8497,20 @@ struct <><37, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8350,8 +8518,10 @@ struct <><37, bool>; [#S0-0d-S5-0b-S6] == <><36, bool>::<><37, bool>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8360,25 +8530,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8386,8 +8552,10 @@ struct S6; [#S0-0d-S5-0b-S6-S7-08] == <><36, bool>::<><37, bool>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8404,8 +8572,10 @@ struct S7; [#S0-0d-S5-0b-S6-S7-0d] == <><36, bool>::<><37, bool>::<>::S7<38, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8415,25 +8585,21 @@ struct <><38, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8441,8 +8607,10 @@ struct <><38, bool>; [#S0-0d-S5-0b-S6-S7-0d-S8] == <><36, bool>::<><37, bool>::<>::<><38, bool>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8456,8 +8624,10 @@ struct S8; [#S0-0d-S5-0b-S6-S7-0d-S9] == <><36, bool>::<><37, bool>::<>::<><38, bool>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8474,8 +8644,10 @@ struct S9; [#S0-0d-S5-0b-S6-S7-0d-f7] == <><36, bool>::<><37, bool>::<>::<><38, bool>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8487,8 +8659,10 @@ f7(); [#S0-0d-S5-0b-S6-f6] == <><36, bool>::<><37, bool>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8500,8 +8674,10 @@ f6(); [#S0-0d-S5-0b-f5] == <><36, bool>::<><37, bool>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8513,8 +8689,10 @@ f5(); [#S0-0d-f0] == <><36, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8526,8 +8704,10 @@ f0(); [#S0-0206] == S0<39, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8537,28 +8717,22 @@ struct <><39, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8566,8 +8740,10 @@ struct <><39, bool>; [#S0-0206-S1] == <><39, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8581,8 +8757,10 @@ struct S1; [#S0-0206-S5-06] == <><39, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8599,8 +8777,10 @@ struct S5; [#S0-0206-S5-08] == <><39, bool>::S5<40, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8610,22 +8790,20 @@ struct <><40, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8633,8 +8811,10 @@ struct <><40, bool>; [#S0-0206-S5-08-S6] == <><39, bool>::<><40, bool>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8643,25 +8823,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8669,8 +8845,10 @@ struct S6; [#S0-0206-S5-08-S6-S7-06] == <><39, bool>::<><40, bool>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8687,8 +8865,10 @@ struct S7; [#S0-0206-S5-08-S6-S7-01] == <><39, bool>::<><40, bool>::<>::S7<41, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8698,25 +8878,21 @@ struct <><41, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8724,8 +8900,10 @@ struct <><41, bool>; [#S0-0206-S5-08-S6-S7-01-S8] == <><39, bool>::<><40, bool>::<>::<><41, bool>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8739,8 +8917,10 @@ struct S8; [#S0-0206-S5-08-S6-S7-01-S9] == <><39, bool>::<><40, bool>::<>::<><41, bool>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8757,8 +8937,10 @@ struct S9; [#S0-0206-S5-08-S6-S7-01-f7] == <><39, bool>::<><40, bool>::<>::<><41, bool>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8770,8 +8952,10 @@ f7(); [#S0-0206-S5-08-S6-f6] == <><39, bool>::<><40, bool>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8783,8 +8967,10 @@ f6(); [#S0-0206-S5-08-f5] == <><39, bool>::<><40, bool>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8796,8 +8982,10 @@ f5(); [#S0-0206-f0] == <><39, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8809,8 +8997,10 @@ f0(); [#S0-05291] == S0<43, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8820,28 +9010,22 @@ struct <><43, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8849,8 +9033,10 @@ struct <><43, bool>; [#S0-05291-S1] == <><43, bool>::S1 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8864,8 +9050,10 @@ struct S1; [#S0-05291-S5-02] == <><43, bool>::S5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8882,8 +9070,10 @@ struct S5; [#S0-05291-S5-0e] == <><43, bool>::S5<44, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8893,22 +9083,20 @@ struct <><44, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8916,8 +9104,10 @@ struct <><44, bool>; [#S0-05291-S5-0e-S6] == <><43, bool>::<><44, bool>::S6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8926,25 +9116,21 @@ struct S6; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -8952,8 +9138,10 @@ struct S6; [#S0-05291-S5-0e-S6-S7-04] == <><43, bool>::<><44, bool>::<>::S7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8970,8 +9158,10 @@ struct S7; [#S0-05291-S5-0e-S6-S7-0f] == <><43, bool>::<><44, bool>::<>::S7<45, bool> + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -8981,25 +9171,21 @@ struct <><45, bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -9007,8 +9193,10 @@ struct <><45, bool>; [#S0-05291-S5-0e-S6-S7-0f-S8] == <><43, bool>::<><44, bool>::<>::<><45, bool>::S8 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -9022,8 +9210,10 @@ struct S8; [#S0-05291-S5-0e-S6-S7-0f-S9] == <><43, bool>::<><44, bool>::<>::<><45, bool>::S9 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -9040,8 +9230,10 @@ struct S9; [#S0-05291-S5-0e-S6-S7-0f-f7] == <><43, bool>::<><44, bool>::<>::<><45, bool>::f7 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -9053,8 +9245,10 @@ f7(); [#S0-05291-S5-0e-S6-f6] == <><43, bool>::<><44, bool>::<>::f6 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -9066,8 +9260,10 @@ f6(); [#S0-05291-S5-0e-f5] == <><43, bool>::<><44, bool>::f5 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -9079,8 +9275,10 @@ f5(); [#S0-05291-f0] == <><43, bool>::f0 + === Synopsis + Declared in `<class‐template‐specializations‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/class-template-specializations-1.html b/test-files/golden-tests/metadata/class-template-specializations-1.html index ca1e0ce79b..11c25e5490 100644 --- a/test-files/golden-tests/metadata/class-template-specializations-1.html +++ b/test-files/golden-tests/metadata/class-template-specializations-1.html @@ -13,193 +13,102 @@

Types

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescription
R0 -
R1 -
R10 -
R11 -
R12 -
R13 -
R14 -
R15 -
R16 -
R17 -
R18 -
R19 -
R2 -
R20 -
R21 -
R22 -
R23 -
R24 -
R25 -
R26 -
R27 -
R28 -
R29 -
R3 -
R30 -
R31 -
R32 -
R33 -
R34 -
R35 -
R36 -
R37 -
R38 -
R39 -
R4 -
R40 -
R41 -
R42 -
R43 -
R44 -
R45 -
R46 -
R47 -
R48 -
R5 -
R6 -
R7 -
R8 -
R9 -
S0 -
S0<0> -
S0<1, T*> -
S0<1, int*> -
S0<2> -
S0<3> -
S0<4> -
S0<6> -
S0<8> -
S0<10> -
S0<12> -
S0<15> -
S0<18> -
S0<19> -
S0<21> -
S0<23> -
S0<25> -
S0<27> -
S0<30> -
S0<33> -
S0<36> -
S0<39> -
S0<43> -
S0<2, bool> -
S0<3, bool> -
S0<4, bool> -
S0<6, bool> -
S0<8, bool> -
S0<10, bool> -
S0<12, bool> -
S0<15, bool> -
S0<18, bool> -
S0<19, bool> -
S0<21, bool> -
S0<23, bool> -
S0<25, bool> -
S0<27, bool> -
S0<30, bool> -
S0<33, bool> -
S0<36, bool> -
S0<39, bool> -
S0<43, bool> -
Name
R0
R1
R10
R11
R12
R13
R14
R15
R16
R17
R18
R19
R2
R20
R21
R22
R23
R24
R25
R26
R27
R28
R29
R3
R30
R31
R32
R33
R34
R35
R36
R37
R38
R39
R4
R40
R41
R42
R43
R44
R45
R46
R47
R48
R5
R6
R7
R8
R9
S0
S0<0>
S0<1, T*>
S0<1, int*>
S0<2>
S0<3>
S0<4>
S0<6>
S0<8>
S0<10>
S0<12>
S0<15>
S0<18>
S0<19>
S0<21>
S0<23>
S0<25>
S0<27>
S0<30>
S0<33>
S0<36>
S0<39>
S0<43>
S0<2, bool>
S0<3, bool>
S0<4, bool>
S0<6, bool>
S0<8, bool>
S0<10, bool>
S0<12, bool>
S0<15, bool>
S0<18, bool>
S0<19, bool>
S0<21, bool>
S0<23, bool>
S0<25, bool>
S0<27, bool>
S0<30, bool>
S0<33, bool>
S0<36, bool>
S0<39, bool>
S0<43, bool>
@@ -222,28 +131,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -466,28 +372,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -656,28 +559,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -702,28 +602,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -766,26 +663,24 @@

Types

- + - +
NameDescriptionName
S2 -
S2

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -867,13 +762,12 @@

Member Functions

- + - +
NameDescriptionName
f3 -
f3
@@ -1030,26 +924,24 @@

Types

- + - +
NameDescriptionName
S7 -
S7

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -1131,13 +1023,12 @@

Member Functions

- + - +
NameDescriptionName
f8 -
f8
@@ -1311,28 +1202,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -1356,26 +1244,24 @@

Types

- + - +
NameDescriptionName
S2 -
S2

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -1402,28 +1288,25 @@

Types

- + - - + +
NameDescriptionName
S3 -
S4 -
S3
S4

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -1447,13 +1330,12 @@

Member Functions

- + - +
NameDescriptionName
f3 -
f3
@@ -1496,13 +1378,12 @@

Member Functions

- + - +
NameDescriptionName
f4 -
f4
@@ -1577,26 +1458,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -1620,26 +1499,24 @@

Types

- + - +
NameDescriptionName
S7 -
S7

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -1666,28 +1543,25 @@

Types

- + - - + +
NameDescriptionName
S8 -
S9 -
S8
S9

Member Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -1711,13 +1585,12 @@

Member Functions

- + - +
NameDescriptionName
f8 -
f8
@@ -1760,13 +1633,12 @@

Member Functions

- + - +
NameDescriptionName
f9 -
f9
@@ -1889,28 +1761,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -1988,28 +1857,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -2033,26 +1899,24 @@

Types

- + - +
NameDescriptionName
S2 -
S2

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -2149,28 +2013,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -2194,28 +2055,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<5> -
S2
S2<5>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -2330,28 +2188,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -2375,30 +2230,26 @@

Types

- + - - - + + +
NameDescriptionName
S2 -
S2<7, T*> -
S2<7, int*> -
S2
S2<7, T*>
S2<7, int*>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -2531,28 +2382,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -2576,28 +2424,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<9> -
S2
S2<9>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -2642,28 +2487,25 @@

Types

- + - - + +
NameDescriptionName
S3 -
S4 -
S3
S4

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -2793,28 +2635,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -2838,28 +2677,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<11> -
S2
S2<11>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -2904,28 +2740,25 @@

Types

- + - - + +
NameDescriptionName
S3 -
S4 -
S3
S4

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -3055,28 +2888,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -3100,28 +2930,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<13> -
S2
S2<13>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -3166,30 +2993,26 @@

Types

- + - - - + + +
NameDescriptionName
S3 -
S4 -
S4<14> -
S3
S4
S4<14>

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -3337,28 +3160,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -3382,28 +3202,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<16> -
S2
S2<16>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -3448,32 +3265,27 @@

Types

- + - - - - + + + +
NameDescriptionName
S3 -
S4 -
S4<17, T*> -
S4<17, int*> -
S3
S4
S4<17, T*>
S4<17, int*>

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -3639,28 +3451,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -3738,30 +3547,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<20> -
S1
S5
S5<20>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -3857,32 +3662,27 @@

Types

- + - - - - + + + +
NameDescriptionName
S1 -
S5 -
S5<22, T*> -
S5<22, int*> -
S1
S5
S5<22, T*>
S5<22, int*>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -3996,30 +3796,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<24> -
S1
S5
S5<24>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -4081,26 +3877,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -4174,30 +3968,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<26> -
S1
S5
S5<26>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -4259,26 +4049,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -4302,26 +4090,24 @@

Types

- + - +
NameDescriptionName
S7 -
S7

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -4414,30 +4200,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<28> -
S1
S5
S5<28>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -4499,26 +4281,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -4542,30 +4322,26 @@

Types

- + - - - + + +
NameDescriptionName
S7 -
S7<29, T*> -
S7<29, int*> -
S7
S7<29, T*>
S7<29, int*>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -4694,30 +4470,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<31> -
S1
S5
S5<31>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -4779,26 +4551,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -4822,28 +4592,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<32> -
S7
S7<32>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -4954,30 +4721,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<34> -
S1
S5
S5<34>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -5039,26 +4802,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -5082,28 +4843,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<35> -
S7
S7<35>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -5148,28 +4906,25 @@

Types

- + - - + +
NameDescriptionName
S8 -
S9 -
S8
S9

Member Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -5295,30 +5050,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<37> -
S1
S5
S5<37>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -5380,26 +5131,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -5423,28 +5172,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<38> -
S7
S7<38>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -5489,28 +5235,25 @@

Types

- + - - + +
NameDescriptionName
S8 -
S9 -
S8
S9

Member Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -5636,30 +5379,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<40> -
S1
S5
S5<40>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -5721,26 +5460,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -5764,28 +5501,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<41> -
S7
S7<41>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -5830,32 +5564,27 @@

Types

- + - - - - + + + +
NameDescriptionName
S8 -
S9 -
S9<42, T*> -
S9<42, int*> -
S8
S9
S9<42, T*>
S9<42, int*>

Member Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -6017,30 +5746,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<44> -
S1
S5
S5<44>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -6102,26 +5827,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -6145,28 +5868,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<45> -
S7
S7<45>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -6211,30 +5931,26 @@

Types

- + - - - + + +
NameDescriptionName
S8 -
S9 -
S9<46> -
S8
S9
S9<46>

Member Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -6414,28 +6130,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -6459,26 +6172,24 @@

Types

- + - +
NameDescriptionName
S2 -
S2

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -6575,28 +6286,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -6620,26 +6328,24 @@

Types

- + - +
NameDescriptionName
S2 -
S2

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -6736,28 +6442,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -6781,26 +6484,24 @@

Types

- + - +
NameDescriptionName
S2 -
S2

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -6897,28 +6598,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -6942,26 +6640,24 @@

Types

- + - +
NameDescriptionName
S2 -
S2

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -7058,28 +6754,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -7103,28 +6796,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<9, bool> -
S2
S2<9, bool>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -7169,28 +6859,25 @@

Types

- + - - + +
NameDescriptionName
S3 -
S4 -
S3
S4

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -7214,13 +6901,12 @@

Member Functions

- + - +
NameDescriptionName
f3 -
f3
@@ -7349,28 +7035,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -7394,28 +7077,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<11, bool> -
S2
S2<11, bool>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -7460,28 +7140,25 @@

Types

- + - - + +
NameDescriptionName
S3 -
S4 -
S3
S4

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -7611,28 +7288,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -7656,28 +7330,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<13, bool> -
S2
S2<13, bool>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -7722,28 +7393,25 @@

Types

- + - - + +
NameDescriptionName
S3 -
S4 -
S3
S4

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -7873,28 +7541,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -7918,28 +7583,25 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<16, bool> -
S2
S2<16, bool>

Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -7984,28 +7646,25 @@

Types

- + - - + +
NameDescriptionName
S3 -
S4 -
S3
S4

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -8135,28 +7794,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -8234,28 +7890,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -8333,28 +7986,25 @@

Types

- + - - + +
NameDescriptionName
S1 -
S5 -
S1
S5

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -8432,30 +8082,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<24, bool> -
S1
S5
S5<24, bool>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -8517,26 +8163,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -8560,26 +8204,24 @@

Types

- + - +
NameDescriptionName
S7 -
S7

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -8672,30 +8314,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<26, bool> -
S1
S5
S5<26, bool>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -8757,26 +8395,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -8800,26 +8436,24 @@

Types

- + - +
NameDescriptionName
S7 -
S7

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -8912,30 +8546,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<28, bool> -
S1
S5
S5<28, bool>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -8997,26 +8627,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -9040,26 +8668,24 @@

Types

- + - +
NameDescriptionName
S7 -
S7

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -9152,30 +8778,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<31, bool> -
S1
S5
S5<31, bool>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -9237,26 +8859,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -9280,26 +8900,24 @@

Types

- + - +
NameDescriptionName
S7 -
S7

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -9392,30 +9010,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<34, bool> -
S1
S5
S5<34, bool>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -9477,26 +9091,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -9520,28 +9132,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<35, bool> -
S7
S7<35, bool>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -9586,28 +9195,25 @@

Types

- + - - + +
NameDescriptionName
S8 -
S9 -
S8
S9

Member Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -9631,13 +9237,12 @@

Member Functions

- + - +
NameDescriptionName
f8 -
f8
@@ -9762,30 +9367,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<37, bool> -
S1
S5
S5<37, bool>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -9847,26 +9448,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -9890,28 +9489,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<38, bool> -
S7
S7<38, bool>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -9956,28 +9552,25 @@

Types

- + - - + +
NameDescriptionName
S8 -
S9 -
S8
S9

Member Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -10103,30 +9696,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<40, bool> -
S1
S5
S5<40, bool>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -10188,26 +9777,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -10231,28 +9818,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<41, bool> -
S7
S7<41, bool>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -10297,28 +9881,25 @@

Types

- + - - + +
NameDescriptionName
S8 -
S9 -
S8
S9

Member Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -10444,30 +10025,26 @@

Types

- + - - - + + +
NameDescriptionName
S1 -
S5 -
S5<44, bool> -
S1
S5
S5<44, bool>

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -10529,26 +10106,24 @@

Types

- + - +
NameDescriptionName
S6 -
S6

Member Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -10572,28 +10147,25 @@

Types

- + - - + +
NameDescriptionName
S7 -
S7<45, bool> -
S7
S7<45, bool>

Member Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -10638,28 +10210,25 @@

Types

- + - - + +
NameDescriptionName
S8 -
S9 -
S8
S9

Member Functions

- + - +
NameDescriptionName
f7 -
f7
diff --git a/test-files/golden-tests/metadata/class-template-specializations-2.adoc b/test-files/golden-tests/metadata/class-template-specializations-2.adoc index 1b0801c79b..face17dd1d 100644 --- a/test-files/golden-tests/metadata/class-template-specializations-2.adoc +++ b/test-files/golden-tests/metadata/class-template-specializations-2.adoc @@ -4,30 +4,26 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -42,8 +38,10 @@ struct A; [#A-03] == A<T*> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -53,19 +51,14 @@ struct <><T*>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -73,8 +66,10 @@ struct <><T*>; [#A-03-B-05] == <><T*>::B + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -89,8 +84,10 @@ struct B; [#A-03-B-01] == <><T*>::B<U*> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -100,13 +97,12 @@ struct <><U*>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -114,8 +110,10 @@ struct <><U*>; [#A-03-B-01-C] == <><T*>::<><U*>::C + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -129,8 +127,10 @@ struct C; [#A-03-B-0b] == <><T*>::B<int> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -145,8 +145,10 @@ struct <><int>; [#A-06] == A<double> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -156,19 +158,14 @@ struct <><double>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -176,8 +173,10 @@ struct <><double>; [#A-06-D-0b] == <><double>::D + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -187,16 +186,13 @@ struct D; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -204,8 +200,10 @@ struct D; [#A-06-D-0b-E-01] == <><double>::<>::E + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -220,8 +218,10 @@ struct E; [#A-06-D-0b-E-04] == <><double>::<>::E<T*> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -231,13 +231,12 @@ struct <><T*>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -245,8 +244,10 @@ struct <><T*>; [#A-06-D-0b-E-04-F] == <><double>::<>::<><T*>::F + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -260,8 +261,10 @@ struct F; [#A-06-D-04] == <><double>::D<float> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -271,16 +274,13 @@ struct <><float>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -288,8 +288,10 @@ struct <><float>; [#A-06-D-04-G-06] == <><double>::<><float>::G + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -304,8 +306,10 @@ struct G; [#A-06-D-04-G-0c] == <><double>::<><float>::G<T*> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -320,8 +324,10 @@ struct <><T*>; [#A-06-D-07] == <><double>::D<short> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -331,16 +337,13 @@ struct <><short>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -348,8 +351,10 @@ struct <><short>; [#A-06-D-07-E-07] == <><double>::<><short>::E + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -364,8 +369,10 @@ struct E; [#A-06-D-07-E-01] == <><double>::<><short>::E<int*> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -375,13 +382,12 @@ struct <><int*>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -389,8 +395,10 @@ struct <><int*>; [#A-06-D-07-E-01-F] == <><double>::<><short>::<><int*>::F + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -404,8 +412,10 @@ struct F; [#A-02] == A<long*> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -415,19 +425,14 @@ struct <><long*>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -435,8 +440,10 @@ struct <><long*>; [#A-02-B-06] == <><long*>::B + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -451,8 +458,10 @@ struct B; [#A-02-B-0d] == <><long*>::B<int> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -467,8 +476,10 @@ struct <><int>; [#A-02-B-05] == <><long*>::B<int*> + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -478,13 +489,12 @@ struct <><int*>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -492,8 +502,10 @@ struct <><int*>; [#A-02-B-05-C] == <><long*>::<><int*>::C + === Synopsis + Declared in `<class‐template‐specializations‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/class-template-specializations-2.html b/test-files/golden-tests/metadata/class-template-specializations-2.html index c798136444..a4baeb645e 100644 --- a/test-files/golden-tests/metadata/class-template-specializations-2.html +++ b/test-files/golden-tests/metadata/class-template-specializations-2.html @@ -13,19 +13,15 @@

Types

- + - - - - + + + +
NameDescriptionName
A -
A<T*> -
A<double> -
A<long*> -
A
A<T*>
A<double>
A<long*>
@@ -66,17 +62,14 @@

Types

- + - - - + + +
NameDescriptionName
B -
B<U*> -
B<int> -
B
B<U*>
B<int>
@@ -119,13 +112,12 @@

Types

- + - +
NameDescriptionName
C -
C
@@ -185,17 +177,14 @@

Types

- + - - - + + +
NameDescriptionName
D -
D<float> -
D<short> -
D
D<float>
D<short>
@@ -220,15 +209,13 @@

Types

- + - - + +
NameDescriptionName
E -
E<T*> -
E
E<T*>
@@ -271,13 +258,12 @@

Types

- + - +
NameDescriptionName
F -
F
@@ -319,15 +305,13 @@

Types

- + - - + +
NameDescriptionName
G -
G<T*> -
G
G<T*>
@@ -388,15 +372,13 @@

Types

- + - - + +
NameDescriptionName
E -
E<int*> -
E
E<int*>
@@ -439,13 +421,12 @@

Types

- + - +
NameDescriptionName
F -
F
@@ -487,17 +468,14 @@

Types

- + - - - + + +
NameDescriptionName
B -
B<int> -
B<int*> -
B
B<int>
B<int*>
@@ -558,13 +536,12 @@

Types

- + - +
NameDescriptionName
C -
C
diff --git a/test-files/golden-tests/metadata/class-template-specializations-3.adoc b/test-files/golden-tests/metadata/class-template-specializations-3.adoc index 242ca4223a..d06ae09dfb 100644 --- a/test-files/golden-tests/metadata/class-template-specializations-3.adoc +++ b/test-files/golden-tests/metadata/class-template-specializations-3.adoc @@ -4,36 +4,28 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -43,16 +35,13 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -60,8 +49,10 @@ struct A; [#A-0e-B-07] == <>::B + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -71,19 +62,14 @@ struct B; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -91,8 +77,10 @@ struct B; [#A-0e-B-07-C] == <>::<>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -106,8 +94,10 @@ struct C; [#A-0e-B-07-D-09] == <>::<>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -122,8 +112,10 @@ struct D; [#A-0e-B-07-D-0f] == <>::<>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -138,8 +130,10 @@ struct <><bool>; [#A-0e-B-00] == <>::B<double> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -149,19 +143,14 @@ struct <><double>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -169,8 +158,10 @@ struct <><double>; [#A-0e-B-00-C] == <>::<><double>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -184,8 +175,10 @@ struct C; [#A-0e-B-00-D-09] == <>::<><double>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -200,8 +193,10 @@ struct D; [#A-0e-B-00-D-0d] == <>::<><double>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -216,8 +211,10 @@ struct <><bool>; [#A-0c] == A<long> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -227,19 +224,14 @@ struct <><long>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -247,8 +239,10 @@ struct <><long>; [#A-0c-B-0b] == <><long>::B + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -258,19 +252,14 @@ struct B; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -278,8 +267,10 @@ struct B; [#A-0c-B-0b-C] == <><long>::<>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -293,8 +284,10 @@ struct C; [#A-0c-B-0b-D-00] == <><long>::<>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -309,8 +302,10 @@ struct D; [#A-0c-B-0b-D-0b] == <><long>::<>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -325,8 +320,10 @@ struct <><bool>; [#A-0c-B-0d] == <><long>::B<double> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -336,19 +333,14 @@ struct <><double>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -356,8 +348,10 @@ struct <><double>; [#A-0c-B-0d-C] == <><long>::<><double>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -371,8 +365,10 @@ struct C; [#A-0c-B-0d-D-0c] == <><long>::<><double>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -387,8 +383,10 @@ struct D; [#A-0c-B-0d-D-03] == <><long>::<><double>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -403,8 +401,10 @@ struct <><bool>; [#A-0c-B-08] == <><long>::B<float> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -414,19 +414,14 @@ struct <><float>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -434,8 +429,10 @@ struct <><float>; [#A-0c-B-08-C] == <><long>::<><float>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -449,8 +446,10 @@ struct C; [#A-0c-B-08-D-08] == <><long>::<><float>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -465,8 +464,10 @@ struct D; [#A-0c-B-08-D-03] == <><long>::<><float>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -481,8 +482,10 @@ struct <><bool>; [#A-00] == A<short> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -492,19 +495,14 @@ struct <><short>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -512,8 +510,10 @@ struct <><short>; [#A-00-B-0e] == <><short>::B + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -528,8 +528,10 @@ struct B; [#A-00-B-07] == <><short>::B<double> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -539,19 +541,14 @@ struct <><double>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -559,8 +556,10 @@ struct <><double>; [#A-00-B-07-C] == <><short>::<><double>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -574,8 +573,10 @@ struct C; [#A-00-B-07-D-015b] == <><short>::<><double>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -590,8 +591,10 @@ struct D; [#A-00-B-07-D-0150] == <><short>::<><double>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -606,8 +609,10 @@ struct <><bool>; [#A-00-B-00] == <><short>::B<void> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -617,19 +622,14 @@ struct <><void>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -637,8 +637,10 @@ struct <><void>; [#A-00-B-00-C] == <><short>::<><void>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -652,8 +654,10 @@ struct C; [#A-00-B-00-D-03] == <><short>::<><void>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -668,8 +672,10 @@ struct D; [#A-00-B-00-D-07] == <><short>::<><void>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -684,8 +690,10 @@ struct <><bool>; [#A-01] == A<float> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -695,16 +703,13 @@ struct <><float>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -712,8 +717,10 @@ struct <><float>; [#A-01-B-07] == <><float>::B + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -728,8 +735,10 @@ struct B; [#A-01-B-08] == <><float>::B<double, double> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -739,19 +748,14 @@ struct <><double, double>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -759,8 +763,10 @@ struct <><double, double>; [#A-01-B-08-C] == <><float>::<><double, double>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -774,8 +780,10 @@ struct C; [#A-01-B-08-D-0ae] == <><float>::<><double, double>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -790,8 +798,10 @@ struct D; [#A-01-B-08-D-0af] == <><float>::<><double, double>::D<bool, bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -806,8 +816,10 @@ struct <><bool, bool>; [#A-07] == A<unsigned int> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -817,19 +829,14 @@ struct <><unsigned int>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -837,8 +844,10 @@ struct <><unsigned int>; [#A-07-B-03a] == <><unsigned int>::B + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -853,8 +862,10 @@ struct B; [#A-07-B-03e] == <><unsigned int>::B<double> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -864,19 +875,14 @@ struct <><double>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -884,8 +890,10 @@ struct <><double>; [#A-07-B-03e-C] == <><unsigned int>::<><double>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -899,8 +907,10 @@ struct C; [#A-07-B-03e-D-01] == <><unsigned int>::<><double>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -915,8 +925,10 @@ struct D; [#A-07-B-03e-D-0f] == <><unsigned int>::<><double>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -931,8 +943,10 @@ struct <><bool>; [#A-07-B-05] == <><unsigned int>::B<float> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -942,19 +956,14 @@ struct <><float>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -962,8 +971,10 @@ struct <><float>; [#A-07-B-05-C] == <><unsigned int>::<><float>::C + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -977,8 +988,10 @@ struct C; [#A-07-B-05-D-0e] == <><unsigned int>::<><float>::D + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -993,8 +1006,10 @@ struct D; [#A-07-B-05-D-01] == <><unsigned int>::<><float>::D<bool> + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1009,8 +1024,10 @@ struct <><bool>; [#E] == E + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1019,55 +1036,26 @@ struct E; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== @@ -1075,8 +1063,10 @@ struct E; [#E-m0] == <>::m0 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1087,8 +1077,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m1] == <>::m1 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1099,8 +1091,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m10] == <>::m10 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1111,8 +1105,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m11] == <>::m11 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1123,8 +1119,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m12] == <>::m12 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1135,8 +1133,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m13] == <>::m13 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1147,8 +1147,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m14] == <>::m14 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1159,8 +1161,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m2] == <>::m2 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1171,8 +1175,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m3] == <>::m3 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1183,8 +1189,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m4] == <>::m4 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1195,8 +1203,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m5] == <>::m5 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1207,8 +1217,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m6] == <>::m6 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1219,8 +1231,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m7] == <>::m7 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1231,8 +1245,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m8] == <>::m8 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -1243,8 +1259,10 @@ Declared in `<class‐template‐specializations‐3.cp [#E-m9] == <>::m9 + === Synopsis + Declared in `<class‐template‐specializations‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/class-template-specializations-3.html b/test-files/golden-tests/metadata/class-template-specializations-3.html index 6d402a3e25..0ec1912cfe 100644 --- a/test-files/golden-tests/metadata/class-template-specializations-3.html +++ b/test-files/golden-tests/metadata/class-template-specializations-3.html @@ -13,23 +13,17 @@

Types

- + - - - - - - + + + + + +
NameDescriptionName
A -
A<long> -
A<short> -
A<float> -
A<unsigned int> -
E -
A
A<long>
A<short>
A<float>
A<unsigned int>
E
@@ -52,15 +46,13 @@

Types

- + - - + +
NameDescriptionName
B -
B<double> -
B
B<double>
@@ -85,17 +77,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -173,17 +162,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -261,17 +247,14 @@

Types

- + - - - + + +
NameDescriptionName
B -
B<double> -
B<float> -
B
B<double>
B<float>
@@ -296,17 +279,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -384,17 +364,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -472,17 +449,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -560,17 +534,14 @@

Types

- + - - - + + +
NameDescriptionName
B -
B<double> -
B<void> -
B
B<double>
B<void>
@@ -613,17 +584,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -701,17 +669,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -789,15 +754,13 @@

Types

- + - - + +
NameDescriptionName
B -
B<double, double> -
B
B<double, double>
@@ -840,17 +803,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool, bool> -
C
D
D<bool, bool>
@@ -928,17 +888,14 @@

Types

- + - - - + + +
NameDescriptionName
B -
B<double> -
B<float> -
B
B<double>
B<float>
@@ -981,17 +938,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -1069,17 +1023,14 @@

Types

- + - - - + + +
NameDescriptionName
C -
D -
D<bool> -
C
D
D<bool>
@@ -1156,41 +1107,26 @@

Data Members

- + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
NameDescriptionName
m0 -
m1 -
m10 -
m11 -
m12 -
m13 -
m14 -
m2 -
m3 -
m4 -
m5 -
m6 -
m7 -
m8 -
m9 -
m0
m1
m10
m11
m12
m13
m14
m2
m3
m4
m5
m6
m7
m8
m9
diff --git a/test-files/golden-tests/metadata/class-template.adoc b/test-files/golden-tests/metadata/class-template.adoc index 670f268d6f..8ffefe5156 100644 --- a/test-files/golden-tests/metadata/class-template.adoc +++ b/test-files/golden-tests/metadata/class-template.adoc @@ -4,33 +4,27 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#C0] == C0 + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -40,28 +34,22 @@ struct C0; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -69,8 +57,10 @@ struct C0; [#C0-N0] == <>::N0 + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -79,13 +69,12 @@ struct N0; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -93,8 +82,10 @@ struct N0; [#C0-N0-z] == <>::<>::z + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -105,8 +96,10 @@ int z; [#C0-w] == <>::w + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -117,8 +110,10 @@ int w; [#C0-x] == <>::x + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -129,8 +124,10 @@ Declared in `<class‐template.cpp>` [#C0-y] == <>::y + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -141,8 +138,10 @@ T y; [#C1] == C1 + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -151,22 +150,20 @@ struct C1; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -174,8 +171,10 @@ struct C1; [#C1-N1] == <>::N1 + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -185,19 +184,14 @@ struct N1; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -205,8 +199,10 @@ struct N1; [#C1-N1-x] == <>::<>::x + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -217,8 +213,10 @@ Declared in `<class‐template.cpp>` [#C1-N1-y] == <>::<>::y + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -229,8 +227,10 @@ T y; [#C1-N1-z] == <>::<>::z + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -241,8 +241,10 @@ int z; [#C1-w] == <>::w + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -253,8 +255,10 @@ int w; [#C2] == C2 + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -264,22 +268,20 @@ struct C2; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -287,8 +289,10 @@ struct C2; [#C2-N2] == <>::N2 + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -298,22 +302,15 @@ struct N2; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== @@ -321,8 +318,10 @@ struct N2; [#C2-N2-w] == <>::<>::w + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -333,8 +332,10 @@ Declared in `<class‐template.cpp>` [#C2-N2-x] == <>::<>::x + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -345,8 +346,10 @@ T x; [#C2-N2-y] == <>::<>::y + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -357,8 +360,10 @@ U y; [#C2-N2-z] == <>::<>::z + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -369,8 +374,10 @@ int z; [#C2-v] == <>::v + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -381,8 +388,10 @@ int v; [#C3] == C3 + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -392,13 +401,12 @@ struct C3; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -406,8 +414,10 @@ struct C3; [#C3-v] == <>::v + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -418,8 +428,10 @@ int v; [#S] == S + === Synopsis + Declared in `<class‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/class-template.html b/test-files/golden-tests/metadata/class-template.html index ea4526fa38..236acbdd50 100644 --- a/test-files/golden-tests/metadata/class-template.html +++ b/test-files/golden-tests/metadata/class-template.html @@ -13,21 +13,16 @@

Types

- + - - - - - + + + + +
NameDescriptionName
C0 -
C1 -
C2 -
C3 -
S -
C0
C1
C2
C3
S
@@ -50,30 +45,26 @@

Types

- + - +
NameDescriptionName
N0 -
N0

Data Members

- + - - - + + +
NameDescriptionName
w -
x -
y -
w
x
y
@@ -97,13 +88,12 @@

Data Members

- + - +
NameDescriptionName
z -
z
@@ -187,26 +177,24 @@

Types

- + - +
NameDescriptionName
N1 -
N1

Data Members

- + - +
NameDescriptionName
w -
w
@@ -231,17 +219,14 @@

Data Members

- + - - - + + +
NameDescriptionName
x -
y -
z -
x
y
z
@@ -326,26 +311,24 @@

Types

- + - +
NameDescriptionName
N2 -
N2

Data Members

- + - +
NameDescriptionName
v -
v
@@ -370,19 +353,15 @@

Data Members

- + - - - - + + + +
NameDescriptionName
w -
x -
y -
z -
w
x
y
z
@@ -482,13 +461,12 @@

Data Members

- + - +
NameDescriptionName
v -
v
diff --git a/test-files/golden-tests/metadata/concept.adoc b/test-files/golden-tests/metadata/concept.adoc index 67638da08d..f5828a6737 100644 --- a/test-files/golden-tests/metadata/concept.adoc +++ b/test-files/golden-tests/metadata/concept.adoc @@ -4,39 +4,39 @@ [#index] == Global namespace + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Variables -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Concepts -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#f] == f + === Synopsis + Declared in `<concept.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -49,8 +49,10 @@ f(); [#x] == x + === Synopsis + Declared in `<concept.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -61,8 +63,10 @@ Declared in `<concept.cpp>` [#C] == C + === Synopsis + Declared in `<concept.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/concept.html b/test-files/golden-tests/metadata/concept.html index 60d6b6a665..6168e35fdd 100644 --- a/test-files/golden-tests/metadata/concept.html +++ b/test-files/golden-tests/metadata/concept.html @@ -13,39 +13,36 @@

Functions

- + - +
NameDescriptionName
f -
f

Variables

- + - +
NameDescriptionName
x -
x

Concepts

- + - +
NameDescriptionName
C -
C
diff --git a/test-files/golden-tests/metadata/decay-to-primary.adoc b/test-files/golden-tests/metadata/decay-to-primary.adoc index 8f1f4aa003..7350ea58ad 100644 --- a/test-files/golden-tests/metadata/decay-to-primary.adoc +++ b/test-files/golden-tests/metadata/decay-to-primary.adoc @@ -4,33 +4,27 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#S0-03] == S0 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -40,16 +34,13 @@ struct S0; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -57,8 +48,10 @@ struct S0; [#S0-03-M0] == <>::M0 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -69,8 +62,10 @@ using M0 = T; [#S0-03-M1] == <>::M1 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -82,8 +77,10 @@ using M1 = <><U>; [#S0-09] == S0<short> + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -93,16 +90,13 @@ struct <><short>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -110,8 +104,10 @@ struct <><short>; [#S0-09-M0] == <><short>::M0 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -122,8 +118,10 @@ using M0 = short; [#S0-09-M1] == <><short>::M1 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -135,8 +133,10 @@ using M1 = <><U>; [#S0-00] == S0<void> + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -146,16 +146,13 @@ struct <><void>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -163,8 +160,10 @@ struct <><void>; [#S0-00-M0] == <><void>::M0 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -175,8 +174,10 @@ using M0 = void; [#S0-00-M1] == <><void>::M1 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -188,8 +189,10 @@ using M1 = <><U>; [#A0] == A0 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -200,8 +203,10 @@ using A0 = <><void>; [#A1] == A1 + === Synopsis + Declared in `<decay‐to‐primary.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/decay-to-primary.html b/test-files/golden-tests/metadata/decay-to-primary.html index 3a7247cb47..230aa2ca3d 100644 --- a/test-files/golden-tests/metadata/decay-to-primary.html +++ b/test-files/golden-tests/metadata/decay-to-primary.html @@ -13,21 +13,16 @@

Types

- + - - - - - + + + + +
NameDescriptionName
A0 -
A1 -
S0 -
S0<short> -
S0<void> -
A0
A1
S0
S0<short>
S0<void>
@@ -50,15 +45,13 @@

Types

- + - - + +
NameDescriptionName
M0 -
M1 -
M0
M1
@@ -114,15 +107,13 @@

Types

- + - - + +
NameDescriptionName
M0 -
M1 -
M0
M1
@@ -178,15 +169,13 @@

Types

- + - - + +
NameDescriptionName
M0 -
M1 -
M0
M1
diff --git a/test-files/golden-tests/metadata/dependency-propagation.adoc b/test-files/golden-tests/metadata/dependency-propagation.adoc index c78ac2a7ec..1c05aebbdd 100644 --- a/test-files/golden-tests/metadata/dependency-propagation.adoc +++ b/test-files/golden-tests/metadata/dependency-propagation.adoc @@ -4,52 +4,47 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N] == N + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#N-A] == <>::A + === Synopsis + Declared in `<dependency‐propagation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -64,8 +59,10 @@ struct A; [#N-D] == <>::D + === Synopsis + Declared in `<dependency‐propagation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -79,8 +76,10 @@ struct D; [#N-B] == <>::B + === Synopsis + Declared in `<dependency‐propagation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -92,8 +91,10 @@ using B = <><T>; [#N-C] == <>::C + === Synopsis + Declared in `<dependency‐propagation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -105,8 +106,10 @@ using C = <><T>; [#E] == E + === Synopsis + Declared in `<dependency‐propagation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/dependency-propagation.html b/test-files/golden-tests/metadata/dependency-propagation.html index 8a4695edab..09ae012d1f 100644 --- a/test-files/golden-tests/metadata/dependency-propagation.html +++ b/test-files/golden-tests/metadata/dependency-propagation.html @@ -13,26 +13,24 @@

Namespaces

- + - +
NameDescriptionName
N -
N

Types

- + - +
NameDescriptionName
E -
E
@@ -44,19 +42,15 @@

Types

- + - - - - + + + +
NameDescriptionName
A -
B -
C -
D -
A
B
C
D
diff --git a/test-files/golden-tests/metadata/empty.adoc b/test-files/golden-tests/metadata/empty.adoc index fb780877b6..3c1e9836f0 100644 --- a/test-files/golden-tests/metadata/empty.adoc +++ b/test-files/golden-tests/metadata/empty.adoc @@ -7,4 +7,5 @@ + [.small]#Created with https://www.mrdocs.com[MrDocs]# diff --git a/test-files/golden-tests/metadata/enum.adoc b/test-files/golden-tests/metadata/enum.adoc index f95da022f1..9ab3214434 100644 --- a/test-files/golden-tests/metadata/enum.adoc +++ b/test-files/golden-tests/metadata/enum.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Enums + [cols=2] |=== | Name | Description @@ -30,12 +32,14 @@ [#E0] == E0 + E0 brief. === Synopsis + Declared in `<enum.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -45,6 +49,7 @@ enum E0; === Members + [,cols=2] |=== |Name |Description @@ -60,6 +65,7 @@ enum E0; === Description + E0 description. @@ -67,8 +73,10 @@ E0 description. [#E1] == E1 + === Synopsis + Declared in `<enum.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -78,6 +86,7 @@ enum E1 : char; === Members + [,cols=2] |=== |Name |Description @@ -90,12 +99,14 @@ enum E1 : char; [#E2] == E2 + E2 brief. === Synopsis + Declared in `<enum.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -105,6 +116,7 @@ enum E2 : int; === Members + [,cols=2] |=== |Name |Description @@ -120,6 +132,7 @@ enum E2 : int; === Description + E2 description. @@ -127,8 +140,10 @@ E2 description. [#E3] == E3 + === Synopsis + Declared in `<enum.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -138,6 +153,7 @@ enum E3 : char; === Members + [,cols=2] |=== |Name |Description diff --git a/test-files/golden-tests/metadata/explicit-conv-operator.adoc b/test-files/golden-tests/metadata/explicit-conv-operator.adoc index 6c79695dc9..e56d2014f1 100644 --- a/test-files/golden-tests/metadata/explicit-conv-operator.adoc +++ b/test-files/golden-tests/metadata/explicit-conv-operator.adoc @@ -4,30 +4,26 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#Explicit] == Explicit + === Synopsis + Declared in `<explicit‐conv‐operator.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -36,13 +32,12 @@ struct Explicit; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -50,8 +45,10 @@ struct Explicit; [#Explicit-2conversion] == <>::operator bool + === Synopsis + Declared in `<explicit‐conv‐operator.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -63,8 +60,10 @@ operator bool(); [#ExplicitExpression] == ExplicitExpression + === Synopsis + Declared in `<explicit‐conv‐operator.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -74,13 +73,12 @@ struct ExplicitExpression; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -88,8 +86,10 @@ struct ExplicitExpression; [#ExplicitExpression-2conversion] == <>::operator bool + === Synopsis + Declared in `<explicit‐conv‐operator.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -101,8 +101,10 @@ operator bool(); [#ExplicitFalse] == ExplicitFalse + === Synopsis + Declared in `<explicit‐conv‐operator.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -111,13 +113,12 @@ struct ExplicitFalse; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -125,8 +126,10 @@ struct ExplicitFalse; [#ExplicitFalse-2conversion] == <>::operator bool + === Synopsis + Declared in `<explicit‐conv‐operator.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -138,8 +141,10 @@ operator bool(); [#ExplicitTrue] == ExplicitTrue + === Synopsis + Declared in `<explicit‐conv‐operator.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -148,13 +153,12 @@ struct ExplicitTrue; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -162,8 +166,10 @@ struct ExplicitTrue; [#ExplicitTrue-2conversion] == <>::operator bool + === Synopsis + Declared in `<explicit‐conv‐operator.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/explicit-conv-operator.html b/test-files/golden-tests/metadata/explicit-conv-operator.html index ac8da9c835..19b7d4002c 100644 --- a/test-files/golden-tests/metadata/explicit-conv-operator.html +++ b/test-files/golden-tests/metadata/explicit-conv-operator.html @@ -13,19 +13,15 @@

Types

- + - - - - + + + +
NameDescriptionName
Explicit -
ExplicitExpression -
ExplicitFalse -
ExplicitTrue -
Explicit
ExplicitExpression
ExplicitFalse
ExplicitTrue
@@ -47,13 +43,12 @@

Member Functions

- + - +
NameDescriptionName
operator bool -
operator bool
@@ -94,13 +89,12 @@

Member Functions

- + - +
NameDescriptionName
operator bool -
operator bool
@@ -140,13 +134,12 @@

Member Functions

- + - +
NameDescriptionName
operator bool -
operator bool
@@ -186,13 +179,12 @@

Member Functions

- + - +
NameDescriptionName
operator bool -
operator bool
diff --git a/test-files/golden-tests/metadata/explicit-ctor.adoc b/test-files/golden-tests/metadata/explicit-ctor.adoc index e859476a74..127d43c44c 100644 --- a/test-files/golden-tests/metadata/explicit-ctor.adoc +++ b/test-files/golden-tests/metadata/explicit-ctor.adoc @@ -4,30 +4,26 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#Explicit] == Explicit + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -36,12 +32,12 @@ struct Explicit; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> [.small]#[constructor]# -| |=== @@ -49,8 +45,10 @@ struct Explicit; [#Explicit-2constructor] == <>::Explicit + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -90,8 +88,10 @@ explicit [#Explicit-2constructor-02] == <>::Explicit + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -103,8 +103,10 @@ Explicit(); [#Explicit-2constructor-00] == <>::Explicit + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -116,8 +118,10 @@ Explicit(<> const&); [#Explicit-2constructor-0b] == <>::Explicit + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -129,8 +133,10 @@ Explicit(<>&&) noexcept; [#Explicit-2constructor-03] == <>::Explicit + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -144,8 +150,10 @@ Explicit( [#ExplicitExpression] == ExplicitExpression + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -155,12 +163,12 @@ struct ExplicitExpression; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> [.small]#[constructor]# -| |=== @@ -168,8 +176,10 @@ struct ExplicitExpression; [#ExplicitExpression-2constructor] == <>::ExplicitExpression + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -209,8 +219,10 @@ explicit(B) [#ExplicitExpression-2constructor-0b] == <>::ExplicitExpression + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -222,8 +234,10 @@ ExplicitExpression(); [#ExplicitExpression-2constructor-04] == <>::ExplicitExpression + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -235,8 +249,10 @@ ExplicitExpression(<> const&); [#ExplicitExpression-2constructor-08] == <>::ExplicitExpression + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -248,8 +264,10 @@ ExplicitExpression(<>&&) noexcept; [#ExplicitExpression-2constructor-02] == <>::ExplicitExpression + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -263,8 +281,10 @@ ExplicitExpression( [#ExplicitFalse] == ExplicitFalse + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -273,12 +293,12 @@ struct ExplicitFalse; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> [.small]#[constructor]# -| |=== @@ -286,8 +306,10 @@ struct ExplicitFalse; [#ExplicitFalse-2constructor] == <>::ExplicitFalse + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -327,8 +349,10 @@ explicit(false) [#ExplicitFalse-2constructor-01] == <>::ExplicitFalse + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -340,8 +364,10 @@ ExplicitFalse(); [#ExplicitFalse-2constructor-08] == <>::ExplicitFalse + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -353,8 +379,10 @@ ExplicitFalse(<> const&); [#ExplicitFalse-2constructor-0a] == <>::ExplicitFalse + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -366,8 +394,10 @@ ExplicitFalse(<>&&) noexcept; [#ExplicitFalse-2constructor-04] == <>::ExplicitFalse + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -381,8 +411,10 @@ ExplicitFalse( [#ExplicitTrue] == ExplicitTrue + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -391,12 +423,12 @@ struct ExplicitTrue; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> [.small]#[constructor]# -| |=== @@ -404,8 +436,10 @@ struct ExplicitTrue; [#ExplicitTrue-2constructor] == <>::ExplicitTrue + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -445,8 +479,10 @@ explicit(true) [#ExplicitTrue-2constructor-0d] == <>::ExplicitTrue + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -458,8 +494,10 @@ ExplicitTrue(); [#ExplicitTrue-2constructor-04] == <>::ExplicitTrue + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -471,8 +509,10 @@ ExplicitTrue(<> const&); [#ExplicitTrue-2constructor-08] == <>::ExplicitTrue + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -484,8 +524,10 @@ ExplicitTrue(<>&&) noexcept; [#ExplicitTrue-2constructor-05] == <>::ExplicitTrue + === Synopsis + Declared in `<explicit‐ctor.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/explicit-ctor.html b/test-files/golden-tests/metadata/explicit-ctor.html index d4dbbb099f..dc1e6f4146 100644 --- a/test-files/golden-tests/metadata/explicit-ctor.html +++ b/test-files/golden-tests/metadata/explicit-ctor.html @@ -13,19 +13,15 @@

Types

- + - - - - + + + +
NameDescriptionName
Explicit -
ExplicitExpression -
ExplicitFalse -
ExplicitTrue -
Explicit
ExplicitExpression
ExplicitFalse
ExplicitTrue
@@ -47,12 +43,12 @@

Member Functions

- + - +
NameDescriptionName
Explicit [constructor]
Explicit [constructor]
@@ -184,12 +180,12 @@

Member Functions

- + - +
NameDescriptionName
ExplicitExpression [constructor]
ExplicitExpression [constructor]
@@ -320,12 +316,12 @@

Member Functions

- + - +
NameDescriptionName
ExplicitFalse [constructor]
ExplicitFalse [constructor]
@@ -456,12 +452,12 @@

Member Functions

- + - +
NameDescriptionName
ExplicitTrue [constructor]
ExplicitTrue [constructor]
diff --git a/test-files/golden-tests/metadata/explicit-deduct-guide.adoc b/test-files/golden-tests/metadata/explicit-deduct-guide.adoc index 3ea2969871..151005c0bb 100644 --- a/test-files/golden-tests/metadata/explicit-deduct-guide.adoc +++ b/test-files/golden-tests/metadata/explicit-deduct-guide.adoc @@ -4,39 +4,34 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Deduction Guides -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#X-0e] == X + === Synopsis + Declared in `<explicit‐deduct‐guide.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -51,8 +46,10 @@ struct X; [#X-0d] == <><0> + === Synopsis + Declared in `<explicit‐deduct‐guide.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -63,8 +60,10 @@ Declared in `<explicit‐deduct‐guide.cpp>` [#X-00] == <><0> + === Synopsis + Declared in `<explicit‐deduct‐guide.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -75,8 +74,10 @@ Declared in `<explicit‐deduct‐guide.cpp>` [#X-0b] == <><0> + === Synopsis + Declared in `<explicit‐deduct‐guide.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -87,8 +88,10 @@ Declared in `<explicit‐deduct‐guide.cpp>` [#X-06] == <><0> + === Synopsis + Declared in `<explicit‐deduct‐guide.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/explicit-deduct-guide.html b/test-files/golden-tests/metadata/explicit-deduct-guide.html index 2b166193ee..704463abd5 100644 --- a/test-files/golden-tests/metadata/explicit-deduct-guide.html +++ b/test-files/golden-tests/metadata/explicit-deduct-guide.html @@ -13,32 +13,27 @@

Types

- + - +
NameDescriptionName
X -
X

Deduction Guides

- + - - - - + + + +
NameDescriptionName
X<0> -
X<0> -
X<0> -
X<0> -
X<0>
X<0>
X<0>
X<0>
diff --git a/test-files/golden-tests/metadata/explicit-object-parameter.adoc b/test-files/golden-tests/metadata/explicit-object-parameter.adoc index 77f9b04d6f..23330198d9 100644 --- a/test-files/golden-tests/metadata/explicit-object-parameter.adoc +++ b/test-files/golden-tests/metadata/explicit-object-parameter.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#Optional] == Optional + === Synopsis + Declared in `<explicit‐object‐parameter.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -27,12 +29,12 @@ struct Optional; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| |=== @@ -40,8 +42,10 @@ struct Optional; [#Optional-value] == <>::value + === Synopsis + Declared in `<explicit‐object‐parameter.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -69,8 +73,10 @@ auto&& [#Optional-value-05] == <>::value + === Synopsis + Declared in `<explicit‐object‐parameter.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -84,8 +90,10 @@ value(this Self&& self); [#Optional-value-06] == <>::value + === Synopsis + Declared in `<explicit‐object‐parameter.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/explicit-object-parameter.html b/test-files/golden-tests/metadata/explicit-object-parameter.html index 2d7ee601cf..e83cb50cfc 100644 --- a/test-files/golden-tests/metadata/explicit-object-parameter.html +++ b/test-files/golden-tests/metadata/explicit-object-parameter.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
Optional -
Optional
@@ -41,12 +40,12 @@

Member Functions

- + - +
NameDescriptionName
value
value
diff --git a/test-files/golden-tests/metadata/friend-1.adoc b/test-files/golden-tests/metadata/friend-1.adoc index 7bf7da26f8..eb9f969356 100644 --- a/test-files/golden-tests/metadata/friend-1.adoc +++ b/test-files/golden-tests/metadata/friend-1.adoc @@ -4,16 +4,17 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Functions + [cols=2] |=== | Name | Description @@ -28,8 +29,10 @@ [#T] == T + === Synopsis + Declared in `<friend‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -38,6 +41,7 @@ struct T; ---- === Friends + [cols=2] |=== | Name | Description @@ -54,12 +58,14 @@ struct T; [#T-08friend] == f + f === Synopsis + Declared in `<friend‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -72,12 +78,14 @@ f(); [#f] == f + f === Synopsis + Declared in `<friend‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/friend-1.html b/test-files/golden-tests/metadata/friend-1.html index e49de486dc..91314f00b4 100644 --- a/test-files/golden-tests/metadata/friend-1.html +++ b/test-files/golden-tests/metadata/friend-1.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
T -
T

Functions

diff --git a/test-files/golden-tests/metadata/friend-2.adoc b/test-files/golden-tests/metadata/friend-2.adoc index 7fc1fda3eb..5db260bf1b 100644 --- a/test-files/golden-tests/metadata/friend-2.adoc +++ b/test-files/golden-tests/metadata/friend-2.adoc @@ -4,16 +4,17 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Functions + [cols=2] |=== | Name | Description @@ -28,8 +29,10 @@ [#T] == T + === Synopsis + Declared in `<friend‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -38,6 +41,7 @@ struct T; ---- === Friends + [cols=2] |=== | Name | Description @@ -54,12 +58,14 @@ struct T; [#T-08friend] == f + f === Synopsis + Declared in `<friend‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -72,12 +78,14 @@ f(); [#f] == f + f === Synopsis + Declared in `<friend‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/friend-2.html b/test-files/golden-tests/metadata/friend-2.html index 5a835b83ec..fc769c11be 100644 --- a/test-files/golden-tests/metadata/friend-2.html +++ b/test-files/golden-tests/metadata/friend-2.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
T -
T

Functions

diff --git a/test-files/golden-tests/metadata/friend-3.adoc b/test-files/golden-tests/metadata/friend-3.adoc index bfcc2d2dee..ee134fe60d 100644 --- a/test-files/golden-tests/metadata/friend-3.adoc +++ b/test-files/golden-tests/metadata/friend-3.adoc @@ -4,19 +4,18 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Functions + [cols=2] |=== | Name | Description @@ -31,8 +30,10 @@ [#T] == T + === Synopsis + Declared in `<friend‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -41,6 +42,7 @@ struct T; ---- === Friends + [cols=2] |=== | Name | Description @@ -57,12 +59,14 @@ struct T; [#T-08friend] == f + T::f === Synopsis + Declared in `<friend‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -75,8 +79,10 @@ f(); [#U] == U + === Synopsis + Declared in `<friend‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -85,13 +91,12 @@ struct U; ---- === Friends -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -99,8 +104,10 @@ struct U; [#U-08friend] == f + === Synopsis + Declared in `<friend‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -113,12 +120,14 @@ f(); [#f] == f + T::f === Synopsis + Declared in `<friend‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/friend-3.html b/test-files/golden-tests/metadata/friend-3.html index c941652edb..c4d969f50a 100644 --- a/test-files/golden-tests/metadata/friend-3.html +++ b/test-files/golden-tests/metadata/friend-3.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
T -
U -
T
U

Functions

@@ -113,13 +111,12 @@

Friends

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/metadata/friend-4.adoc b/test-files/golden-tests/metadata/friend-4.adoc index 96d43f0c42..ae56a5fa83 100644 --- a/test-files/golden-tests/metadata/friend-4.adoc +++ b/test-files/golden-tests/metadata/friend-4.adoc @@ -4,19 +4,18 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Functions + [cols=2] |=== | Name | Description @@ -31,8 +30,10 @@ [#T] == T + === Synopsis + Declared in `<friend‐4.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -41,13 +42,12 @@ struct T; ---- === Friends -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -55,8 +55,10 @@ struct T; [#T-08friend] == f + === Synopsis + Declared in `<friend‐4.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -69,8 +71,10 @@ f(); [#U] == U + === Synopsis + Declared in `<friend‐4.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -79,6 +83,7 @@ struct U; ---- === Friends + [cols=2] |=== | Name | Description @@ -95,12 +100,14 @@ struct U; [#U-08friend] == f + U::f === Synopsis + Declared in `<friend‐4.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -113,12 +120,14 @@ f(); [#f] == f + U::f === Synopsis + Declared in `<friend‐4.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/friend-4.html b/test-files/golden-tests/metadata/friend-4.html index 9d606aff19..c3f0f90da6 100644 --- a/test-files/golden-tests/metadata/friend-4.html +++ b/test-files/golden-tests/metadata/friend-4.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
T -
U -
T
U

Functions

@@ -58,13 +56,12 @@

Friends

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/metadata/friend-5.adoc b/test-files/golden-tests/metadata/friend-5.adoc index 4be7ac2438..bc46db028f 100644 --- a/test-files/golden-tests/metadata/friend-5.adoc +++ b/test-files/golden-tests/metadata/friend-5.adoc @@ -4,19 +4,18 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Functions + [cols=2] |=== | Name | Description @@ -31,8 +30,10 @@ [#T] == T + === Synopsis + Declared in `<friend‐5.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -41,13 +42,12 @@ struct T; ---- === Friends -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -55,8 +55,10 @@ struct T; [#T-08friend] == f + === Synopsis + Declared in `<friend‐5.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -69,8 +71,10 @@ f(); [#U] == U + === Synopsis + Declared in `<friend‐5.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -79,13 +83,12 @@ struct U; ---- === Friends -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -93,8 +96,10 @@ struct U; [#U-08friend] == f + === Synopsis + Declared in `<friend‐5.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -107,12 +112,14 @@ f(); [#f] == f + f === Synopsis + Declared in `<friend‐5.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/friend-5.html b/test-files/golden-tests/metadata/friend-5.html index d3ed1b863a..450f2e15c4 100644 --- a/test-files/golden-tests/metadata/friend-5.html +++ b/test-files/golden-tests/metadata/friend-5.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
T -
U -
T
U

Functions

@@ -58,13 +56,12 @@

Friends

- + - +
NameDescriptionName
f -
f
@@ -105,13 +102,12 @@

Friends

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/metadata/friend-6.adoc b/test-files/golden-tests/metadata/friend-6.adoc index 9e1c97f695..3790b21fef 100644 --- a/test-files/golden-tests/metadata/friend-6.adoc +++ b/test-files/golden-tests/metadata/friend-6.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Types + [cols=2] |=== | Name | Description @@ -32,12 +34,14 @@ [#T] == T + Struct T brief === Synopsis + Declared in `<friend‐6.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -46,6 +50,7 @@ struct T; ---- === Friends + [cols=2] |=== | Name | Description @@ -67,12 +72,14 @@ struct T; [#T-08friend-04cb] == <> + Friend class Z brief === Synopsis + Declared in `<friend‐6.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -83,12 +90,14 @@ friend <>; [#T-08friend-04ce] == int + Friend int brief === Synopsis + Declared in `<friend‐6.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -99,12 +108,14 @@ friend int; [#U] == U + Struct U brief === Synopsis + Declared in `<friend‐6.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -113,6 +124,7 @@ struct U; ---- === Friends + [cols=2] |=== | Name | Description @@ -129,12 +141,14 @@ struct U; [#U-08friend] == <> + Friend T brief === Synopsis + Declared in `<friend‐6.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -145,12 +159,14 @@ friend <>; [#V] == V + Struct V brief === Synopsis + Declared in `<friend‐6.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -159,6 +175,7 @@ struct V; ---- === Friends + [cols=2] |=== | Name | Description @@ -175,12 +192,14 @@ struct V; [#V-08friend] == <> + Friend struct U brief === Synopsis + Declared in `<friend‐6.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -191,8 +210,10 @@ friend <>; [#Z] == Z + === Synopsis + Declared in `<friend‐6.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/function-parm-decay.adoc b/test-files/golden-tests/metadata/function-parm-decay.adoc index e59edcfe8e..483e3b93b8 100644 --- a/test-files/golden-tests/metadata/function-parm-decay.adoc +++ b/test-files/golden-tests/metadata/function-parm-decay.adoc @@ -4,42 +4,35 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#f] == f + === Synopsis + Declared in `<function‐parm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -51,8 +44,10 @@ f(int const x); [#g] == g + === Synopsis + Declared in `<function‐parm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -64,8 +59,10 @@ g(int* x); [#h] == h + === Synopsis + Declared in `<function‐parm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -77,8 +74,10 @@ h(int x(bool)); [#i] == i + === Synopsis + Declared in `<function‐parm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -90,8 +89,10 @@ i(<>); [#T] == T + === Synopsis + Declared in `<function‐parm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -102,8 +103,10 @@ using T = int; [#U] == U + === Synopsis + Declared in `<function‐parm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/function-parm-decay.html b/test-files/golden-tests/metadata/function-parm-decay.html index bbed152b7e..e7f418d848 100644 --- a/test-files/golden-tests/metadata/function-parm-decay.html +++ b/test-files/golden-tests/metadata/function-parm-decay.html @@ -13,34 +13,28 @@

Types

- + - - + +
NameDescriptionName
T -
U -
T
U

Functions

- + - - - - + + + +
NameDescriptionName
f -
g -
h -
i -
f
g
h
i
diff --git a/test-files/golden-tests/metadata/function-template.adoc b/test-files/golden-tests/metadata/function-template.adoc index a136ec2347..3ec17eb97c 100644 --- a/test-files/golden-tests/metadata/function-template.adoc +++ b/test-files/golden-tests/metadata/function-template.adoc @@ -4,54 +4,34 @@ [#index] == Global namespace + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#f0] == f0 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -64,8 +44,10 @@ f0(int x); [#f1] == f1 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -78,8 +60,10 @@ f1(T t); [#f2] == f2 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -92,8 +76,10 @@ f2(); [#f3] == f3 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -108,8 +94,10 @@ f3(); [#g0] == g0 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -122,8 +110,10 @@ g0(int x); [#g1] == g1 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -136,8 +126,10 @@ g1(); [#g2] == g2 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -152,8 +144,10 @@ g2(); [#h0] == h0 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -166,8 +160,10 @@ h0(auto x); [#h1] == h1 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -184,8 +180,10 @@ h1( [#i] == i + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -200,8 +198,10 @@ i(); [#j0] == j0 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -214,8 +214,10 @@ j0(); [#j1] == j1 + === Synopsis + Declared in `<function‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/function-template.html b/test-files/golden-tests/metadata/function-template.html index ba6da45344..45bf6eca81 100644 --- a/test-files/golden-tests/metadata/function-template.html +++ b/test-files/golden-tests/metadata/function-template.html @@ -13,35 +13,23 @@

Functions

- + - - - - - - - - - - - - + + + + + + + + + + + +
NameDescriptionName
f0 -
f1 -
f2 -
f3 -
g0 -
g1 -
g2 -
h0 -
h1 -
i -
j0 -
j1 -
f0
f1
f2
f3
g0
g1
g2
h0
h1
i
j0
j1
diff --git a/test-files/golden-tests/metadata/function-tparm-decay.adoc b/test-files/golden-tests/metadata/function-tparm-decay.adoc index f4203be7b3..04ce851f95 100644 --- a/test-files/golden-tests/metadata/function-tparm-decay.adoc +++ b/test-files/golden-tests/metadata/function-tparm-decay.adoc @@ -4,42 +4,35 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#f] == f + === Synopsis + Declared in `<function‐tparm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -52,8 +45,10 @@ f(); [#g] == g + === Synopsis + Declared in `<function‐tparm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -66,8 +61,10 @@ g(); [#h] == h + === Synopsis + Declared in `<function‐tparm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -80,8 +77,10 @@ h(); [#i] == i + === Synopsis + Declared in `<function‐tparm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -94,8 +93,10 @@ i(); [#T] == T + === Synopsis + Declared in `<function‐tparm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -106,8 +107,10 @@ using T = int; [#U] == U + === Synopsis + Declared in `<function‐tparm‐decay.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/function-tparm-decay.html b/test-files/golden-tests/metadata/function-tparm-decay.html index de801b6e70..ef2f4fb7fb 100644 --- a/test-files/golden-tests/metadata/function-tparm-decay.html +++ b/test-files/golden-tests/metadata/function-tparm-decay.html @@ -13,34 +13,28 @@

Types

- + - - + +
NameDescriptionName
T -
U -
T
U

Functions

- + - - - - + + + +
NameDescriptionName
f -
g -
h -
i -
f
g
h
i
diff --git a/test-files/golden-tests/metadata/implicit-instantiation-member-ref.adoc b/test-files/golden-tests/metadata/implicit-instantiation-member-ref.adoc index b8cb706241..163a0b701e 100644 --- a/test-files/golden-tests/metadata/implicit-instantiation-member-ref.adoc +++ b/test-files/golden-tests/metadata/implicit-instantiation-member-ref.adoc @@ -4,30 +4,26 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== [#S0-03] == S0 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -37,13 +33,12 @@ struct S0; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -51,8 +46,10 @@ struct S0; [#S0-03-S2] == <>::S2 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -62,16 +59,13 @@ struct S2; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -79,8 +73,10 @@ struct S2; [#S0-03-S2-M2] == <>::<>::M2 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -91,8 +87,10 @@ using M2 = U; [#S0-03-S2-M3] == <>::<>::M3 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -104,8 +102,10 @@ using M3 = <><U>; [#S0-00] == S0<void> + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -115,16 +115,13 @@ struct <><void>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -132,8 +129,10 @@ struct <><void>; [#S0-00-S2-0d] == <><void>::S2 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -148,8 +147,10 @@ struct S2; [#S0-00-S2-02] == <><void>::S2<char> + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -159,16 +160,13 @@ struct <><char>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -176,8 +174,10 @@ struct <><char>; [#S0-00-S2-02-M2] == <><void>::<><char>::M2 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -188,8 +188,10 @@ using M2 = char; [#S0-00-S2-02-M3] == <><void>::<><char>::M3 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -201,8 +203,10 @@ using M3 = <><char>; [#A5] == A5 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -213,8 +217,10 @@ using A5 = <><void>; [#A9] == A9 + === Synopsis + Declared in `<implicit‐instantiation‐member‐ref.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/implicit-instantiation-member-ref.html b/test-files/golden-tests/metadata/implicit-instantiation-member-ref.html index c6e4a6d657..dcc4544113 100644 --- a/test-files/golden-tests/metadata/implicit-instantiation-member-ref.html +++ b/test-files/golden-tests/metadata/implicit-instantiation-member-ref.html @@ -13,19 +13,15 @@

Types

- + - - - - + + + +
NameDescriptionName
A5 -
A9 -
S0 -
S0<void> -
A5
A9
S0
S0<void>
@@ -48,13 +44,12 @@

Types

- + - +
NameDescriptionName
S2 -
S2
@@ -79,15 +74,13 @@

Types

- + - - + +
NameDescriptionName
M2 -
M3 -
M2
M3
@@ -143,15 +136,13 @@

Types

- + - - + +
NameDescriptionName
S2 -
S2<char> -
S2
S2<char>
@@ -194,15 +185,13 @@

Types

- + - - + +
NameDescriptionName
M2 -
M3 -
M2
M3
diff --git a/test-files/golden-tests/metadata/local-class.adoc b/test-files/golden-tests/metadata/local-class.adoc index 6ee35418e8..87467bdf96 100644 --- a/test-files/golden-tests/metadata/local-class.adoc +++ b/test-files/golden-tests/metadata/local-class.adoc @@ -4,30 +4,31 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#B] == B + === Synopsis + Declared in `<local‐class.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -42,8 +43,10 @@ struct B [#f] == f + === Synopsis + Declared in `<local‐class.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/local-class.html b/test-files/golden-tests/metadata/local-class.html index e984a06905..a4cc3b6a58 100644 --- a/test-files/golden-tests/metadata/local-class.html +++ b/test-files/golden-tests/metadata/local-class.html @@ -13,26 +13,24 @@

Types

- + - +
NameDescriptionName
B -
B

Functions

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/metadata/mem-fn.adoc b/test-files/golden-tests/metadata/mem-fn.adoc index 73151fb65b..1b1a236a1a 100644 --- a/test-files/golden-tests/metadata/mem-fn.adoc +++ b/test-files/golden-tests/metadata/mem-fn.adoc @@ -4,72 +4,40 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#T01] == T01 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -78,13 +46,12 @@ struct T01; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -92,8 +59,10 @@ struct T01; [#T01-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -105,8 +74,10 @@ f(); [#T02] == T02 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -115,13 +86,12 @@ struct T02; ---- === Static Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -129,8 +99,10 @@ struct T02; [#T02-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -143,8 +115,10 @@ f(); [#T03] == T03 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -153,13 +127,12 @@ struct T03; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -167,8 +140,10 @@ struct T03; [#T03-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -180,8 +155,10 @@ f() &; [#T04] == T04 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -190,13 +167,12 @@ struct T04; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -204,8 +180,10 @@ struct T04; [#T04-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -217,8 +195,10 @@ f() &&; [#T05] == T05 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -227,13 +207,12 @@ struct T05; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -241,8 +220,10 @@ struct T05; [#T05-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -254,8 +235,10 @@ f() const; [#T06] == T06 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -264,13 +247,12 @@ struct T06; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -278,8 +260,10 @@ struct T06; [#T06-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -292,8 +276,10 @@ f(); [#T08] == T08 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -302,13 +288,12 @@ struct T08; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -316,8 +301,10 @@ struct T08; [#T08-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -329,8 +316,10 @@ f(); [#T09] == T09 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -339,13 +328,12 @@ struct T09; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -353,8 +341,10 @@ struct T09; [#T09-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -366,8 +356,10 @@ f() noexcept; [#T10] == T10 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -376,13 +368,12 @@ struct T10; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -390,8 +381,10 @@ struct T10; [#T10-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -403,8 +396,10 @@ f(); [#T11] == T11 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -413,13 +408,12 @@ struct T11; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -427,8 +421,10 @@ struct T11; [#T11-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -440,8 +436,10 @@ f(); [#T12] == T12 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -450,13 +448,12 @@ struct T12; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -464,8 +461,10 @@ struct T12; [#T12-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -477,8 +476,10 @@ f(...); [#T13] == T13 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -487,13 +488,12 @@ struct T13; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -501,8 +501,10 @@ struct T13; [#T13-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -515,8 +517,10 @@ f(); [#T14] == T14 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -525,13 +529,12 @@ struct T14; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -539,8 +542,10 @@ struct T14; [#T14-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -553,8 +558,10 @@ f() = 0; [#T15] == T15 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -563,13 +570,12 @@ struct T15; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -577,8 +583,10 @@ struct T15; [#T15-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -590,8 +598,10 @@ f() volatile; [#T16] == T16 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -600,13 +610,12 @@ struct T16; ---- === Static Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -614,8 +623,10 @@ struct T16; [#T16-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -628,8 +639,10 @@ f(); [#T17] == T17 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -639,12 +652,12 @@ struct T17 ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| |=== @@ -652,8 +665,10 @@ struct T17 [#T17-f] == <>::f + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -666,8 +681,10 @@ f() override; [#U] == U + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -676,25 +693,21 @@ struct U; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Static Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -702,8 +715,10 @@ struct U; [#U-f1] == <>::f1 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -716,8 +731,10 @@ f1(...) const volatile noexcept; [#U-f2] == <>::f2 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -731,8 +748,10 @@ f2() noexcept; [#U-f3] == <>::f3 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -745,8 +764,10 @@ f3() const volatile noexcept = 0; [#V] == V + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -756,24 +777,21 @@ struct V ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| |=== === Static Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -781,8 +799,10 @@ struct V [#V-f3] == <>::f3 + === Synopsis + Declared in `<mem‐fn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/mem-fn.html b/test-files/golden-tests/metadata/mem-fn.html index 3580b175ff..06f4fb5253 100644 --- a/test-files/golden-tests/metadata/mem-fn.html +++ b/test-files/golden-tests/metadata/mem-fn.html @@ -13,47 +13,29 @@

Types

- + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + +
NameDescriptionName
T01 -
T02 -
T03 -
T04 -
T05 -
T06 -
T08 -
T09 -
T10 -
T11 -
T12 -
T13 -
T14 -
T15 -
T16 -
T17 -
U -
V -
T01
T02
T03
T04
T05
T06
T08
T09
T10
T11
T12
T13
T14
T15
T16
T17
U
V
@@ -75,13 +57,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -121,13 +102,12 @@

Static Member Functions

- + - +
NameDescriptionName
f -
f
@@ -168,13 +148,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -214,13 +193,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -260,13 +238,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -306,13 +283,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -353,13 +329,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -399,13 +374,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -445,13 +419,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -491,13 +464,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -537,13 +509,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -583,13 +554,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -630,13 +600,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -677,13 +646,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -723,13 +691,12 @@

Static Member Functions

- + - +
NameDescriptionName
f -
f
@@ -771,12 +738,12 @@

Member Functions

- + - +
NameDescriptionName
f
f
@@ -817,28 +784,25 @@

Member Functions

- + - - + +
NameDescriptionName
f1 -
f3 -
f1
f3

Static Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -915,27 +879,25 @@

Member Functions

- + - - + +
NameDescriptionName
f1 -
f3
f1
f3

Static Member Functions

- + - +
NameDescriptionName
f2 -
f2
diff --git a/test-files/golden-tests/metadata/namespace-alias-1.adoc b/test-files/golden-tests/metadata/namespace-alias-1.adoc index 6d9d35957b..a5114a01a5 100644 --- a/test-files/golden-tests/metadata/namespace-alias-1.adoc +++ b/test-files/golden-tests/metadata/namespace-alias-1.adoc @@ -4,34 +4,36 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Namespace Aliases -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#LongName] == LongName + [#A] == A + === Synopsis + Declared in `<namespace‐alias‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/namespace-alias-1.html b/test-files/golden-tests/metadata/namespace-alias-1.html index 08f48becee..d7cd396c43 100644 --- a/test-files/golden-tests/metadata/namespace-alias-1.html +++ b/test-files/golden-tests/metadata/namespace-alias-1.html @@ -13,26 +13,24 @@

Namespaces

- + - +
NameDescriptionName
LongName -
LongName

Namespace Aliases

- + - +
NameDescriptionName
A -
A
diff --git a/test-files/golden-tests/metadata/namespace-alias-2.adoc b/test-files/golden-tests/metadata/namespace-alias-2.adoc index 5407a626cc..55d4bee6fd 100644 --- a/test-files/golden-tests/metadata/namespace-alias-2.adoc +++ b/test-files/golden-tests/metadata/namespace-alias-2.adoc @@ -4,37 +4,37 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Namespace Aliases -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#LongName] == LongName + [#A] == A + === Synopsis + Declared in `<namespace‐alias‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -45,8 +45,10 @@ namespace A = <>; [#B] == B + === Synopsis + Declared in `<namespace‐alias‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/namespace-alias-2.html b/test-files/golden-tests/metadata/namespace-alias-2.html index 33e7cc544f..0f95489acb 100644 --- a/test-files/golden-tests/metadata/namespace-alias-2.html +++ b/test-files/golden-tests/metadata/namespace-alias-2.html @@ -13,28 +13,25 @@

Namespaces

- + - +
NameDescriptionName
LongName -
LongName

Namespace Aliases

- + - - + +
NameDescriptionName
A -
B -
A
B
diff --git a/test-files/golden-tests/metadata/namespace-alias-3.adoc b/test-files/golden-tests/metadata/namespace-alias-3.adoc index 199d812598..339b07b8c2 100644 --- a/test-files/golden-tests/metadata/namespace-alias-3.adoc +++ b/test-files/golden-tests/metadata/namespace-alias-3.adoc @@ -4,37 +4,37 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Namespace Aliases -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#LongName] == LongName + [#A] == A + === Synopsis + Declared in `<namespace‐alias‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -45,8 +45,10 @@ namespace A = <>; [#B] == B + === Synopsis + Declared in `<namespace‐alias‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/namespace-alias-3.html b/test-files/golden-tests/metadata/namespace-alias-3.html index 60b5102e43..c821b46fef 100644 --- a/test-files/golden-tests/metadata/namespace-alias-3.html +++ b/test-files/golden-tests/metadata/namespace-alias-3.html @@ -13,28 +13,25 @@

Namespaces

- + - +
NameDescriptionName
LongName -
LongName

Namespace Aliases

- + - - + +
NameDescriptionName
A -
B -
A
B
diff --git a/test-files/golden-tests/metadata/namespace.adoc b/test-files/golden-tests/metadata/namespace.adoc index f99f5bc403..3c4b0f4169 100644 --- a/test-files/golden-tests/metadata/namespace.adoc +++ b/test-files/golden-tests/metadata/namespace.adoc @@ -4,68 +4,61 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <<00namespace,`<unnamed>`>> -| - | <> -| - | <> -| - | <> -| - |=== [#00namespace] == Unnamed namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <<00namespace-G,`G`>> -| - | <<00namespace-H,`H`>> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <<00namespace-f10,`f10`>> -| - |=== [#00namespace-G] == G + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <<00namespace-G-f11,`f11`>> -| - |=== [#00namespace-G-f11] == <<00namespace-G,G>>::f11 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -77,21 +70,23 @@ f11(); [#00namespace-H] == H + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <<00namespace-H-f12,`f12`>> -| - |=== [#00namespace-H-f12] == <<00namespace-H,H>>::f12 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -103,8 +98,10 @@ f12(); [#00namespace-f10] == f10 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -116,49 +113,46 @@ f10(); [#A] == A + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A-00namespace] == Unnamed namespace + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A-00namespace-f3] == <>::f3 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -170,21 +164,23 @@ f3(); [#A-B] == <>::B + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A-B-f1] == <>::<>::f1 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -196,21 +192,23 @@ f1(); [#A-C] == <>::C + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A-C-f2] == <>::<>::f2 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -222,8 +220,10 @@ f2(); [#A-f0] == <>::f0 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -235,49 +235,46 @@ f0(); [#D] == D + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#D-00namespace] == Unnamed namespace + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#D-00namespace-f8] == <>::f8 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -289,21 +286,23 @@ f8(); [#D-E] == <>::E + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#D-E-f6] == <>::<>::f6 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -315,21 +314,23 @@ f6(); [#D-F] == <>::F + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#D-F-f7] == <>::<>::f7 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -341,8 +342,10 @@ f7(); [#D-f5] == <>::f5 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -354,34 +357,36 @@ f5(); [#I] == I + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#I-00namespace] == Unnamed namespace + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#I-00namespace-f14] == <>::f14 + === Synopsis + Declared in `<namespace.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/namespace.html b/test-files/golden-tests/metadata/namespace.html index 5a6384ae12..2eb2648c85 100644 --- a/test-files/golden-tests/metadata/namespace.html +++ b/test-files/golden-tests/metadata/namespace.html @@ -13,19 +13,15 @@

Namespaces

- + - - - - + + + +
NameDescriptionName
<unnamed> -
A -
D -
I -
<unnamed>
A
D
I
@@ -37,28 +33,25 @@

Namespaces

- + - - + +
NameDescriptionName
G -
H -
G
H

Functions

- + - +
NameDescriptionName
f10 -
f10
@@ -70,13 +63,12 @@

Functions

- + - +
NameDescriptionName
f11 -
f11
@@ -104,13 +96,12 @@

Functions

- + - +
NameDescriptionName
f12 -
f12
@@ -154,30 +145,26 @@

Namespaces

- + - - - + + +
NameDescriptionName
<unnamed> -
B -
C -
<unnamed>
B
C

Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -189,13 +176,12 @@

Functions

- + - +
NameDescriptionName
f3 -
f3
@@ -223,13 +209,12 @@

Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -257,13 +242,12 @@

Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -307,30 +291,26 @@

Namespaces

- + - - - + + +
NameDescriptionName
<unnamed> -
E -
F -
<unnamed>
E
F

Functions

- + - +
NameDescriptionName
f5 -
f5
@@ -342,13 +322,12 @@

Functions

- + - +
NameDescriptionName
f8 -
f8
@@ -376,13 +355,12 @@

Functions

- + - +
NameDescriptionName
f6 -
f6
@@ -410,13 +388,12 @@

Functions

- + - +
NameDescriptionName
f7 -
f7
@@ -460,13 +437,12 @@

Namespaces

- + - +
NameDescriptionName
<unnamed> -
<unnamed>
@@ -478,13 +454,12 @@

Functions

- + - +
NameDescriptionName
f14 -
f14
diff --git a/test-files/golden-tests/metadata/no_unique_address.adoc b/test-files/golden-tests/metadata/no_unique_address.adoc index c6553e6ef9..61f0ccae6e 100644 --- a/test-files/golden-tests/metadata/no_unique_address.adoc +++ b/test-files/golden-tests/metadata/no_unique_address.adoc @@ -4,24 +4,24 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#Empty] == Empty + === Synopsis + Declared in `<no_unique_address.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -35,8 +35,10 @@ struct Empty; [#T] == T + === Synopsis + Declared in `<no_unique_address.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -45,16 +47,13 @@ struct T; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -62,8 +61,10 @@ struct T; [#T-e] == <>::e + === Synopsis + Declared in `<no_unique_address.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -75,8 +76,10 @@ Declared in `<no_unique_address.cpp>` [#T-i] == <>::i + === Synopsis + Declared in `<no_unique_address.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/no_unique_address.html b/test-files/golden-tests/metadata/no_unique_address.html index 77307ce40b..db369bac25 100644 --- a/test-files/golden-tests/metadata/no_unique_address.html +++ b/test-files/golden-tests/metadata/no_unique_address.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
Empty -
T -
Empty
T
@@ -60,15 +58,13 @@

Data Members

- + - - + +
NameDescriptionName
e -
i -
e
i
diff --git a/test-files/golden-tests/metadata/noreturn.adoc b/test-files/golden-tests/metadata/noreturn.adoc index fb1a36e6da..e90d9c4bf1 100644 --- a/test-files/golden-tests/metadata/noreturn.adoc +++ b/test-files/golden-tests/metadata/noreturn.adoc @@ -4,30 +4,31 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#T] == T + === Synopsis + Declared in `<noreturn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -36,31 +37,28 @@ struct T; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Static Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Friends -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -68,8 +66,10 @@ struct T; [#T-f2] == <>::f2 + === Synopsis + Declared in `<noreturn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -83,8 +83,10 @@ f2(); [#T-f3] == <>::f3 + === Synopsis + Declared in `<noreturn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -97,8 +99,10 @@ f3(); [#T-08friend] == f1 + === Synopsis + Declared in `<noreturn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -111,8 +115,10 @@ f1(); [#f1] == f1 + === Synopsis + Declared in `<noreturn.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/noreturn.html b/test-files/golden-tests/metadata/noreturn.html index bfbb66424e..85e6a9f064 100644 --- a/test-files/golden-tests/metadata/noreturn.html +++ b/test-files/golden-tests/metadata/noreturn.html @@ -13,26 +13,24 @@

Types

- + - +
NameDescriptionName
T -
T

Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -54,39 +52,36 @@

Member Functions

- + - +
NameDescriptionName
f3 -
f3

Static Member Functions

- + - +
NameDescriptionName
f2 -
f2

Friends

- + - +
NameDescriptionName
f1 -
f1
diff --git a/test-files/golden-tests/metadata/ns-variables.adoc b/test-files/golden-tests/metadata/ns-variables.adoc index 47b84bf4c1..d1b059ecfa 100644 --- a/test-files/golden-tests/metadata/ns-variables.adoc +++ b/test-files/golden-tests/metadata/ns-variables.adoc @@ -4,54 +4,39 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Variables -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#T] == T + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -65,8 +50,10 @@ struct T; [#i] == i + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -78,8 +65,10 @@ int const i = 0; [#j] == j + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -90,8 +79,10 @@ int j = 0; [#k] == k + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -104,8 +95,10 @@ int const k = 1; [#l] == l + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -117,8 +110,10 @@ int l = 1; [#pi] == pi + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -129,8 +124,10 @@ double pi = 3.14; [#t] == t + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -142,8 +139,10 @@ extern [#x0] == x0 + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -155,8 +154,10 @@ int x0 = 0; [#x1] == x1 + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -169,8 +170,10 @@ int x1 = 0; [#x2] == x2 + === Synopsis + Declared in `<ns‐variables.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/ns-variables.html b/test-files/golden-tests/metadata/ns-variables.html index bfd3de672e..51ae20c1bb 100644 --- a/test-files/golden-tests/metadata/ns-variables.html +++ b/test-files/golden-tests/metadata/ns-variables.html @@ -13,42 +13,32 @@

Types

- + - +
NameDescriptionName
T -
T

Variables

- + - - - - - - - - - + + + + + + + + +
NameDescriptionName
i -
j -
k -
l -
pi -
t -
x0 -
x1 -
x2 -
i
j
k
l
pi
t
x0
x1
x2
diff --git a/test-files/golden-tests/metadata/out-of-line-record-def.adoc b/test-files/golden-tests/metadata/out-of-line-record-def.adoc index 0578a478b0..0e0bde38f2 100644 --- a/test-files/golden-tests/metadata/out-of-line-record-def.adoc +++ b/test-files/golden-tests/metadata/out-of-line-record-def.adoc @@ -4,34 +4,36 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N] == N + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#N-S] == <>::S + === Synopsis + Declared in `<out‐of‐line‐record‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/out-of-line-record-def.html b/test-files/golden-tests/metadata/out-of-line-record-def.html index ff36b8cb14..72a45fd4da 100644 --- a/test-files/golden-tests/metadata/out-of-line-record-def.html +++ b/test-files/golden-tests/metadata/out-of-line-record-def.html @@ -13,13 +13,12 @@

Namespaces

- + - +
NameDescriptionName
N -
N
@@ -31,13 +30,12 @@

Types

- + - +
NameDescriptionName
S -
S
diff --git a/test-files/golden-tests/metadata/overloaded-op-1.adoc b/test-files/golden-tests/metadata/overloaded-op-1.adoc index 988db0e20a..3c3ba53d78 100644 --- a/test-files/golden-tests/metadata/overloaded-op-1.adoc +++ b/test-files/golden-tests/metadata/overloaded-op-1.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#T] == T + === Synopsis + Declared in `<overloaded‐op‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -27,13 +29,12 @@ struct T; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -41,8 +42,10 @@ struct T; [#T-operator_plus] == <>::operator+ + === Synopsis + Declared in `<overloaded‐op‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/overloaded-op-1.html b/test-files/golden-tests/metadata/overloaded-op-1.html index 6adde92296..15ec8b4158 100644 --- a/test-files/golden-tests/metadata/overloaded-op-1.html +++ b/test-files/golden-tests/metadata/overloaded-op-1.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
T -
T
@@ -41,13 +40,12 @@

Member Functions

- + - +
NameDescriptionName
operator+ -
operator+
diff --git a/test-files/golden-tests/metadata/overloaded-op-2.adoc b/test-files/golden-tests/metadata/overloaded-op-2.adoc index e5a9062e3d..de6842d40f 100644 --- a/test-files/golden-tests/metadata/overloaded-op-2.adoc +++ b/test-files/golden-tests/metadata/overloaded-op-2.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#T] == T + === Synopsis + Declared in `<overloaded‐op‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -27,13 +29,12 @@ struct T; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -41,8 +42,10 @@ struct T; [#T-operator_plus] == <>::operator+ + === Synopsis + Declared in `<overloaded‐op‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/overloaded-op-2.html b/test-files/golden-tests/metadata/overloaded-op-2.html index c325faf109..29bb8c0286 100644 --- a/test-files/golden-tests/metadata/overloaded-op-2.html +++ b/test-files/golden-tests/metadata/overloaded-op-2.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
T -
T
@@ -41,13 +40,12 @@

Member Functions

- + - +
NameDescriptionName
operator+ -
operator+
diff --git a/test-files/golden-tests/metadata/record-1.adoc b/test-files/golden-tests/metadata/record-1.adoc index d0cd397dff..d675d5319f 100644 --- a/test-files/golden-tests/metadata/record-1.adoc +++ b/test-files/golden-tests/metadata/record-1.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#T] == T + === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -27,34 +29,27 @@ struct T; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Protected Member Functions + [cols=2] |=== | Name | Description @@ -80,8 +75,10 @@ struct T; [#T-f1] == <>::f1 + === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -93,8 +90,10 @@ f1(); [#T-f2] == <>::f2 + === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -106,8 +105,10 @@ f2(); [#T-f3] == <>::f3 + === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -119,12 +120,14 @@ f3(); [#T-g1] == <>::g1 + brief‐g1 === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -135,6 +138,7 @@ g1(); === Description + desc @@ -142,12 +146,14 @@ desc [#T-g2] == <>::g2 + brief‐g2 === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -158,6 +164,7 @@ g2(); === Return Value + the number 2 @@ -165,12 +172,14 @@ the number 2 [#T-g3] == <>::g3 + brief‐g3 === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -181,12 +190,14 @@ g3(int x); === Return Value + the separator === Parameters + |=== | Name | Description @@ -199,8 +210,10 @@ the separator [#T-U1] == <>::U1 + === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -211,8 +224,10 @@ using U1 = int; [#T-U2] == <>::U2 + === Synopsis + Declared in `<record‐1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/record-1.html b/test-files/golden-tests/metadata/record-1.html index 5c26a2282d..9c4a511da0 100644 --- a/test-files/golden-tests/metadata/record-1.html +++ b/test-files/golden-tests/metadata/record-1.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
T -
T
@@ -41,32 +40,27 @@

Types

- + - - + +
NameDescriptionName
U1 -
U2 -
U1
U2

Member Functions

- + - - - + + +
NameDescriptionName
f1 -
f2 -
f3 -
f1
f2
f3
diff --git a/test-files/golden-tests/metadata/record-access.adoc b/test-files/golden-tests/metadata/record-access.adoc index e656e59ce1..6a9e5200a6 100644 --- a/test-files/golden-tests/metadata/record-access.adoc +++ b/test-files/golden-tests/metadata/record-access.adoc @@ -4,27 +4,25 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== [#C0] == C0 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -33,40 +31,39 @@ class C0; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Protected Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Private Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#C0-f0] == <>::f0 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -78,8 +75,10 @@ f0(); [#C0-f1] == <>::f1 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -91,8 +90,10 @@ f1(); [#C0-f2] == <>::f2 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -104,8 +105,10 @@ f2(); [#S0] == S0 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -114,40 +117,39 @@ struct S0; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Protected Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Private Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#S0-f0] == <>::f0 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -159,8 +161,10 @@ f0(); [#S0-f1] == <>::f1 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -172,8 +176,10 @@ f1(); [#S0-f2] == <>::f2 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -185,8 +191,10 @@ f2(); [#U0] == U0 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -195,40 +203,39 @@ union U0; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Protected Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Private Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#U0-f0] == <>::f0 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -240,8 +247,10 @@ f0(); [#U0-f1] == <>::f1 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -253,8 +262,10 @@ f1(); [#U0-f2] == <>::f2 + === Synopsis + Declared in `<record‐access.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/record-access.html b/test-files/golden-tests/metadata/record-access.html index 9d1f76a994..9b823bd0cf 100644 --- a/test-files/golden-tests/metadata/record-access.html +++ b/test-files/golden-tests/metadata/record-access.html @@ -13,17 +13,14 @@

Types

- + - - - + + +
NameDescriptionName
C0 -
S0 -
U0 -
C0
S0
U0
@@ -45,13 +42,12 @@

Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -59,13 +55,12 @@

Protected Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -73,13 +68,12 @@

Private Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -149,13 +143,12 @@

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -163,13 +156,12 @@

Protected Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -177,13 +169,12 @@

Private Member Functions

- + - +
NameDescriptionName
f2 -
f2
@@ -253,13 +244,12 @@

Member Functions

- + - +
NameDescriptionName
f0 -
f0
@@ -267,13 +257,12 @@

Protected Member Functions

- + - +
NameDescriptionName
f1 -
f1
@@ -281,13 +270,12 @@

Private Member Functions

- + - +
NameDescriptionName
f2 -
f2
diff --git a/test-files/golden-tests/metadata/record-data.adoc b/test-files/golden-tests/metadata/record-data.adoc index 8f80344d32..35dabe89d8 100644 --- a/test-files/golden-tests/metadata/record-data.adoc +++ b/test-files/golden-tests/metadata/record-data.adoc @@ -4,33 +4,27 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#T] == T + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -39,25 +33,16 @@ struct T; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== @@ -65,8 +50,10 @@ struct T; [#T-i] == <>::i + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -77,8 +64,10 @@ int i; [#T-j] == <>::j + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -89,8 +78,10 @@ double j; [#T-k] == <>::k + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -102,8 +93,10 @@ int k; [#T-l] == <>::l + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -114,8 +107,10 @@ int l : 8; [#T-m] == <>::m + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -126,8 +121,10 @@ int m : 4 + 4; [#U] == U + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -136,13 +133,12 @@ struct U; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -150,8 +146,10 @@ struct U; [#U-t] == <>::t + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -162,8 +160,10 @@ Declared in `<record‐data.cpp>` [#V] == V + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -173,33 +173,31 @@ class V; === Protected Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Private Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#V-i] == <>::i + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -210,8 +208,10 @@ int i; [#V-j] == <>::j + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -222,8 +222,10 @@ unsigned long j; [#V-k] == <>::k + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -234,8 +236,10 @@ double k; [#W] == W + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -244,13 +248,12 @@ struct W; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -258,8 +261,10 @@ struct W; [#W-buf] == <>::buf + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -270,8 +275,10 @@ char buf[64]; [#X] == X + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -283,34 +290,24 @@ struct X; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== @@ -318,8 +315,10 @@ struct X; [#X-Q] == <>::Q + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -330,8 +329,10 @@ using Q = P; [#X-x0] == <>::x0 + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -342,8 +343,10 @@ int x0 = 0; [#X-x1] == <>::x1 + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -354,8 +357,10 @@ P x1; [#X-x2] == <>::x2 + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -366,8 +371,10 @@ P const x2[32]; [#X-x3] == <>::x3 + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -378,8 +385,10 @@ Declared in `<record‐data.cpp>` [#X-x4] == <>::x4 + === Synopsis + Declared in `<record‐data.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/record-data.html b/test-files/golden-tests/metadata/record-data.html index 373a456e5a..a6b52c041f 100644 --- a/test-files/golden-tests/metadata/record-data.html +++ b/test-files/golden-tests/metadata/record-data.html @@ -13,21 +13,16 @@

Types

- + - - - - - + + + + +
NameDescriptionName
T -
U -
V -
W -
X -
T
U
V
W
X
@@ -49,21 +44,16 @@

Data Members

- + - - - - - + + + + +
NameDescriptionName
i -
j -
k -
l -
m -
i
j
k
l
m
@@ -163,13 +153,12 @@

Data Members

- + - +
NameDescriptionName
t -
t
@@ -209,13 +198,12 @@

Protected Data Members

- + - +
NameDescriptionName
j -
j
@@ -223,15 +211,13 @@

Private Data Members

- + - - + +
NameDescriptionName
i -
k -
i
k
@@ -298,13 +284,12 @@

Data Members

- + - +
NameDescriptionName
buf -
buf
@@ -346,34 +331,28 @@

Types

- + - +
NameDescriptionName
Q -
Q

Data Members

- + - - - - - + + + + +
NameDescriptionName
x0 -
x1 -
x2 -
x3 -
x4 -
x0
x1
x2
x3
x4
diff --git a/test-files/golden-tests/metadata/record-inheritance.adoc b/test-files/golden-tests/metadata/record-inheritance.adoc index c61c71bd54..af82dd2e2b 100644 --- a/test-files/golden-tests/metadata/record-inheritance.adoc +++ b/test-files/golden-tests/metadata/record-inheritance.adoc @@ -4,66 +4,38 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#C0] == C0 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -77,8 +49,10 @@ class C0; [#C1] == C1 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -93,8 +67,10 @@ class C1 [#C2] == C2 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -109,8 +85,10 @@ class C2 [#C3] == C3 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -125,8 +103,10 @@ class C3 [#C4] == C4 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -141,8 +121,10 @@ class C4 [#C5] == C5 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -157,8 +139,10 @@ class C5 [#C6] == C6 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -173,8 +157,10 @@ class C6 [#C7] == C7 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -190,8 +176,10 @@ class C7 [#S0] == S0 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -205,8 +193,10 @@ struct S0; [#S1] == S1 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -220,8 +210,10 @@ struct S1; [#S2] == S2 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -236,8 +228,10 @@ struct S2 [#S3] == S3 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -252,8 +246,10 @@ struct S3 [#S4] == S4 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -269,8 +265,10 @@ struct S4 [#S5] == S5 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -286,8 +284,10 @@ struct S5 [#S6] == S6 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -303,8 +303,10 @@ struct S6 [#U0] == U0 + === Synopsis + Declared in `<record‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/record-inheritance.html b/test-files/golden-tests/metadata/record-inheritance.html index 5edeb81f89..8cebae5137 100644 --- a/test-files/golden-tests/metadata/record-inheritance.html +++ b/test-files/golden-tests/metadata/record-inheritance.html @@ -13,43 +13,27 @@

Types

- + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
NameDescriptionName
C0 -
C1 -
C2 -
C3 -
C4 -
C5 -
C6 -
C7 -
S0 -
S1 -
S2 -
S3 -
S4 -
S5 -
S6 -
U0 -
C0
C1
C2
C3
C4
C5
C6
C7
S0
S1
S2
S3
S4
S5
S6
U0
diff --git a/test-files/golden-tests/metadata/requires-clause.adoc b/test-files/golden-tests/metadata/requires-clause.adoc index f4fc7a23d5..e85b2ec547 100644 --- a/test-files/golden-tests/metadata/requires-clause.adoc +++ b/test-files/golden-tests/metadata/requires-clause.adoc @@ -4,35 +4,33 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| |=== [#A-0c] == A + === Synopsis + Declared in `<requires‐clause.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -48,8 +46,10 @@ struct A; [#A-08] == A + === Synopsis + Declared in `<requires‐clause.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -65,8 +65,10 @@ struct A; [#f] == f + === Synopsis + Declared in `<requires‐clause.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -80,8 +82,10 @@ requires (sizeof(U) == 2); [#g] == g + === Synopsis + Declared in `<requires‐clause.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -117,8 +121,10 @@ void [#g-00] == g + === Synopsis + Declared in `<requires‐clause.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -132,8 +138,10 @@ g(); [#g-04] == g + === Synopsis + Declared in `<requires‐clause.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -147,8 +155,10 @@ g(); [#g-03] == g + === Synopsis + Declared in `<requires‐clause.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/requires-clause.html b/test-files/golden-tests/metadata/requires-clause.html index a7a3fce03f..2a7403b142 100644 --- a/test-files/golden-tests/metadata/requires-clause.html +++ b/test-files/golden-tests/metadata/requires-clause.html @@ -13,29 +13,26 @@

Types

- + - - + +
NameDescriptionName
A -
A -
A
A

Functions

- + - - + +
NameDescriptionName
f -
g
f
g
diff --git a/test-files/golden-tests/metadata/spec-mem-implicit-instantiation.adoc b/test-files/golden-tests/metadata/spec-mem-implicit-instantiation.adoc index 68d9f36c3e..5a55a720a7 100644 --- a/test-files/golden-tests/metadata/spec-mem-implicit-instantiation.adoc +++ b/test-files/golden-tests/metadata/spec-mem-implicit-instantiation.adoc @@ -4,33 +4,27 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -40,25 +34,21 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -66,8 +56,10 @@ struct A; [#A-0e-B] == <>::B + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -77,13 +69,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -91,8 +82,10 @@ struct B; [#A-0e-B-g] == <>::<>::g + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -104,8 +97,10 @@ g(); [#A-0e-C] == <>::C + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -115,13 +110,12 @@ struct C; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -129,8 +123,10 @@ struct C; [#A-0e-C-h] == <>::<>::h + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -142,8 +138,10 @@ h(); [#A-0e-f] == <>::f + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -155,8 +153,10 @@ f(); [#A-000] == A<int> + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -166,28 +166,22 @@ struct <><int>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -195,8 +189,10 @@ struct <><int>; [#A-000-B-03] == <><int>::B + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -211,8 +207,10 @@ struct B; [#A-000-B-09] == <><int>::B<long> + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -222,13 +220,12 @@ struct <><long>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -236,8 +233,10 @@ struct <><long>; [#A-000-B-09-g] == <><int>::<><long>::g + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -249,8 +248,10 @@ g(); [#A-000-C] == <><int>::C + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -265,8 +266,10 @@ struct C; [#A-000-f] == <><int>::f + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -278,8 +281,10 @@ f(); [#A-00b] == A<short> + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -289,25 +294,21 @@ struct <><short>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -315,8 +316,10 @@ struct <><short>; [#A-00b-B] == <><short>::B + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -331,8 +334,10 @@ struct B; [#A-00b-C] == <><short>::C + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -342,13 +347,12 @@ struct C; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -356,8 +360,10 @@ struct C; [#A-00b-C-i] == <><short>::<>::i + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -369,8 +375,10 @@ i(); [#A-00b-f] == <><short>::f + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -382,8 +390,10 @@ f(); [#A-0f] == A<bool> + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -393,31 +403,23 @@ struct <><bool>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - |=== === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -425,8 +427,10 @@ struct <><bool>; [#A-0f-B] == <><bool>::B + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -441,8 +445,10 @@ struct B; [#A-0f-C-00] == <><bool>::C + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -457,8 +463,10 @@ struct C; [#A-0f-C-0c] == <><bool>::C<U*> + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -468,13 +476,12 @@ struct <><U*>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -482,8 +489,10 @@ struct <><U*>; [#A-0f-C-0c-j] == <><bool>::<><U*>::j + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -495,8 +504,10 @@ j(); [#A-0f-C-01] == <><bool>::C<double*> + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -506,13 +517,12 @@ struct <><double*>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -520,8 +530,10 @@ struct <><double*>; [#A-0f-C-01-j] == <><bool>::<><double*>::j + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -533,8 +545,10 @@ j(); [#A-0f-f] == <><bool>::f + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -546,8 +560,10 @@ f(); [#D] == D + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -556,16 +572,13 @@ struct D; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -573,8 +586,10 @@ struct D; [#D-E-0e] == <>::E + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -584,13 +599,12 @@ struct E; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -598,8 +612,10 @@ struct E; [#D-E-0e-k] == <>::<>::k + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -611,8 +627,10 @@ k(); [#D-E-0d] == <>::E<int> + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -622,13 +640,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -636,8 +653,10 @@ struct <><int>; [#D-E-0d-k] == <>::<><int>::k + === Synopsis + Declared in `<spec‐mem‐implicit‐instantiation.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/spec-mem-implicit-instantiation.html b/test-files/golden-tests/metadata/spec-mem-implicit-instantiation.html index ff44fc119d..dbb4e32287 100644 --- a/test-files/golden-tests/metadata/spec-mem-implicit-instantiation.html +++ b/test-files/golden-tests/metadata/spec-mem-implicit-instantiation.html @@ -13,21 +13,16 @@

Types

- + - - - - - + + + + +
NameDescriptionName
A -
A<int> -
A<short> -
A<bool> -
D -
A
A<int>
A<short>
A<bool>
D
@@ -50,28 +45,25 @@

Types

- + - - + +
NameDescriptionName
B -
C -
B
C

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -96,13 +88,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
@@ -143,13 +134,12 @@

Member Functions

- + - +
NameDescriptionName
h -
h
@@ -206,30 +196,26 @@

Types

- + - - - + + +
NameDescriptionName
B -
B<long> -
C -
B
B<long>
C

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -272,13 +258,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
@@ -353,28 +338,25 @@

Types

- + - - + +
NameDescriptionName
B -
C -
B
C

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -417,13 +399,12 @@

Member Functions

- + - +
NameDescriptionName
i -
i
@@ -480,32 +461,27 @@

Types

- + - - - - + + + +
NameDescriptionName
B -
C -
C<U*> -
C<double*> -
B
C
C<U*>
C<double*>

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -566,13 +542,12 @@

Member Functions

- + - +
NameDescriptionName
j -
j
@@ -613,13 +588,12 @@

Member Functions

- + - +
NameDescriptionName
j -
j
@@ -675,15 +649,13 @@

Types

- + - - + +
NameDescriptionName
E -
E<int> -
E
E<int>
@@ -708,13 +680,12 @@

Member Functions

- + - +
NameDescriptionName
k -
k
@@ -755,13 +726,12 @@

Member Functions

- + - +
NameDescriptionName
k -
k
diff --git a/test-files/golden-tests/metadata/static-data-def-constexpr.adoc b/test-files/golden-tests/metadata/static-data-def-constexpr.adoc index c07078670f..6f3d1cc17d 100644 --- a/test-files/golden-tests/metadata/static-data-def-constexpr.adoc +++ b/test-files/golden-tests/metadata/static-data-def-constexpr.adoc @@ -4,24 +4,24 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#S] == S + === Synopsis + Declared in `<static‐data‐def‐constexpr.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -30,13 +30,12 @@ struct S; ---- === Static Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -44,8 +43,10 @@ struct S; [#S-s] == <>::s + === Synopsis + Declared in `<static‐data‐def‐constexpr.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -58,8 +59,10 @@ static [#T] == T + === Synopsis + Declared in `<static‐data‐def‐constexpr.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -68,13 +71,12 @@ struct T; ---- === Static Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -82,8 +84,10 @@ struct T; [#T-t] == <>::t + === Synopsis + Declared in `<static‐data‐def‐constexpr.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/static-data-def-constexpr.html b/test-files/golden-tests/metadata/static-data-def-constexpr.html index 24001cf0a3..5ca5a5afc7 100644 --- a/test-files/golden-tests/metadata/static-data-def-constexpr.html +++ b/test-files/golden-tests/metadata/static-data-def-constexpr.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
S -
T -
S
T
@@ -43,13 +41,12 @@

Static Data Members

- + - +
NameDescriptionName
s -
s
@@ -90,13 +87,12 @@

Static Data Members

- + - +
NameDescriptionName
t -
t
diff --git a/test-files/golden-tests/metadata/static-data-def.adoc b/test-files/golden-tests/metadata/static-data-def.adoc index 1de8196d34..db48573a28 100644 --- a/test-files/golden-tests/metadata/static-data-def.adoc +++ b/test-files/golden-tests/metadata/static-data-def.adoc @@ -4,33 +4,32 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -40,34 +39,19 @@ struct A; ---- === Static Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== @@ -75,8 +59,10 @@ struct A; [#A-v0] == <>::v0 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -88,8 +74,10 @@ int v0 = 0; [#A-v1] == <>::v1 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -101,8 +89,10 @@ int v1 = 1; [#A-v2] == <>::v2 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -115,8 +105,10 @@ int const v2 = 2; [#A-v3] == <>::v3 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -128,8 +120,10 @@ int const v3 = 3; [#A-v4] == <>::v4 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -141,8 +135,10 @@ int const v4 = 4; [#A-v5] == <>::v5 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -154,8 +150,10 @@ int v5 = 5; [#A-v6] == <>::v6 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -167,8 +165,10 @@ int const v6 = 6; [#A-v7] == <>::v7 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -181,8 +181,10 @@ int const v7 = 7; [#B] == B + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -191,16 +193,13 @@ struct B; ---- === Static Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -208,8 +207,10 @@ struct B; [#B-x0] == <>::x0 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -222,8 +223,10 @@ int const x0 = 0; [#B-x1] == <>::x1 + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -237,8 +240,10 @@ int const x1 = 0; [#f] == f + === Synopsis + Declared in `<static‐data‐def.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/static-data-def.html b/test-files/golden-tests/metadata/static-data-def.html index 6a1b7f96e1..746ffe5c96 100644 --- a/test-files/golden-tests/metadata/static-data-def.html +++ b/test-files/golden-tests/metadata/static-data-def.html @@ -13,28 +13,25 @@

Types

- + - - + +
NameDescriptionName
A -
B -
A
B

Functions

- + - +
NameDescriptionName
f -
f
@@ -57,27 +54,19 @@

Static Data Members

- + - - - - - - - - + + + + + + + +
NameDescriptionName
v0 -
v1 -
v2 -
v3 -
v4 -
v5 -
v6 -
v7 -
v0
v1
v2
v3
v4
v5
v6
v7
@@ -231,15 +220,13 @@

Static Data Members

- + - - + +
NameDescriptionName
x0 -
x1 -
x0
x1
diff --git a/test-files/golden-tests/metadata/static-data-template.adoc b/test-files/golden-tests/metadata/static-data-template.adoc index 1160babc4a..0928dc8240 100644 --- a/test-files/golden-tests/metadata/static-data-template.adoc +++ b/test-files/golden-tests/metadata/static-data-template.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<static‐data‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -28,19 +30,14 @@ struct A; ---- === Static Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -48,8 +45,10 @@ struct A; [#A-x-05] == <>::x + === Synopsis + Declared in `<static‐data‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -65,8 +64,10 @@ T const x = 0; [#A-x-0a] == <>::x<U*, T> + === Synopsis + Declared in `<static‐data‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -80,8 +81,10 @@ T const x<U*, T> = 1; [#A-x-07] == <>::x<T, long> + === Synopsis + Declared in `<static‐data‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/static-data-template.html b/test-files/golden-tests/metadata/static-data-template.html index 0e38d6c29e..38e1f6fd81 100644 --- a/test-files/golden-tests/metadata/static-data-template.html +++ b/test-files/golden-tests/metadata/static-data-template.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -42,17 +41,14 @@

Static Data Members

- + - - - + + +
NameDescriptionName
x -
x<U*, T> -
x<T, long> -
x
x<U*, T>
x<T, long>
diff --git a/test-files/golden-tests/metadata/template-specialization-inheritance.adoc b/test-files/golden-tests/metadata/template-specialization-inheritance.adoc index a931d886b5..7557094d16 100644 --- a/test-files/golden-tests/metadata/template-specialization-inheritance.adoc +++ b/test-files/golden-tests/metadata/template-specialization-inheritance.adoc @@ -4,51 +4,33 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#R0] == R0 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -58,13 +40,12 @@ struct R0 ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -72,8 +53,10 @@ struct R0 [#R1] == R1 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -88,8 +71,10 @@ struct R1 [#R2] == R2 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -104,8 +89,10 @@ struct R2 [#S0-0c] == S0 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -117,13 +104,12 @@ struct S0; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -131,8 +117,10 @@ struct S0; [#S0-0c-S1] == <>::S1 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -146,8 +134,10 @@ struct S1; [#S0-073] == S0<3> + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -162,8 +152,10 @@ struct <><3>; [#S0-07e] == S0<6> + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -178,8 +170,10 @@ struct <><6>; [#S0-09] == S0<2> + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -189,13 +183,12 @@ struct <><2>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -203,8 +196,10 @@ struct <><2>; [#S0-09-S1] == <><2>::S1 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -218,8 +213,10 @@ struct S1; [#S0-0e] == S0<5> + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -229,13 +226,12 @@ struct <><5>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -243,8 +239,10 @@ struct <><5>; [#S0-0e-S1] == <><5>::S1 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -258,8 +256,10 @@ struct S1; [#U1] == U1 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -270,8 +270,10 @@ using U1 = <><4>; [#U2] == U2 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -282,8 +284,10 @@ using U2 = <><5>::<>; [#U3] == U3 + === Synopsis + Declared in `<template‐specialization‐inheritance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/template-specialization-inheritance.html b/test-files/golden-tests/metadata/template-specialization-inheritance.html index 480574fcdb..61afb38428 100644 --- a/test-files/golden-tests/metadata/template-specialization-inheritance.html +++ b/test-files/golden-tests/metadata/template-specialization-inheritance.html @@ -13,33 +13,22 @@

Types

- + - - - - - - - - - - - + + + + + + + + + + +
NameDescriptionName
R0 -
R1 -
R2 -
S0 -
S0<3> -
S0<6> -
S0<2> -
S0<5> -
U1 -
U2 -
U3 -
R0
R1
R2
S0
S0<3>
S0<6>
S0<2>
S0<5>
U1
U2
U3
@@ -62,13 +51,12 @@

Types

- + - +
NameDescriptionName
S1 -
S1
@@ -131,13 +119,12 @@

Types

- + - +
NameDescriptionName
S1 -
S1
@@ -215,13 +202,12 @@

Types

- + - +
NameDescriptionName
S1 -
S1
@@ -263,13 +249,12 @@

Types

- + - +
NameDescriptionName
S1 -
S1
diff --git a/test-files/golden-tests/metadata/type-resolution.adoc b/test-files/golden-tests/metadata/type-resolution.adoc index 7009db312a..e2ae033a52 100644 --- a/test-files/golden-tests/metadata/type-resolution.adoc +++ b/test-files/golden-tests/metadata/type-resolution.adoc @@ -4,174 +4,79 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#A] == A + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -185,8 +90,10 @@ struct A; [#B] == B + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -203,8 +110,10 @@ struct B; [#f0] == f0 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -216,8 +125,10 @@ f0(<>); [#f1] == f1 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -229,8 +140,10 @@ f1(<> const); [#f2] == f2 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -242,8 +155,10 @@ f2(<>&); [#f3] == f3 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -255,8 +170,10 @@ f3(<> const&); [#f4] == f4 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -268,8 +185,10 @@ f4(<>*); [#f5] == f5 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -281,8 +200,10 @@ f5(<> const*); [#f6] == f6 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -294,8 +215,10 @@ f6(<>**); [#f7] == f7 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -307,8 +230,10 @@ f7(<> const**); [#f8] == f8 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -320,8 +245,10 @@ f8(<> const const**); [#g0] == g0 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -333,8 +260,10 @@ g0(<>); [#g1] == g1 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -346,8 +275,10 @@ g1(<> const); [#g2] == g2 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -359,8 +290,10 @@ g2(<>&); [#g3] == g3 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -372,8 +305,10 @@ g3(<> const&); [#g4] == g4 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -385,8 +320,10 @@ g4(<>*); [#g5] == g5 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -398,8 +335,10 @@ g5(<> const*); [#g6] == g6 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -411,8 +350,10 @@ g6(<>**); [#g7] == g7 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -424,8 +365,10 @@ g7(<> const**); [#g8] == g8 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -437,8 +380,10 @@ g8(<> const const**); [#h0] == h0 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -450,8 +395,10 @@ h0(<><short, long>); [#h1] == h1 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -463,8 +410,10 @@ h1(<><short, long> const); [#h2] == h2 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -476,8 +425,10 @@ h2(<><short, long>&); [#h3] == h3 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -489,8 +440,10 @@ h3(<><short, long> const&); [#h4] == h4 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -502,8 +455,10 @@ h4(<><short, long>*); [#h5] == h5 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -515,8 +470,10 @@ h5(<><short, long> const*); [#h6] == h6 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -528,8 +485,10 @@ h6(<><short, long>**); [#h7] == h7 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -541,8 +500,10 @@ h7(<><short, long> const**); [#h8] == h8 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -554,8 +515,10 @@ h8(<><short, long> const const**); [#i0] == i0 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -567,8 +530,10 @@ i0(<>); [#i1] == i1 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -580,8 +545,10 @@ i1(<> const); [#i2] == i2 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -593,8 +560,10 @@ i2(<>&); [#i3] == i3 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -606,8 +575,10 @@ i3(<> const&); [#i4] == i4 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -619,8 +590,10 @@ i4(<>*); [#i5] == i5 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -632,8 +605,10 @@ i5(<> const*); [#i6] == i6 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -645,8 +620,10 @@ i6(<>**); [#i7] == i7 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -658,8 +635,10 @@ i7(<> const**); [#i8] == i8 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -671,8 +650,10 @@ i8(<> const const**); [#j0] == j0 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -684,8 +665,10 @@ j0(<><short>); [#j1] == j1 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -697,8 +680,10 @@ j1(<><short> const); [#j2] == j2 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -710,8 +695,10 @@ j2(<><short>&); [#j3] == j3 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -723,8 +710,10 @@ j3(<><short> const&); [#j4] == j4 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -736,8 +725,10 @@ j4(<><short>*); [#j5] == j5 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -749,8 +740,10 @@ j5(<><short> const*); [#j6] == j6 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -762,8 +755,10 @@ j6(<><short>**); [#j7] == j7 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -775,8 +770,10 @@ j7(<><short> const**); [#j8] == j8 + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -788,8 +785,10 @@ j8(<><short> const const**); [#C] == C + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -800,8 +799,10 @@ using C = <>; [#D] == D + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -812,8 +813,10 @@ using D = <><short, long>; [#E] == E + === Synopsis + Declared in `<type‐resolution.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/type-resolution.html b/test-files/golden-tests/metadata/type-resolution.html index b4a9b9bfdb..3ded1305c6 100644 --- a/test-files/golden-tests/metadata/type-resolution.html +++ b/test-files/golden-tests/metadata/type-resolution.html @@ -13,122 +13,72 @@

Types

- + - - - - - + + + + +
NameDescriptionName
A -
B -
C -
D -
E -
A
B
C
D
E

Functions

- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionName
f0 -
f1 -
f2 -
f3 -
f4 -
f5 -
f6 -
f7 -
f8 -
g0 -
g1 -
g2 -
g3 -
g4 -
g5 -
g6 -
g7 -
g8 -
h0 -
h1 -
h2 -
h3 -
h4 -
h5 -
h6 -
h7 -
h8 -
i0 -
i1 -
i2 -
i3 -
i4 -
i5 -
i6 -
i7 -
i8 -
j0 -
j1 -
j2 -
j3 -
j4 -
j5 -
j6 -
j7 -
j8 -
f0
f1
f2
f3
f4
f5
f6
f7
f8
g0
g1
g2
g3
g4
g5
g6
g7
g8
h0
h1
h2
h3
h4
h5
h6
h7
h8
i0
i1
i2
i3
i4
i5
i6
i7
i8
j0
j1
j2
j3
j4
j5
j6
j7
j8
diff --git a/test-files/golden-tests/metadata/union.adoc b/test-files/golden-tests/metadata/union.adoc index c04b591fbf..c1faf9194b 100644 --- a/test-files/golden-tests/metadata/union.adoc +++ b/test-files/golden-tests/metadata/union.adoc @@ -4,24 +4,24 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#A] == A + === Synopsis + Declared in `<union.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -30,16 +30,13 @@ union A; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> [.small]#[variant member]# -| - | <> [.small]#[variant member]# -| - |=== @@ -47,8 +44,10 @@ union A; [#A-x] == <>::x + === Synopsis + Declared in `<union.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -59,8 +58,10 @@ int x; [#A-y] == <>::y + === Synopsis + Declared in `<union.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -71,8 +72,10 @@ bool y; [#B] == B + === Synopsis + Declared in `<union.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -81,19 +84,14 @@ struct B; ---- === Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> [.small]#[variant member]# -| - | <> [.small]#[variant member]# -| - | <> -| - |=== @@ -101,8 +99,10 @@ struct B; [#B-x] == <>::x + === Synopsis + Declared in `<union.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -113,8 +113,10 @@ int x; [#B-y] == <>::y + === Synopsis + Declared in `<union.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -125,8 +127,10 @@ bool y; [#B-z] == <>::z + === Synopsis + Declared in `<union.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/union.html b/test-files/golden-tests/metadata/union.html index 2752d17f23..5d3536fd14 100644 --- a/test-files/golden-tests/metadata/union.html +++ b/test-files/golden-tests/metadata/union.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
A -
B -
A
B
@@ -43,15 +41,13 @@

Data Members

- + - - + +
NameDescriptionName
x [variant member] -
y [variant member] -
x [variant member]
y [variant member]
@@ -105,17 +101,14 @@

Data Members

- + - - - + + +
NameDescriptionName
x [variant member] -
y [variant member] -
z -
x [variant member]
y [variant member]
z
diff --git a/test-files/golden-tests/metadata/using-1.adoc b/test-files/golden-tests/metadata/using-1.adoc index bdbe133e92..141656cb7d 100644 --- a/test-files/golden-tests/metadata/using-1.adoc +++ b/test-files/golden-tests/metadata/using-1.adoc @@ -4,24 +4,23 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Using Directives -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#LongName] @@ -30,4 +29,5 @@ + [.small]#Created with https://www.mrdocs.com[MrDocs]# diff --git a/test-files/golden-tests/metadata/using-1.html b/test-files/golden-tests/metadata/using-1.html index 3c6d3f02b1..7f8b78e98a 100644 --- a/test-files/golden-tests/metadata/using-1.html +++ b/test-files/golden-tests/metadata/using-1.html @@ -13,13 +13,12 @@

Namespaces

- + - +
NameDescriptionName
LongName -
LongName
@@ -27,13 +26,12 @@

Using Directives

- + - +
NameDescriptionName
LongName -
LongName
diff --git a/test-files/golden-tests/metadata/using-2.adoc b/test-files/golden-tests/metadata/using-2.adoc index b0c1ae4a32..77bc5f5510 100644 --- a/test-files/golden-tests/metadata/using-2.adoc +++ b/test-files/golden-tests/metadata/using-2.adoc @@ -4,37 +4,37 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#LongName] == LongName + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#LongName-S1] == <>::S1 + === Synopsis + Declared in `<using‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -48,8 +48,10 @@ struct S1; [#LongName-S2] == <>::S2 + === Synopsis + Declared in `<using‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -63,8 +65,10 @@ struct S2; [#S1] == S1 + === Synopsis + Declared in `<using‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -74,6 +78,7 @@ using <>::S1; === Introduced Symbols + |=== | Name | S1 @@ -82,8 +87,10 @@ using <>::S1; [#S2] == S2 + === Synopsis + Declared in `<using‐2.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -93,6 +100,7 @@ using <>::S2; === Introduced Symbols + |=== | Name | S2 diff --git a/test-files/golden-tests/metadata/using-2.html b/test-files/golden-tests/metadata/using-2.html index 476683e086..b3586df998 100644 --- a/test-files/golden-tests/metadata/using-2.html +++ b/test-files/golden-tests/metadata/using-2.html @@ -13,13 +13,12 @@

Namespaces

- + - +
NameDescriptionName
LongName -
LongName
@@ -31,15 +30,13 @@

Types

- + - - + +
NameDescriptionName
S1 -
S2 -
S1
S2
diff --git a/test-files/golden-tests/metadata/using-3.adoc b/test-files/golden-tests/metadata/using-3.adoc index 8bba1a4cda..6e7e647704 100644 --- a/test-files/golden-tests/metadata/using-3.adoc +++ b/test-files/golden-tests/metadata/using-3.adoc @@ -4,27 +4,25 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== [#A] == A + === Synopsis + Declared in `<using‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -33,13 +31,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -47,8 +44,10 @@ struct A; [#A-f] == <>::f + === Synopsis + Declared in `<using‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -60,8 +59,10 @@ f(int); [#B] == B + === Synopsis + Declared in `<using‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -70,13 +71,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -84,8 +84,10 @@ struct B; [#B-f] == <>::f + === Synopsis + Declared in `<using‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -97,8 +99,10 @@ f(bool); [#C] == C + === Synopsis + Declared in `<using‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -109,24 +113,21 @@ struct C ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| |=== === Using Declarations -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -134,8 +135,10 @@ struct C [#C-f-08] == <>::f + === Synopsis + Declared in `<using‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -145,6 +148,7 @@ using <>::f; === Introduced Symbols + |=== | Name | f @@ -153,8 +157,10 @@ using <>::f; [#C-f-03] == <>::f + === Synopsis + Declared in `<using‐3.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -164,6 +170,7 @@ using <>::f; === Introduced Symbols + |=== | Name | f diff --git a/test-files/golden-tests/metadata/using-3.html b/test-files/golden-tests/metadata/using-3.html index a12eaa7d0d..ae1ef09c5a 100644 --- a/test-files/golden-tests/metadata/using-3.html +++ b/test-files/golden-tests/metadata/using-3.html @@ -13,17 +13,14 @@

Types

- + - - - + + +
NameDescriptionName
A -
B -
C -
A
B
C
@@ -45,13 +42,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -91,13 +87,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -139,27 +134,25 @@

Member Functions

- + - +
NameDescriptionName
f
f

Using Declarations

- + - - + +
NameDescriptionName
f -
f -
f
f
diff --git a/test-files/golden-tests/metadata/var-template.adoc b/test-files/golden-tests/metadata/var-template.adoc index 58a88d29ce..17c01e73cf 100644 --- a/test-files/golden-tests/metadata/var-template.adoc +++ b/test-files/golden-tests/metadata/var-template.adoc @@ -4,36 +4,33 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Variables -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== [#B] == B + === Synopsis + Declared in `<var‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -42,19 +39,14 @@ struct B; ---- === Static Data Members -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== @@ -62,8 +54,10 @@ struct B; [#B-C-09] == <>::C + === Synopsis + Declared in `<var‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -76,8 +70,10 @@ unsigned int C = 0; [#B-C-05] == <>::C<int> + === Synopsis + Declared in `<var‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -90,8 +86,10 @@ unsigned int C<int> = ‐1; [#B-C-0c] == <>::C<T*> + === Synopsis + Declared in `<var‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -104,8 +102,10 @@ unsigned int C<T*> = sizeof(T); [#A-0c] == A + === Synopsis + Declared in `<var‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -117,8 +117,10 @@ unsigned int A = sizeof(T); [#A-08] == A<void> + === Synopsis + Declared in `<var‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -130,8 +132,10 @@ unsigned int A<void> = 0; [#A-01] == A<T&> + === Synopsis + Declared in `<var‐template.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/var-template.html b/test-files/golden-tests/metadata/var-template.html index 35625b96f9..f6252239a0 100644 --- a/test-files/golden-tests/metadata/var-template.html +++ b/test-files/golden-tests/metadata/var-template.html @@ -13,30 +13,26 @@

Types

- + - +
NameDescriptionName
B -
B

Variables

- + - - - + + +
NameDescriptionName
A -
A<void> -
A<T&> -
A
A<void>
A<T&>
@@ -58,17 +54,14 @@

Static Data Members

- + - - - + + +
NameDescriptionName
C -
C<int> -
C<T*> -
C
C<int>
C<T*>
diff --git a/test-files/golden-tests/metadata/variadic-function.adoc b/test-files/golden-tests/metadata/variadic-function.adoc index 45e49ec293..246801e56a 100644 --- a/test-files/golden-tests/metadata/variadic-function.adoc +++ b/test-files/golden-tests/metadata/variadic-function.adoc @@ -4,39 +4,34 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - |=== === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#C] == C + === Synopsis + Declared in `<variadic‐function.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -53,8 +48,10 @@ struct C; [#f] == f + === Synopsis + Declared in `<variadic‐function.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -66,8 +63,10 @@ f(...); [#g] == g + === Synopsis + Declared in `<variadic‐function.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -79,8 +78,10 @@ g(int, ...); [#T] == T + === Synopsis + Declared in `<variadic‐function.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -91,8 +92,10 @@ using T = void(...); [#U] == U + === Synopsis + Declared in `<variadic‐function.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/metadata/variadic-function.html b/test-files/golden-tests/metadata/variadic-function.html index e11d6dfc17..403f0a5e2c 100644 --- a/test-files/golden-tests/metadata/variadic-function.html +++ b/test-files/golden-tests/metadata/variadic-function.html @@ -13,32 +13,27 @@

Types

- + - - - + + +
NameDescriptionName
C -
T -
U -
C
T
U

Functions

- + - - + +
NameDescriptionName
f -
g -
f
g
diff --git a/test-files/golden-tests/output/canonical_1.adoc b/test-files/golden-tests/output/canonical_1.adoc index 06b5f57ce3..5a93e14b43 100644 --- a/test-files/golden-tests/output/canonical_1.adoc +++ b/test-files/golden-tests/output/canonical_1.adoc @@ -4,42 +4,30 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - | <> -| - |=== [#A] == A + === Synopsis + Declared in `<canonical_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -53,8 +41,10 @@ struct A; [#B] == B + === Synopsis + Declared in `<canonical_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -68,8 +58,10 @@ struct B; [#Ba] == Ba + === Synopsis + Declared in `<canonical_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -83,8 +75,10 @@ struct Ba; [#Bx] == Bx + === Synopsis + Declared in `<canonical_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -98,8 +92,10 @@ struct Bx; [#a] == a + === Synopsis + Declared in `<canonical_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -113,8 +109,10 @@ struct a; [#b] == b + === Synopsis + Declared in `<canonical_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -128,8 +126,10 @@ struct b; [#bA] == bA + === Synopsis + Declared in `<canonical_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -143,8 +143,10 @@ struct bA; [#ba] == ba + === Synopsis + Declared in `<canonical_1.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/output/canonical_1.html b/test-files/golden-tests/output/canonical_1.html index 9aee6b3d63..2fc56bf9d3 100644 --- a/test-files/golden-tests/output/canonical_1.html +++ b/test-files/golden-tests/output/canonical_1.html @@ -13,27 +13,19 @@

Types

- + - - - - - - - - + + + + + + + +
NameDescriptionName
A -
B -
Ba -
Bx -
a -
b -
bA -
ba -
A
B
Ba
Bx
a
b
bA
ba
diff --git a/test-files/golden-tests/snippets/distance.adoc b/test-files/golden-tests/snippets/distance.adoc index 5bd1eff49b..63d7ea3ef7 100644 --- a/test-files/golden-tests/snippets/distance.adoc +++ b/test-files/golden-tests/snippets/distance.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -19,12 +21,14 @@ [#distance] == distance + Return the distance between two points === Synopsis + Declared in `<distance.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -39,6 +43,7 @@ distance( === Description + This function returns the distance between two points according to the Euclidean distance formula. @@ -46,12 +51,14 @@ according to the Euclidean distance formula. === Return Value + The distance between the two points === Parameters + |=== | Name | Description diff --git a/test-files/golden-tests/snippets/is_prime.adoc b/test-files/golden-tests/snippets/is_prime.adoc index c6ca83d5ea..23c1a44666 100644 --- a/test-files/golden-tests/snippets/is_prime.adoc +++ b/test-files/golden-tests/snippets/is_prime.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -19,12 +21,14 @@ [#is_prime] == is_prime + Return true if a number is prime. === Synopsis + Declared in `<is_prime.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -35,18 +39,21 @@ is_prime(unsigned long long n) noexcept; === Description + Linear in n. === Return Value + Whether or not n is prime. === Parameters + |=== | Name | Description diff --git a/test-files/golden-tests/snippets/sqrt.adoc b/test-files/golden-tests/snippets/sqrt.adoc index c9057c8c5b..d2a25dfb38 100644 --- a/test-files/golden-tests/snippets/sqrt.adoc +++ b/test-files/golden-tests/snippets/sqrt.adoc @@ -4,16 +4,17 @@ [#index] == Global namespace + === Namespaces -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== === Functions + [cols=2] |=== | Name | Description @@ -29,15 +30,18 @@ == std + [#sqrt] == sqrt + Computes the square root of an integral value. === Synopsis + Declared in `<sqrt.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -49,6 +53,7 @@ sqrt(T value); === Description + This function calculates the square root of a given integral value using bit manipulation. @@ -56,6 +61,7 @@ given integral value using bit manipulation. === Exceptions + |=== | Name | Thrown on @@ -67,12 +73,14 @@ given integral value using bit manipulation. === Return Value + The square root of the input value. === Template Parameters + |=== | Name | Description @@ -84,6 +92,7 @@ The square root of the input value. === Parameters + |=== | Name | Description diff --git a/test-files/golden-tests/snippets/sqrt.html b/test-files/golden-tests/snippets/sqrt.html index 4c7b2b8e46..fd35b24788 100644 --- a/test-files/golden-tests/snippets/sqrt.html +++ b/test-files/golden-tests/snippets/sqrt.html @@ -13,13 +13,12 @@

Namespaces

- + - +
NameDescriptionName
std -
std

Functions

diff --git a/test-files/golden-tests/snippets/terminate.adoc b/test-files/golden-tests/snippets/terminate.adoc index 56a1a0e519..2d14d8e6e3 100644 --- a/test-files/golden-tests/snippets/terminate.adoc +++ b/test-files/golden-tests/snippets/terminate.adoc @@ -4,7 +4,9 @@ [#index] == Global namespace + === Functions + [cols=2] |=== | Name | Description @@ -19,12 +21,14 @@ [#terminate] == terminate + Exit the program. === Synopsis + Declared in `<terminate.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -36,6 +40,7 @@ terminate() noexcept; === Description + The program will end immediately. [NOTE] diff --git a/test-files/golden-tests/templates/c_mct_expl_inline.adoc b/test-files/golden-tests/templates/c_mct_expl_inline.adoc index aa9df6929a..3f33ad6279 100644 --- a/test-files/golden-tests/templates/c_mct_expl_inline.adoc +++ b/test-files/golden-tests/templates/c_mct_expl_inline.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/c_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -27,16 +29,13 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -44,8 +43,10 @@ struct A; [#A-B-04] == <>::B + === Synopsis + Declared in `<templates/c_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -55,13 +56,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -69,8 +69,10 @@ struct B; [#A-B-04-f] == <>::<>::f + === Synopsis + Declared in `<templates/c_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -82,8 +84,10 @@ f(); [#A-B-01] == <>::B<int> + === Synopsis + Declared in `<templates/c_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -93,13 +97,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -107,8 +110,10 @@ struct <><int>; [#A-B-01-g] == <>::<><int>::g + === Synopsis + Declared in `<templates/c_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/c_mct_expl_inline.html b/test-files/golden-tests/templates/c_mct_expl_inline.html index 3f1b8b75fd..ce1f8e99b4 100644 --- a/test-files/golden-tests/templates/c_mct_expl_inline.html +++ b/test-files/golden-tests/templates/c_mct_expl_inline.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -41,15 +40,13 @@

Types

- + - - + +
NameDescriptionName
B -
B<int> -
B
B<int>
@@ -74,13 +71,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -121,13 +117,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
diff --git a/test-files/golden-tests/templates/c_mct_expl_outside.adoc b/test-files/golden-tests/templates/c_mct_expl_outside.adoc index 394a780a4a..01695a373a 100644 --- a/test-files/golden-tests/templates/c_mct_expl_outside.adoc +++ b/test-files/golden-tests/templates/c_mct_expl_outside.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/c_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -27,16 +29,13 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -44,8 +43,10 @@ struct A; [#A-B-04] == <>::B + === Synopsis + Declared in `<templates/c_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -55,13 +56,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -69,8 +69,10 @@ struct B; [#A-B-04-f] == <>::<>::f + === Synopsis + Declared in `<templates/c_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -82,8 +84,10 @@ f(); [#A-B-01] == <>::B<int> + === Synopsis + Declared in `<templates/c_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -93,13 +97,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -107,8 +110,10 @@ struct <><int>; [#A-B-01-g] == <>::<><int>::g + === Synopsis + Declared in `<templates/c_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/c_mct_expl_outside.html b/test-files/golden-tests/templates/c_mct_expl_outside.html index ed1ebd9d09..9fdc29a51e 100644 --- a/test-files/golden-tests/templates/c_mct_expl_outside.html +++ b/test-files/golden-tests/templates/c_mct_expl_outside.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -41,15 +40,13 @@

Types

- + - - + +
NameDescriptionName
B -
B<int> -
B
B<int>
@@ -74,13 +71,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -121,13 +117,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
diff --git a/test-files/golden-tests/templates/c_mft_expl_inline.adoc b/test-files/golden-tests/templates/c_mft_expl_inline.adoc index 74bc630547..340dea1188 100644 --- a/test-files/golden-tests/templates/c_mft_expl_inline.adoc +++ b/test-files/golden-tests/templates/c_mft_expl_inline.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/c_mft_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -27,12 +29,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| |=== @@ -40,8 +42,10 @@ struct A; [#A-f] == <>::f + === Synopsis + Declared in `<templates/c_mft_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -65,8 +69,10 @@ void [#A-f-0e] == <>::f + === Synopsis + Declared in `<templates/c_mft_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -79,8 +85,10 @@ f(); [#A-f-0b] == <>::f<int> + === Synopsis + Declared in `<templates/c_mft_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/c_mft_expl_inline.html b/test-files/golden-tests/templates/c_mft_expl_inline.html index d55dd2a068..0b24603cad 100644 --- a/test-files/golden-tests/templates/c_mft_expl_inline.html +++ b/test-files/golden-tests/templates/c_mft_expl_inline.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -41,12 +40,12 @@

Member Functions

- + - +
NameDescriptionName
f
f
diff --git a/test-files/golden-tests/templates/c_mft_expl_outside.adoc b/test-files/golden-tests/templates/c_mft_expl_outside.adoc index e21773eecb..5c3f6f6782 100644 --- a/test-files/golden-tests/templates/c_mft_expl_outside.adoc +++ b/test-files/golden-tests/templates/c_mft_expl_outside.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/c_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -27,12 +29,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| |=== @@ -40,8 +42,10 @@ struct A; [#A-f] == <>::f + === Synopsis + Declared in `<templates/c_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -65,8 +69,10 @@ void [#A-f-0e] == <>::f + === Synopsis + Declared in `<templates/c_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -79,8 +85,10 @@ f(); [#A-f-0b] == <>::f<int> + === Synopsis + Declared in `<templates/c_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/c_mft_expl_outside.html b/test-files/golden-tests/templates/c_mft_expl_outside.html index ceb719d95d..e81da35a35 100644 --- a/test-files/golden-tests/templates/c_mft_expl_outside.html +++ b/test-files/golden-tests/templates/c_mft_expl_outside.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -41,12 +40,12 @@

Member Functions

- + - +
NameDescriptionName
f
f
diff --git a/test-files/golden-tests/templates/ct_expl.adoc b/test-files/golden-tests/templates/ct_expl.adoc index c849e87780..05202366eb 100644 --- a/test-files/golden-tests/templates/ct_expl.adoc +++ b/test-files/golden-tests/templates/ct_expl.adoc @@ -4,24 +4,24 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<templates/ct_expl.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -31,13 +31,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -45,8 +44,10 @@ struct A; [#A-0e-f] == <>::f + === Synopsis + Declared in `<templates/ct_expl.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -58,8 +59,10 @@ f(); [#A-00] == A<int> + === Synopsis + Declared in `<templates/ct_expl.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -69,13 +72,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -83,8 +85,10 @@ struct <><int>; [#A-00-g] == <><int>::g + === Synopsis + Declared in `<templates/ct_expl.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_expl.html b/test-files/golden-tests/templates/ct_expl.html index 7d48cf05da..dfbe2a97e6 100644 --- a/test-files/golden-tests/templates/ct_expl.html +++ b/test-files/golden-tests/templates/ct_expl.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
A -
A<int> -
A
A<int>
@@ -44,13 +42,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -91,13 +88,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
diff --git a/test-files/golden-tests/templates/ct_mc.adoc b/test-files/golden-tests/templates/ct_mc.adoc index a507918a08..1f7ec54c87 100644 --- a/test-files/golden-tests/templates/ct_mc.adoc +++ b/test-files/golden-tests/templates/ct_mc.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/ct_mc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -28,13 +30,12 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -42,8 +43,10 @@ struct A; [#A-B] == <>::B + === Synopsis + Declared in `<templates/ct_mc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -52,13 +55,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -66,8 +68,10 @@ struct B; [#A-B-f] == <>::<>::f + === Synopsis + Declared in `<templates/ct_mc.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mc.html b/test-files/golden-tests/templates/ct_mc.html index 056334bb12..b260ffb8cd 100644 --- a/test-files/golden-tests/templates/ct_mc.html +++ b/test-files/golden-tests/templates/ct_mc.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -42,13 +41,12 @@

Types

- + - +
NameDescriptionName
B -
B
@@ -72,13 +70,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/templates/ct_mc_expl_outside.adoc b/test-files/golden-tests/templates/ct_mc_expl_outside.adoc index 1d8adbdbba..47db71d70d 100644 --- a/test-files/golden-tests/templates/ct_mc_expl_outside.adoc +++ b/test-files/golden-tests/templates/ct_mc_expl_outside.adoc @@ -4,24 +4,24 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<templates/ct_mc_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -31,13 +31,12 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -45,8 +44,10 @@ struct A; [#A-0e-B] == <>::B + === Synopsis + Declared in `<templates/ct_mc_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -55,13 +56,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -69,8 +69,10 @@ struct B; [#A-0e-B-f] == <>::<>::f + === Synopsis + Declared in `<templates/ct_mc_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -82,8 +84,10 @@ f(); [#A-00] == A<int> + === Synopsis + Declared in `<templates/ct_mc_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -93,13 +97,12 @@ struct <><int>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -107,8 +110,10 @@ struct <><int>; [#A-00-B] == <><int>::B + === Synopsis + Declared in `<templates/ct_mc_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -117,13 +122,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -131,8 +135,10 @@ struct B; [#A-00-B-g] == <><int>::<>::g + === Synopsis + Declared in `<templates/ct_mc_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mc_expl_outside.html b/test-files/golden-tests/templates/ct_mc_expl_outside.html index 58a34dc6fe..58bd1190f5 100644 --- a/test-files/golden-tests/templates/ct_mc_expl_outside.html +++ b/test-files/golden-tests/templates/ct_mc_expl_outside.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
A -
A<int> -
A
A<int>
@@ -44,13 +42,12 @@

Types

- + - +
NameDescriptionName
B -
B
@@ -74,13 +71,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -121,13 +117,12 @@

Types

- + - +
NameDescriptionName
B -
B
@@ -151,13 +146,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
diff --git a/test-files/golden-tests/templates/ct_mct.adoc b/test-files/golden-tests/templates/ct_mct.adoc index 8541773e90..ec43f894e2 100644 --- a/test-files/golden-tests/templates/ct_mct.adoc +++ b/test-files/golden-tests/templates/ct_mct.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/ct_mct.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -28,13 +30,12 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -42,8 +43,10 @@ struct A; [#A-B] == <>::B + === Synopsis + Declared in `<templates/ct_mct.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -53,13 +56,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -67,8 +69,10 @@ struct B; [#A-B-f] == <>::<>::f + === Synopsis + Declared in `<templates/ct_mct.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mct.html b/test-files/golden-tests/templates/ct_mct.html index c6f3f1e821..c8fb0c0199 100644 --- a/test-files/golden-tests/templates/ct_mct.html +++ b/test-files/golden-tests/templates/ct_mct.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -42,13 +41,12 @@

Types

- + - +
NameDescriptionName
B -
B
@@ -73,13 +71,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/templates/ct_mct_expl_inline.adoc b/test-files/golden-tests/templates/ct_mct_expl_inline.adoc index 23b99a95dc..2de6f8c2f6 100644 --- a/test-files/golden-tests/templates/ct_mct_expl_inline.adoc +++ b/test-files/golden-tests/templates/ct_mct_expl_inline.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/ct_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -28,16 +30,13 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -45,8 +44,10 @@ struct A; [#A-B-07] == <>::B + === Synopsis + Declared in `<templates/ct_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -56,13 +57,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -70,8 +70,10 @@ struct B; [#A-B-07-f] == <>::<>::f + === Synopsis + Declared in `<templates/ct_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -83,8 +85,10 @@ f(); [#A-B-06] == <>::B<int> + === Synopsis + Declared in `<templates/ct_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -94,13 +98,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -108,8 +111,10 @@ struct <><int>; [#A-B-06-g] == <>::<><int>::g + === Synopsis + Declared in `<templates/ct_mct_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mct_expl_inline.html b/test-files/golden-tests/templates/ct_mct_expl_inline.html index 6dcac75f35..299a068a7c 100644 --- a/test-files/golden-tests/templates/ct_mct_expl_inline.html +++ b/test-files/golden-tests/templates/ct_mct_expl_inline.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -42,15 +41,13 @@

Types

- + - - + +
NameDescriptionName
B -
B<int> -
B
B<int>
@@ -75,13 +72,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -122,13 +118,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
diff --git a/test-files/golden-tests/templates/ct_mct_expl_outside.adoc b/test-files/golden-tests/templates/ct_mct_expl_outside.adoc index e74db7bef4..9ec1489532 100644 --- a/test-files/golden-tests/templates/ct_mct_expl_outside.adoc +++ b/test-files/golden-tests/templates/ct_mct_expl_outside.adoc @@ -4,24 +4,24 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<templates/ct_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -31,13 +31,12 @@ struct A; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -45,8 +44,10 @@ struct A; [#A-0e-B] == <>::B + === Synopsis + Declared in `<templates/ct_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -56,13 +57,12 @@ struct B; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -70,8 +70,10 @@ struct B; [#A-0e-B-f] == <>::<>::f + === Synopsis + Declared in `<templates/ct_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -83,8 +85,10 @@ f(); [#A-00] == A<int> + === Synopsis + Declared in `<templates/ct_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -94,16 +98,13 @@ struct <><int>; ---- === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== @@ -111,8 +112,10 @@ struct <><int>; [#A-00-B-03] == <><int>::B + === Synopsis + Declared in `<templates/ct_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -127,8 +130,10 @@ struct B; [#A-00-B-02] == <><int>::B<int> + === Synopsis + Declared in `<templates/ct_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -138,13 +143,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -152,8 +156,10 @@ struct <><int>; [#A-00-B-02-g] == <><int>::<><int>::g + === Synopsis + Declared in `<templates/ct_mct_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mct_expl_outside.html b/test-files/golden-tests/templates/ct_mct_expl_outside.html index 92b1382999..e7b263aea0 100644 --- a/test-files/golden-tests/templates/ct_mct_expl_outside.html +++ b/test-files/golden-tests/templates/ct_mct_expl_outside.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
A -
A<int> -
A
A<int>
@@ -44,13 +42,12 @@

Types

- + - +
NameDescriptionName
B -
B
@@ -75,13 +72,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -122,15 +118,13 @@

Types

- + - - + +
NameDescriptionName
B -
B<int> -
B
B<int>
@@ -173,13 +167,12 @@

Member Functions

- + - +
NameDescriptionName
g -
g
diff --git a/test-files/golden-tests/templates/ct_mf.adoc b/test-files/golden-tests/templates/ct_mf.adoc index 9fefb71ad7..ebacc1afd8 100644 --- a/test-files/golden-tests/templates/ct_mf.adoc +++ b/test-files/golden-tests/templates/ct_mf.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/ct_mf.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -28,13 +30,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -42,8 +43,10 @@ struct A; [#A-f] == <>::f + === Synopsis + Declared in `<templates/ct_mf.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mf.html b/test-files/golden-tests/templates/ct_mf.html index a1c2f33ca1..bc34d4e518 100644 --- a/test-files/golden-tests/templates/ct_mf.html +++ b/test-files/golden-tests/templates/ct_mf.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -42,13 +41,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/templates/ct_mf_expl_outside.adoc b/test-files/golden-tests/templates/ct_mf_expl_outside.adoc index 1c1695d38c..ae9bb102e6 100644 --- a/test-files/golden-tests/templates/ct_mf_expl_outside.adoc +++ b/test-files/golden-tests/templates/ct_mf_expl_outside.adoc @@ -4,24 +4,24 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<templates/ct_mf_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -31,13 +31,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -45,8 +44,10 @@ struct A; [#A-0e-f] == <>::f + === Synopsis + Declared in `<templates/ct_mf_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -58,8 +59,10 @@ f(); [#A-00] == A<int> + === Synopsis + Declared in `<templates/ct_mf_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -69,13 +72,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -83,8 +85,10 @@ struct <><int>; [#A-00-f] == <><int>::f + === Synopsis + Declared in `<templates/ct_mf_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mf_expl_outside.html b/test-files/golden-tests/templates/ct_mf_expl_outside.html index 56255b6ae8..b63709f0c0 100644 --- a/test-files/golden-tests/templates/ct_mf_expl_outside.html +++ b/test-files/golden-tests/templates/ct_mf_expl_outside.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
A -
A<int> -
A
A<int>
@@ -44,13 +42,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -91,13 +88,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/templates/ct_mft.adoc b/test-files/golden-tests/templates/ct_mft.adoc index a10e0c1fbc..0bcd2913bb 100644 --- a/test-files/golden-tests/templates/ct_mft.adoc +++ b/test-files/golden-tests/templates/ct_mft.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/ct_mft.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -28,13 +30,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -42,8 +43,10 @@ struct A; [#A-f] == <>::f + === Synopsis + Declared in `<templates/ct_mft.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mft.html b/test-files/golden-tests/templates/ct_mft.html index 3d6dbabade..3a5a5c5711 100644 --- a/test-files/golden-tests/templates/ct_mft.html +++ b/test-files/golden-tests/templates/ct_mft.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -42,13 +41,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
diff --git a/test-files/golden-tests/templates/ct_mft_expl_inline.adoc b/test-files/golden-tests/templates/ct_mft_expl_inline.adoc index 2726ccfd42..97a108b18c 100644 --- a/test-files/golden-tests/templates/ct_mft_expl_inline.adoc +++ b/test-files/golden-tests/templates/ct_mft_expl_inline.adoc @@ -4,21 +4,23 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== [#A] == A + === Synopsis + Declared in `<templates/ct_mft_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -28,12 +30,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| |=== @@ -41,8 +43,10 @@ struct A; [#A-f] == <>::f + === Synopsis + Declared in `<templates/ct_mft_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -66,8 +70,10 @@ void [#A-f-07] == <>::f + === Synopsis + Declared in `<templates/ct_mft_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -80,8 +86,10 @@ f(); [#A-f-04] == <>::f<int> + === Synopsis + Declared in `<templates/ct_mft_expl_inline.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mft_expl_inline.html b/test-files/golden-tests/templates/ct_mft_expl_inline.html index 3e3c00c6fa..e841544652 100644 --- a/test-files/golden-tests/templates/ct_mft_expl_inline.html +++ b/test-files/golden-tests/templates/ct_mft_expl_inline.html @@ -13,13 +13,12 @@

Types

- + - +
NameDescriptionName
A -
A
@@ -42,12 +41,12 @@

Member Functions

- + - +
NameDescriptionName
f
f
diff --git a/test-files/golden-tests/templates/ct_mft_expl_outside.adoc b/test-files/golden-tests/templates/ct_mft_expl_outside.adoc index 54a5ad22ef..da75655819 100644 --- a/test-files/golden-tests/templates/ct_mft_expl_outside.adoc +++ b/test-files/golden-tests/templates/ct_mft_expl_outside.adoc @@ -4,24 +4,24 @@ [#index] == Global namespace + === Types -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - | <> -| - |=== [#A-0e] == A + === Synopsis + Declared in `<templates/ct_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -31,13 +31,12 @@ struct A; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| - |=== @@ -45,8 +44,10 @@ struct A; [#A-0e-f] == <>::f + === Synopsis + Declared in `<templates/ct_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -59,8 +60,10 @@ f(); [#A-00] == A<int> + === Synopsis + Declared in `<templates/ct_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -70,12 +73,12 @@ struct <><int>; ---- === Member Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| |=== @@ -83,8 +86,10 @@ struct <><int>; [#A-00-f] == <><int>::f + === Synopsis + Declared in `<templates/ct_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -108,8 +113,10 @@ void [#A-00-f-03] == <><int>::f + === Synopsis + Declared in `<templates/ct_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -122,8 +129,10 @@ f(); [#A-00-f-07] == <><int>::f<int> + === Synopsis + Declared in `<templates/ct_mft_expl_outside.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ct_mft_expl_outside.html b/test-files/golden-tests/templates/ct_mft_expl_outside.html index 6ef5a00f58..ccc6e0a2af 100644 --- a/test-files/golden-tests/templates/ct_mft_expl_outside.html +++ b/test-files/golden-tests/templates/ct_mft_expl_outside.html @@ -13,15 +13,13 @@

Types

- + - - + +
NameDescriptionName
A -
A<int> -
A
A<int>
@@ -44,13 +42,12 @@

Member Functions

- + - +
NameDescriptionName
f -
f
@@ -92,12 +89,12 @@

Member Functions

- + - +
NameDescriptionName
f
f
diff --git a/test-files/golden-tests/templates/ft_expl.adoc b/test-files/golden-tests/templates/ft_expl.adoc index bf337be158..f675313930 100644 --- a/test-files/golden-tests/templates/ft_expl.adoc +++ b/test-files/golden-tests/templates/ft_expl.adoc @@ -4,20 +4,23 @@ [#index] == Global namespace + === Functions -[cols=2] + +[cols=1] |=== -| Name | Description +| Name | <> -| |=== [#f] == f + === Synopsis + Declared in `<templates/ft_expl.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -41,8 +44,10 @@ void [#f-03] == f + === Synopsis + Declared in `<templates/ft_expl.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] @@ -55,8 +60,10 @@ f(); [#f-0c] == f<int> + === Synopsis + Declared in `<templates/ft_expl.cpp>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] diff --git a/test-files/golden-tests/templates/ft_expl.html b/test-files/golden-tests/templates/ft_expl.html index b474d61a23..a89fa5ccfd 100644 --- a/test-files/golden-tests/templates/ft_expl.html +++ b/test-files/golden-tests/templates/ft_expl.html @@ -13,12 +13,12 @@

Functions

- + - +
NameDescriptionName
f
f