Lines Matching defs:genHTML
375 genHTML(const EnumInfo &I, const ClangDocContext &CDCtx);
377 genHTML(const FunctionInfo &I, const ClangDocContext &CDCtx,
379 static std::unique_ptr<TagNode> genHTML(const std::vector<CommentInfo> &C);
393 std::vector<std::unique_ptr<TagNode>> Nodes = genHTML(E, CDCtx);
420 TD->Children.emplace_back(genHTML(M.Description));
441 genHTML(F, CDCtx, ParentInfoDir);
468 LIBody->Children.emplace_back(genHTML(M.Description));
521 genHTML(const Index &Index, StringRef InfoPath, bool IsOutermostList);
578 genHTML(InfoIndex, InfoPath, true);
632 genHTML(const Index &Index, StringRef InfoPath, bool IsOutermostList) {
651 std::vector<std::unique_ptr<TagNode>> Nodes = genHTML(C, InfoPath, false);
658 static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
662 std::unique_ptr<HTMLNode> Node = genHTML(*Child);
672 std::unique_ptr<HTMLNode> Node = genHTML(*Child);
686 std::unique_ptr<HTMLNode> Node = genHTML(*Child);
702 static std::unique_ptr<TagNode> genHTML(const std::vector<CommentInfo> &C) {
705 if (std::unique_ptr<HTMLNode> Node = genHTML(Child))
712 genHTML(const EnumInfo &I, const ClangDocContext &CDCtx) {
749 Out.emplace_back(genHTML(I.Description));
755 genHTML(const FunctionInfo &I, const ClangDocContext &CDCtx,
798 Out.emplace_back(genHTML(I.Description));
804 genHTML(const NamespaceInfo &I, Index &InfoIndex, const ClangDocContext &CDCtx,
816 Out.emplace_back(genHTML(I.Description));
849 genHTML(const RecordInfo &I, Index &InfoIndex, const ClangDocContext &CDCtx,
865 Out.emplace_back(genHTML(I.Description));
915 genHTML(const TypedefInfo &I, const ClangDocContext &CDCtx,
996 MainContentNodes = genHTML(*static_cast<clang::doc::NamespaceInfo *>(I),
1000 MainContentNodes = genHTML(*static_cast<clang::doc::RecordInfo *>(I),
1004 MainContentNodes = genHTML(*static_cast<clang::doc::EnumInfo *>(I), CDCtx);
1008 genHTML(*static_cast<clang::doc::FunctionInfo *>(I), CDCtx, "");
1012 genHTML(*static_cast<clang::doc::TypedefInfo *>(I), CDCtx, InfoTitle);