Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDCommentSema.h70 SmallVector<HTMLStartTagComment *, 8> HTMLOpenTags;
175 HTMLStartTagComment *actOnHTMLStartTagStart(SourceLocation LocBegin,
178 void actOnHTMLStartTagFinish(HTMLStartTagComment *Tag,
179 ArrayRef<HTMLStartTagComment::Attribute> Attrs,
HDCommentParser.h108 HTMLStartTagComment *parseHTMLStartTag();
HDComment.h115 friend class HTMLStartTagComment; variable
419 class HTMLStartTagComment : public HTMLTagComment {
460 HTMLStartTagComment(SourceLocation LocBegin, in HTMLStartTagComment() function
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDCommentParser.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()
HDCommentSema.cpp460 HTMLStartTagComment *Sema::actOnHTMLStartTagStart(SourceLocation LocBegin, in actOnHTMLStartTagStart()
462 return new (Allocator) HTMLStartTagComment(LocBegin, TagName); in actOnHTMLStartTagStart()
466 HTMLStartTagComment *Tag, in actOnHTMLStartTagFinish()
467 ArrayRef<HTMLStartTagComment::Attribute> Attrs, in actOnHTMLStartTagFinish()
491 for (SmallVectorImpl<HTMLStartTagComment *>::const_reverse_iterator in actOnHTMLEndTag()
507 HTMLStartTagComment *HST = HTMLOpenTags.pop_back_val(); in actOnHTMLEndTag()
553 HTMLStartTagComment *HST = HTMLOpenTags.pop_back_val(); in actOnFullComment()
HDASTDumper.cpp546 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
2207 void ASTDumper::visitHTMLStartTagComment(const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
2212 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in visitHTMLStartTagComment()
/NextBSD/contrib/llvm/tools/clang/lib/Index/
HDCommentToXML.cpp200 void printHTMLStartTagComment(const HTMLStartTagComment *C, in printHTMLStartTagComment()
207 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in printHTMLStartTagComment()
233 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
309 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
545 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
664 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDCommentNodes.td13 def HTMLStartTagComment : DComment<HTMLTagComment>;