Home
last modified time | relevance | path

Searched refs:HTMLTagComment (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DCommentNodes.td12 def HTMLTagComment : CommentNode<InlineContentComment, 1>;
13 def HTMLStartTagComment : CommentNode<HTMLTagComment>;
14 def HTMLEndTagComment : CommentNode<HTMLTagComment>;
/freebsd-src/contrib/llvm-project/clang/include/clang/Index/
H A DCommentToXML.h19 class HTMLTagComment; variable
32 void convertHTMLTagNodeToText(const comments::HTMLTagComment *HTC,
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DComment.h127 friend class HTMLTagComment;
391 class HTMLTagComment : public InlineContentComment {
396 HTMLTagComment(CommentKind K,
433 class HTMLStartTagComment : public HTMLTagComment {
469 : HTMLTagComment(CommentKind::HTMLStartTagComment, LocBegin,
519 class HTMLEndTagComment : public HTMLTagComment {
523 : HTMLTagComment(CommentKind::HTMLEndTagComment, LocBegin, LocEnd,
/freebsd-src/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp1156 const comments::HTMLTagComment *HTC, SmallVectorImpl<char> &Text,