• Home
  • Raw
  • Download

Lines Matching refs:Result

202                               llvm::raw_svector_ostream &Result) {  in printHTMLStartTagComment()  argument
203 Result << "<" << C->getTagName(); in printHTMLStartTagComment()
207 Result << " "; in printHTMLStartTagComment()
209 Result << Attr.Name; in printHTMLStartTagComment()
211 Result << "=\"" << Attr.Value << "\""; in printHTMLStartTagComment()
216 Result << ">"; in printHTMLStartTagComment()
218 Result << "/>"; in printHTMLStartTagComment()
228 FC(FC), Result(Str), Traits(Traits) in CommentASTToHTMLConverter()
259 llvm::raw_svector_ostream Result; member in __anon53e900610111::CommentASTToHTMLConverter
284 Result << " "; in visitInlineCommandComment()
290 Result << "<b>"; in visitInlineCommandComment()
292 Result << "</b>"; in visitInlineCommandComment()
296 Result << "<tt>"; in visitInlineCommandComment()
298 Result<< "</tt>"; in visitInlineCommandComment()
302 Result << "<em>"; in visitInlineCommandComment()
304 Result << "</em>"; 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()
485 Result.flush(); in visitFullComment()
504 Result << "&amp;"; in appendToResultWithHTMLEscaping()
507 Result << "&lt;"; in appendToResultWithHTMLEscaping()
510 Result << "&gt;"; in appendToResultWithHTMLEscaping()
513 Result << "&quot;"; in appendToResultWithHTMLEscaping()
516 Result << "&#39;"; in appendToResultWithHTMLEscaping()
519 Result << "&#47;"; in appendToResultWithHTMLEscaping()
522 Result << C; in appendToResultWithHTMLEscaping()
539 FC(FC), Result(Str), Traits(Traits), SM(SM), in CommentASTToXMLConverter()
575 llvm::raw_svector_ostream Result; member in __anon53e900610211::CommentASTToXMLConverter
645 Result << " "; in visitInlineCommandComment()
650 Result << "<bold>"; in visitInlineCommandComment()
652 Result << "</bold>"; in visitInlineCommandComment()
656 Result << "<monospaced>"; in visitInlineCommandComment()
658 Result << "</monospaced>"; in visitInlineCommandComment()
662 Result << "<emphasized>"; in visitInlineCommandComment()
664 Result << "</emphasized>"; in visitInlineCommandComment()
671 Result << "<rawHTML"; in visitHTMLStartTagComment()
673 Result << " isMalformed=\"1\""; in visitHTMLStartTagComment()
674 Result << ">"; in visitHTMLStartTagComment()
683 Result << "</rawHTML>"; in visitHTMLStartTagComment()
688 Result << "<rawHTML"; in visitHTMLEndTagComment()
690 Result << " isMalformed=\"1\""; in visitHTMLEndTagComment()
691 Result << ">&lt;/" << C->getTagName() << "&gt;</rawHTML>"; in visitHTMLEndTagComment()
706 Result << "<Para>"; in appendParagraphCommentWithKind()
708 Result << "<Para kind=\"" << ParagraphKind << "\">"; in appendParagraphCommentWithKind()
714 Result << "</Para>"; in appendParagraphCommentWithKind()
750 Result << "<Parameter><Name>"; in visitParamCommandComment()
754 Result << "</Name>"; in visitParamCommandComment()
758 Result << "<IsVarArg />"; in visitParamCommandComment()
760 Result << "<Index>" << C->getParamIndex() << "</Index>"; in visitParamCommandComment()
763 Result << "<Direction isExplicit=\"" << C->isDirectionExplicit() << "\">"; in visitParamCommandComment()
766 Result << "in"; in visitParamCommandComment()
769 Result << "out"; in visitParamCommandComment()
772 Result << "in,out"; in visitParamCommandComment()
775 Result << "</Direction><Discussion>"; in visitParamCommandComment()
777 Result << "</Discussion></Parameter>"; in visitParamCommandComment()
782 Result << "<Parameter><Name>"; in visitTParamCommandComment()
785 Result << "</Name>"; in visitTParamCommandComment()
788 Result << "<Index>" << C->getIndex(0) << "</Index>"; in visitTParamCommandComment()
791 Result << "<Discussion>"; in visitTParamCommandComment()
793 Result << "</Discussion></Parameter>"; in visitTParamCommandComment()
804 Result << "<Verbatim xml:space=\"preserve\" kind=\"code\">"; in visitVerbatimBlockComment()
807 Result << "<Verbatim xml:space=\"preserve\" kind=\"verbatim\">"; in visitVerbatimBlockComment()
813 Result << '\n'; in visitVerbatimBlockComment()
815 Result << "</Verbatim>"; in visitVerbatimBlockComment()
825 Result << "<Verbatim xml:space=\"preserve\" kind=\"verbatim\">"; in visitVerbatimLineComment()
827 Result << "</Verbatim>"; in visitVerbatimLineComment()
839 Result << "<Other"; in visitFullComment()
843 Result << "<Function"; in visitFullComment()
848 Result << " templateKind=\"template\""; in visitFullComment()
851 Result << " templateKind=\"specialization\""; in visitFullComment()
858 Result << " isInstanceMethod=\"1\""; in visitFullComment()
860 Result << " isClassMethod=\"1\""; in visitFullComment()
864 Result << "<Class"; in visitFullComment()
869 Result << " templateKind=\"template\""; in visitFullComment()
872 Result << " templateKind=\"specialization\""; in visitFullComment()
875 Result << " templateKind=\"partialSpecialization\""; in visitFullComment()
881 Result << "<Variable"; in visitFullComment()
885 Result << "<Namespace"; in visitFullComment()
889 Result << "<Typedef"; in visitFullComment()
893 Result << "<Enum"; in visitFullComment()
906 Result << " file=\""; in visitFullComment()
908 Result << "\""; in visitFullComment()
910 Result << " line=\"" << SM.getLineNumber(FID, FileOffset) in visitFullComment()
917 Result << ">"; in visitFullComment()
922 Result << "<Name>"; in visitFullComment()
926 Result << "</Name>"; in visitFullComment()
930 Result << "<Name>&lt;anonymous&gt;</Name>"; in visitFullComment()
937 Result << "<USR>"; in visitFullComment()
939 Result << "</USR>"; in visitFullComment()
945 Result << "<Other><Name>unknown</Name>"; in visitFullComment()
949 Result << "<Headerfile>"; in visitFullComment()
951 Result << "</Headerfile>"; in visitFullComment()
956 Result << "<Declaration>"; in visitFullComment()
961 Result << "</Declaration>"; in visitFullComment()
966 Result << "<Abstract>"; in visitFullComment()
968 Result << "</Abstract>"; in visitFullComment()
970 Result << "<Abstract>"; in visitFullComment()
972 Result << "</Abstract>"; in visitFullComment()
977 Result << "<TemplateParameters>"; in visitFullComment()
980 Result << "</TemplateParameters>"; in visitFullComment()
984 Result << "<Parameters>"; in visitFullComment()
987 Result << "</Parameters>"; in visitFullComment()
991 Result << "<Exceptions>"; in visitFullComment()
994 Result << "</Exceptions>"; in visitFullComment()
998 Result << "<ResultDiscussion>"; in visitFullComment()
1001 Result << "</ResultDiscussion>"; in visitFullComment()
1011 Result << "<Deprecated/>"; in visitFullComment()
1013 Result << "<Deprecated>"; in visitFullComment()
1015 Result << "</Deprecated>"; in visitFullComment()
1020 Result << "<Unavailable/>"; in visitFullComment()
1022 Result << "<Unavailable>"; in visitFullComment()
1024 Result << "</Unavailable>"; in visitFullComment()
1031 Result << "<Availability"; in visitFullComment()
1039 Result << " distribution=\"" << Distribution << "\">"; in visitFullComment()
1042 Result << "<IntroducedInVersion>" in visitFullComment()
1048 Result << "<DeprecatedInVersion>" in visitFullComment()
1054 Result << "<RemovedAfterVersion>" in visitFullComment()
1060 Result << "<DeprecationSummary>"; in visitFullComment()
1062 Result << "</DeprecationSummary>"; in visitFullComment()
1065 Result << "<Unavailable/>"; in visitFullComment()
1066 Result << "</Availability>"; in visitFullComment()
1077 Result << "<Discussion>"; in visitFullComment()
1083 Result << "</Discussion>"; in visitFullComment()
1086 Result << RootEndTag; in visitFullComment()
1088 Result.flush(); in visitFullComment()
1096 Result << "&amp;"; in appendToResultWithXMLEscaping()
1099 Result << "&lt;"; in appendToResultWithXMLEscaping()
1102 Result << "&gt;"; in appendToResultWithXMLEscaping()
1105 Result << "&quot;"; in appendToResultWithXMLEscaping()
1108 Result << "&apos;"; in appendToResultWithXMLEscaping()
1111 Result << C; in appendToResultWithXMLEscaping()
1121 Result << "<![CDATA["; in appendToResultWithCDATAEscaping()
1125 Result << "]]]]><![CDATA[>"; in appendToResultWithCDATAEscaping()
1132 Result << S.substr(0, Pos); in appendToResultWithCDATAEscaping()
1136 Result << "]]>"; in appendToResultWithCDATAEscaping()