• Home
  • Raw
  • Download

Lines Matching refs:Result

201                               llvm::raw_svector_ostream &Result) {  in printHTMLStartTagComment()  argument
202 Result << "<" << C->getTagName(); in printHTMLStartTagComment()
206 Result << " "; in printHTMLStartTagComment()
208 Result << Attr.Name; in printHTMLStartTagComment()
210 Result << "=\"" << Attr.Value << "\""; in printHTMLStartTagComment()
215 Result << ">"; in printHTMLStartTagComment()
217 Result << "/>"; in printHTMLStartTagComment()
227 FC(FC), Result(Str), Traits(Traits) in CommentASTToHTMLConverter()
258 llvm::raw_svector_ostream Result; member in __anonc26120f60111::CommentASTToHTMLConverter
283 Result << " "; in visitInlineCommandComment()
289 Result << "<b>"; in visitInlineCommandComment()
291 Result << "</b>"; in visitInlineCommandComment()
295 Result << "<tt>"; in visitInlineCommandComment()
297 Result<< "</tt>"; in visitInlineCommandComment()
301 Result << "<em>"; in visitInlineCommandComment()
303 Result << "</em>"; in visitInlineCommandComment()
310 printHTMLStartTagComment(C, Result); in visitHTMLStartTagComment()
315 Result << "</" << C->getTagName() << ">"; in visitHTMLEndTagComment()
323 Result << "<p>"; in visitParagraphComment()
328 Result << "</p>"; in visitParagraphComment()
335 Result << "<p class=\"para-brief\">"; in visitBlockCommandComment()
337 Result << "</p>"; in visitBlockCommandComment()
341 Result << "<p class=\"para-returns\">" in visitBlockCommandComment()
344 Result << "</p>"; in visitBlockCommandComment()
355 Result << "<dt class=\"param-name-index-vararg\">"; in visitParamCommandComment()
358 Result << "<dt class=\"param-name-index-" in visitParamCommandComment()
364 Result << "<dt class=\"param-name-index-invalid\">"; in visitParamCommandComment()
367 Result << "</dt>"; in visitParamCommandComment()
371 Result << "<dd class=\"param-descr-index-vararg\">"; in visitParamCommandComment()
373 Result << "<dd class=\"param-descr-index-" in visitParamCommandComment()
377 Result << "<dd class=\"param-descr-index-invalid\">"; in visitParamCommandComment()
380 Result << "</dd>"; in visitParamCommandComment()
387 Result << "<dt class=\"tparam-name-index-" in visitTParamCommandComment()
391 Result << "<dt class=\"tparam-name-index-other\">"; in visitTParamCommandComment()
394 Result << "<dt class=\"tparam-name-index-invalid\">"; in visitTParamCommandComment()
398 Result << "</dt>"; in visitTParamCommandComment()
402 Result << "<dd class=\"tparam-descr-index-" in visitTParamCommandComment()
406 Result << "<dd class=\"tparam-descr-index-other\">"; in visitTParamCommandComment()
408 Result << "<dd class=\"tparam-descr-index-invalid\">"; in visitTParamCommandComment()
411 Result << "</dd>"; in visitTParamCommandComment()
420 Result << "<pre>"; in visitVerbatimBlockComment()
424 Result << '\n'; in visitVerbatimBlockComment()
426 Result << "</pre>"; in visitVerbatimBlockComment()
436 Result << "<pre>"; in visitVerbatimLineComment()
438 Result << "</pre>"; in visitVerbatimLineComment()
450 Result << "<p class=\"para-brief\">"; in visitFullComment()
452 Result << "</p>"; in visitFullComment()
464 Result << "<dl>"; in visitFullComment()
467 Result << "</dl>"; in visitFullComment()
471 Result << "<dl>"; in visitFullComment()
474 Result << "</dl>"; in visitFullComment()
478 Result << "<div class=\"result-discussion\">"; in visitFullComment()
481 Result << "</div>"; in visitFullComment()
502 Result << "&amp;"; in appendToResultWithHTMLEscaping()
505 Result << "&lt;"; in appendToResultWithHTMLEscaping()
508 Result << "&gt;"; in appendToResultWithHTMLEscaping()
511 Result << "&quot;"; in appendToResultWithHTMLEscaping()
514 Result << "&#39;"; in appendToResultWithHTMLEscaping()
517 Result << "&#47;"; in appendToResultWithHTMLEscaping()
520 Result << C; in appendToResultWithHTMLEscaping()
537 FC(FC), Result(Str), Traits(Traits), SM(SM), in CommentASTToXMLConverter()
573 llvm::raw_svector_ostream Result; member in __anonc26120f60211::CommentASTToXMLConverter
638 Result << " "; in visitInlineCommandComment()
643 Result << "<bold>"; in visitInlineCommandComment()
645 Result << "</bold>"; in visitInlineCommandComment()
649 Result << "<monospaced>"; in visitInlineCommandComment()
651 Result << "</monospaced>"; in visitInlineCommandComment()
655 Result << "<emphasized>"; in visitInlineCommandComment()
657 Result << "</emphasized>"; in visitInlineCommandComment()
664 Result << "<rawHTML"; in visitHTMLStartTagComment()
666 Result << " isMalformed=\"1\""; in visitHTMLStartTagComment()
667 Result << ">"; in visitHTMLStartTagComment()
676 Result << "</rawHTML>"; in visitHTMLStartTagComment()
681 Result << "<rawHTML"; in visitHTMLEndTagComment()
683 Result << " isMalformed=\"1\""; in visitHTMLEndTagComment()
684 Result << ">&lt;/" << C->getTagName() << "&gt;</rawHTML>"; in visitHTMLEndTagComment()
699 Result << "<Para>"; in appendParagraphCommentWithKind()
701 Result << "<Para kind=\"" << ParagraphKind << "\">"; in appendParagraphCommentWithKind()
707 Result << "</Para>"; in appendParagraphCommentWithKind()
743 Result << "<Parameter><Name>"; in visitParamCommandComment()
747 Result << "</Name>"; in visitParamCommandComment()
751 Result << "<IsVarArg />"; in visitParamCommandComment()
753 Result << "<Index>" << C->getParamIndex() << "</Index>"; in visitParamCommandComment()
756 Result << "<Direction isExplicit=\"" << C->isDirectionExplicit() << "\">"; in visitParamCommandComment()
759 Result << "in"; in visitParamCommandComment()
762 Result << "out"; in visitParamCommandComment()
765 Result << "in,out"; in visitParamCommandComment()
768 Result << "</Direction><Discussion>"; in visitParamCommandComment()
770 Result << "</Discussion></Parameter>"; in visitParamCommandComment()
775 Result << "<Parameter><Name>"; in visitTParamCommandComment()
778 Result << "</Name>"; in visitTParamCommandComment()
781 Result << "<Index>" << C->getIndex(0) << "</Index>"; in visitTParamCommandComment()
784 Result << "<Discussion>"; in visitTParamCommandComment()
786 Result << "</Discussion></Parameter>"; in visitTParamCommandComment()
797 Result << "<Verbatim xml:space=\"preserve\" kind=\"code\">"; in visitVerbatimBlockComment()
800 Result << "<Verbatim xml:space=\"preserve\" kind=\"verbatim\">"; in visitVerbatimBlockComment()
806 Result << '\n'; in visitVerbatimBlockComment()
808 Result << "</Verbatim>"; in visitVerbatimBlockComment()
818 Result << "<Verbatim xml:space=\"preserve\" kind=\"verbatim\">"; in visitVerbatimLineComment()
820 Result << "</Verbatim>"; in visitVerbatimLineComment()
832 Result << "<Other"; in visitFullComment()
836 Result << "<Function"; in visitFullComment()
841 Result << " templateKind=\"template\""; in visitFullComment()
844 Result << " templateKind=\"specialization\""; in visitFullComment()
851 Result << " isInstanceMethod=\"1\""; in visitFullComment()
853 Result << " isClassMethod=\"1\""; in visitFullComment()
857 Result << "<Class"; in visitFullComment()
862 Result << " templateKind=\"template\""; in visitFullComment()
865 Result << " templateKind=\"specialization\""; in visitFullComment()
868 Result << " templateKind=\"partialSpecialization\""; in visitFullComment()
874 Result << "<Variable"; in visitFullComment()
878 Result << "<Namespace"; in visitFullComment()
882 Result << "<Typedef"; in visitFullComment()
886 Result << "<Enum"; in visitFullComment()
899 Result << " file=\""; in visitFullComment()
901 Result << "\""; in visitFullComment()
903 Result << " line=\"" << SM.getLineNumber(FID, FileOffset) in visitFullComment()
910 Result << ">"; in visitFullComment()
915 Result << "<Name>"; in visitFullComment()
919 Result << "</Name>"; in visitFullComment()
923 Result << "<Name>&lt;anonymous&gt;</Name>"; in visitFullComment()
930 Result << "<USR>"; in visitFullComment()
932 Result << "</USR>"; in visitFullComment()
938 Result << "<Other><Name>unknown</Name>"; in visitFullComment()
942 Result << "<Headerfile>"; in visitFullComment()
944 Result << "</Headerfile>"; in visitFullComment()
949 Result << "<Declaration>"; in visitFullComment()
954 Result << "</Declaration>"; in visitFullComment()
959 Result << "<Abstract>"; in visitFullComment()
961 Result << "</Abstract>"; in visitFullComment()
963 Result << "<Abstract>"; in visitFullComment()
965 Result << "</Abstract>"; in visitFullComment()
970 Result << "<TemplateParameters>"; in visitFullComment()
973 Result << "</TemplateParameters>"; in visitFullComment()
977 Result << "<Parameters>"; in visitFullComment()
980 Result << "</Parameters>"; in visitFullComment()
984 Result << "<Exceptions>"; in visitFullComment()
987 Result << "</Exceptions>"; in visitFullComment()
991 Result << "<ResultDiscussion>"; in visitFullComment()
994 Result << "</ResultDiscussion>"; in visitFullComment()
1004 Result << "<Deprecated/>"; in visitFullComment()
1006 Result << "<Deprecated>"; in visitFullComment()
1008 Result << "</Deprecated>"; in visitFullComment()
1013 Result << "<Unavailable/>"; in visitFullComment()
1015 Result << "<Unavailable>"; in visitFullComment()
1017 Result << "</Unavailable>"; in visitFullComment()
1024 Result << "<Availability"; in visitFullComment()
1032 Result << " distribution=\"" << Distribution << "\">"; in visitFullComment()
1035 Result << "<IntroducedInVersion>" in visitFullComment()
1041 Result << "<DeprecatedInVersion>" in visitFullComment()
1047 Result << "<RemovedAfterVersion>" in visitFullComment()
1053 Result << "<DeprecationSummary>"; in visitFullComment()
1055 Result << "</DeprecationSummary>"; in visitFullComment()
1058 Result << "<Unavailable/>"; in visitFullComment()
1059 Result << "</Availability>"; in visitFullComment()
1070 Result << "<Discussion>"; in visitFullComment()
1076 Result << "</Discussion>"; in visitFullComment()
1079 Result << RootEndTag; in visitFullComment()
1087 Result << "&amp;"; in appendToResultWithXMLEscaping()
1090 Result << "&lt;"; in appendToResultWithXMLEscaping()
1093 Result << "&gt;"; in appendToResultWithXMLEscaping()
1096 Result << "&quot;"; in appendToResultWithXMLEscaping()
1099 Result << "&apos;"; in appendToResultWithXMLEscaping()
1102 Result << C; in appendToResultWithXMLEscaping()
1112 Result << "<![CDATA["; in appendToResultWithCDATAEscaping()
1116 Result << "]]]]><![CDATA[>"; in appendToResultWithCDATAEscaping()
1123 Result << S.substr(0, Pos); in appendToResultWithCDATAEscaping()
1127 Result << "]]>"; in appendToResultWithCDATAEscaping()