Lines Matching full:result
198 llvm::raw_svector_ostream &Result) { in printHTMLStartTagComment() argument
199 Result << "<" << C->getTagName(); in printHTMLStartTagComment()
203 Result << " "; in printHTMLStartTagComment()
205 Result << Attr.Name; in printHTMLStartTagComment()
207 Result << "=\"" << Attr.Value << "\""; in printHTMLStartTagComment()
212 Result << ">"; in printHTMLStartTagComment()
214 Result << "/>"; in printHTMLStartTagComment()
224 FC(FC), Result(Str), Traits(Traits) in CommentASTToHTMLConverter()
255 llvm::raw_svector_ostream Result; member in __anon4be452bf0111::CommentASTToHTMLConverter
280 Result << " "; in visitInlineCommandComment()
286 Result << "<b>"; in visitInlineCommandComment()
288 Result << "</b>"; in visitInlineCommandComment()
292 Result << "<tt>"; in visitInlineCommandComment()
294 Result<< "</tt>"; in visitInlineCommandComment()
298 Result << "<em>"; in visitInlineCommandComment()
300 Result << "</em>"; in visitInlineCommandComment()
304 Result << "<span id=\"" << Arg0 << "\"></span>"; in visitInlineCommandComment()
311 printHTMLStartTagComment(C, Result); in visitHTMLStartTagComment()
316 Result << "</" << C->getTagName() << ">"; in visitHTMLEndTagComment()
324 Result << "<p>"; in visitParagraphComment()
329 Result << "</p>"; in visitParagraphComment()
336 Result << "<p class=\"para-brief\">"; in visitBlockCommandComment()
338 Result << "</p>"; in visitBlockCommandComment()
342 Result << "<p class=\"para-returns\">" in visitBlockCommandComment()
345 Result << "</p>"; in visitBlockCommandComment()
356 Result << "<dt class=\"param-name-index-vararg\">"; in visitParamCommandComment()
359 Result << "<dt class=\"param-name-index-" in visitParamCommandComment()
365 Result << "<dt class=\"param-name-index-invalid\">"; in visitParamCommandComment()
368 Result << "</dt>"; in visitParamCommandComment()
372 Result << "<dd class=\"param-descr-index-vararg\">"; in visitParamCommandComment()
374 Result << "<dd class=\"param-descr-index-" in visitParamCommandComment()
378 Result << "<dd class=\"param-descr-index-invalid\">"; in visitParamCommandComment()
381 Result << "</dd>"; in visitParamCommandComment()
388 Result << "<dt class=\"tparam-name-index-" in visitTParamCommandComment()
392 Result << "<dt class=\"tparam-name-index-other\">"; in visitTParamCommandComment()
395 Result << "<dt class=\"tparam-name-index-invalid\">"; in visitTParamCommandComment()
399 Result << "</dt>"; in visitTParamCommandComment()
403 Result << "<dd class=\"tparam-descr-index-" in visitTParamCommandComment()
407 Result << "<dd class=\"tparam-descr-index-other\">"; in visitTParamCommandComment()
409 Result << "<dd class=\"tparam-descr-index-invalid\">"; in visitTParamCommandComment()
412 Result << "</dd>"; in visitTParamCommandComment()
421 Result << "<pre>"; in visitVerbatimBlockComment()
425 Result << '\n'; in visitVerbatimBlockComment()
427 Result << "</pre>"; in visitVerbatimBlockComment()
437 Result << "<pre>"; in visitVerbatimLineComment()
439 Result << "</pre>"; in visitVerbatimLineComment()
451 Result << "<p class=\"para-brief\">"; in visitFullComment()
453 Result << "</p>"; in visitFullComment()
465 Result << "<dl>"; in visitFullComment()
468 Result << "</dl>"; in visitFullComment()
472 Result << "<dl>"; in visitFullComment()
475 Result << "</dl>"; in visitFullComment()
479 Result << "<div class=\"result-discussion\">"; in visitFullComment()
482 Result << "</div>"; in visitFullComment()
503 Result << "&"; in appendToResultWithHTMLEscaping()
506 Result << "<"; in appendToResultWithHTMLEscaping()
509 Result << ">"; in appendToResultWithHTMLEscaping()
512 Result << """; in appendToResultWithHTMLEscaping()
515 Result << "'"; in appendToResultWithHTMLEscaping()
518 Result << "/"; in appendToResultWithHTMLEscaping()
521 Result << C; in appendToResultWithHTMLEscaping()
536 FC(FC), Result(Str), Traits(Traits), SM(SM) { } in CommentASTToXMLConverter()
570 llvm::raw_svector_ostream Result; member in __anon4be452bf0211::CommentASTToXMLConverter
629 Result << " "; in visitInlineCommandComment()
634 Result << "<bold>"; in visitInlineCommandComment()
636 Result << "</bold>"; in visitInlineCommandComment()
640 Result << "<monospaced>"; in visitInlineCommandComment()
642 Result << "</monospaced>"; in visitInlineCommandComment()
646 Result << "<emphasized>"; in visitInlineCommandComment()
648 Result << "</emphasized>"; in visitInlineCommandComment()
652 Result << "<anchor id=\"" << Arg0 << "\"></anchor>"; in visitInlineCommandComment()
659 Result << "<rawHTML"; in visitHTMLStartTagComment()
661 Result << " isMalformed=\"1\""; in visitHTMLStartTagComment()
662 Result << ">"; in visitHTMLStartTagComment()
671 Result << "</rawHTML>"; in visitHTMLStartTagComment()
676 Result << "<rawHTML"; in visitHTMLEndTagComment()
678 Result << " isMalformed=\"1\""; in visitHTMLEndTagComment()
679 Result << "></" << C->getTagName() << "></rawHTML>"; in visitHTMLEndTagComment()
694 Result << "<Para>"; in appendParagraphCommentWithKind()
696 Result << "<Para kind=\"" << ParagraphKind << "\">"; in appendParagraphCommentWithKind()
702 Result << "</Para>"; in appendParagraphCommentWithKind()
739 Result << "<Parameter><Name>"; in visitParamCommandComment()
743 Result << "</Name>"; in visitParamCommandComment()
747 Result << "<IsVarArg />"; in visitParamCommandComment()
749 Result << "<Index>" << C->getParamIndex() << "</Index>"; in visitParamCommandComment()
752 Result << "<Direction isExplicit=\"" << C->isDirectionExplicit() << "\">"; in visitParamCommandComment()
755 Result << "in"; in visitParamCommandComment()
758 Result << "out"; in visitParamCommandComment()
761 Result << "in,out"; in visitParamCommandComment()
764 Result << "</Direction><Discussion>"; in visitParamCommandComment()
766 Result << "</Discussion></Parameter>"; in visitParamCommandComment()
771 Result << "<Parameter><Name>"; in visitTParamCommandComment()
774 Result << "</Name>"; in visitTParamCommandComment()
777 Result << "<Index>" << C->getIndex(0) << "</Index>"; in visitTParamCommandComment()
780 Result << "<Discussion>"; in visitTParamCommandComment()
782 Result << "</Discussion></Parameter>"; in visitTParamCommandComment()
793 Result << "<Verbatim xml:space=\"preserve\" kind=\"code\">"; in visitVerbatimBlockComment()
796 Result << "<Verbatim xml:space=\"preserve\" kind=\"verbatim\">"; in visitVerbatimBlockComment()
802 Result << '\n'; in visitVerbatimBlockComment()
804 Result << "</Verbatim>"; in visitVerbatimBlockComment()
814 Result << "<Verbatim xml:space=\"preserve\" kind=\"verbatim\">"; in visitVerbatimLineComment()
816 Result << "</Verbatim>"; in visitVerbatimLineComment()
828 Result << "<Other"; in visitFullComment()
832 Result << "<Function"; in visitFullComment()
837 Result << " templateKind=\"template\""; in visitFullComment()
840 Result << " templateKind=\"specialization\""; in visitFullComment()
847 Result << " isInstanceMethod=\"1\""; in visitFullComment()
849 Result << " isClassMethod=\"1\""; in visitFullComment()
853 Result << "<Class"; in visitFullComment()
858 Result << " templateKind=\"template\""; in visitFullComment()
861 Result << " templateKind=\"specialization\""; in visitFullComment()
864 Result << " templateKind=\"partialSpecialization\""; in visitFullComment()
870 Result << "<Variable"; in visitFullComment()
874 Result << "<Namespace"; in visitFullComment()
878 Result << "<Typedef"; in visitFullComment()
882 Result << "<Enum"; in visitFullComment()
895 Result << " file=\""; in visitFullComment()
897 Result << "\""; in visitFullComment()
899 Result << " line=\"" << SM.getLineNumber(FID, FileOffset) in visitFullComment()
906 Result << ">"; in visitFullComment()
911 Result << "<Name>"; in visitFullComment()
915 Result << "</Name>"; in visitFullComment()
919 Result << "<Name><anonymous></Name>"; in visitFullComment()
926 Result << "<USR>"; in visitFullComment()
928 Result << "</USR>"; in visitFullComment()
934 Result << "<Other><Name>unknown</Name>"; in visitFullComment()
938 Result << "<Headerfile>"; in visitFullComment()
940 Result << "</Headerfile>"; in visitFullComment()
945 Result << "<Declaration>"; in visitFullComment()
950 Result << "</Declaration>"; in visitFullComment()
955 Result << "<Abstract>"; in visitFullComment()
957 Result << "</Abstract>"; in visitFullComment()
959 Result << "<Abstract>"; in visitFullComment()
961 Result << "</Abstract>"; in visitFullComment()
966 Result << "<TemplateParameters>"; in visitFullComment()
969 Result << "</TemplateParameters>"; in visitFullComment()
973 Result << "<Parameters>"; in visitFullComment()
976 Result << "</Parameters>"; in visitFullComment()
980 Result << "<Exceptions>"; in visitFullComment()
983 Result << "</Exceptions>"; in visitFullComment()
987 Result << "<ResultDiscussion>"; in visitFullComment()
990 Result << "</ResultDiscussion>"; in visitFullComment()
1000 Result << "<Deprecated/>"; in visitFullComment()
1002 Result << "<Deprecated>"; in visitFullComment()
1004 Result << "</Deprecated>"; in visitFullComment()
1009 Result << "<Unavailable/>"; in visitFullComment()
1011 Result << "<Unavailable>"; in visitFullComment()
1013 Result << "</Unavailable>"; in visitFullComment()
1020 Result << "<Availability"; in visitFullComment()
1028 Result << " distribution=\"" << Distribution << "\">"; in visitFullComment()
1031 Result << "<IntroducedInVersion>" in visitFullComment()
1037 Result << "<DeprecatedInVersion>" in visitFullComment()
1043 Result << "<RemovedAfterVersion>" in visitFullComment()
1049 Result << "<DeprecationSummary>"; in visitFullComment()
1051 Result << "</DeprecationSummary>"; in visitFullComment()
1054 Result << "<Unavailable/>"; in visitFullComment()
1055 Result << "</Availability>"; in visitFullComment()
1066 Result << "<Discussion>"; in visitFullComment()
1072 Result << "</Discussion>"; in visitFullComment()
1075 Result << RootEndTag; in visitFullComment()
1083 Result << "&"; in appendToResultWithXMLEscaping()
1086 Result << "<"; in appendToResultWithXMLEscaping()
1089 Result << ">"; in appendToResultWithXMLEscaping()
1092 Result << """; in appendToResultWithXMLEscaping()
1095 Result << "'"; in appendToResultWithXMLEscaping()
1098 Result << C; in appendToResultWithXMLEscaping()
1108 Result << "<![CDATA["; in appendToResultWithCDATAEscaping()
1112 Result << "]]]]><![CDATA[>"; in appendToResultWithCDATAEscaping()
1119 Result << S.substr(0, Pos); in appendToResultWithCDATAEscaping()
1123 Result << "]]>"; in appendToResultWithCDATAEscaping()