Home
last modified time | relevance | path

Searched refs:HTMLStartTagComment (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentSema.h70 SmallVector<HTMLStartTagComment *, 8> HTMLOpenTags;
171 HTMLStartTagComment *actOnHTMLStartTagStart(SourceLocation LocBegin,
174 void actOnHTMLStartTagFinish(HTMLStartTagComment *Tag,
175 ArrayRef<HTMLStartTagComment::Attribute> Attrs,
H A DCommentParser.h108 HTMLStartTagComment *parseHTMLStartTag();
H A DComment.h115 friend class HTMLStartTagComment; variable
414 class HTMLStartTagComment : public HTMLTagComment {
455 HTMLStartTagComment(SourceLocation LocBegin, in HTMLStartTagComment() function
H A DTextNodeDumper.h191 void visitHTMLStartTagComment(const comments::HTMLStartTagComment *C,
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DCommentParser.cpp433 HTMLStartTagComment *Parser::parseHTMLStartTag() { in parseHTMLStartTag()
435 HTMLStartTagComment *HST = in parseHTMLStartTag()
440 SmallVector<HTMLStartTagComment::Attribute, 2> Attrs; in parseHTMLStartTag()
447 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(), in parseHTMLStartTag()
457 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(), in parseHTMLStartTag()
464 Attrs.push_back(HTMLStartTagComment::Attribute( in parseHTMLStartTag()
H A DCommentSema.cpp458 HTMLStartTagComment *Sema::actOnHTMLStartTagStart(SourceLocation LocBegin, in actOnHTMLStartTagStart()
460 return new (Allocator) HTMLStartTagComment(LocBegin, TagName); in actOnHTMLStartTagStart()
464 HTMLStartTagComment *Tag, in actOnHTMLStartTagFinish()
465 ArrayRef<HTMLStartTagComment::Attribute> Attrs, in actOnHTMLStartTagFinish()
489 for (SmallVectorImpl<HTMLStartTagComment *>::const_reverse_iterator in actOnHTMLEndTag()
505 HTMLStartTagComment *HST = HTMLOpenTags.pop_back_val(); in actOnHTMLEndTag()
551 HTMLStartTagComment *HST = HTMLOpenTags.pop_back_val(); in actOnFullComment()
H A DTextNodeDumper.cpp474 const comments::HTMLStartTagComment *C, const comments::FullComment *) { in visitHTMLStartTagComment()
479 const comments::HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in visitHTMLStartTagComment()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Index/
H A DCommentToXML.cpp199 void printHTMLStartTagComment(const HTMLStartTagComment *C, in printHTMLStartTagComment()
206 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in printHTMLStartTagComment()
232 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
308 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
539 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
652 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCommentNodes.td13 def HTMLStartTagComment : DComment<HTMLTagComment>;