Home
last modified time | relevance | path

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

/trueos/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.h112 HTMLStartTagComment *parseHTMLStartTag();
HDComment.h104 friend class HTMLStartTagComment; variable
398 class HTMLStartTagComment : public HTMLTagComment {
439 HTMLStartTagComment(SourceLocation LocBegin, in HTMLStartTagComment() function
/trueos/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.cpp455 HTMLStartTagComment *Sema::actOnHTMLStartTagStart(SourceLocation LocBegin, in actOnHTMLStartTagStart()
457 return new (Allocator) HTMLStartTagComment(LocBegin, TagName); in actOnHTMLStartTagStart()
461 HTMLStartTagComment *Tag, in actOnHTMLStartTagFinish()
462 ArrayRef<HTMLStartTagComment::Attribute> Attrs, in actOnHTMLStartTagFinish()
485 for (SmallVectorImpl<HTMLStartTagComment *>::const_reverse_iterator in actOnHTMLEndTag()
500 const HTMLStartTagComment *HST = HTMLOpenTags.pop_back_val(); in actOnHTMLEndTag()
HDASTDumper.cpp324 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
2030 void ASTDumper::visitHTMLStartTagComment(const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
2035 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in visitHTMLStartTagComment()
/trueos/contrib/llvm/tools/clang/lib/Index/
HDCommentToXML.cpp201 void printHTMLStartTagComment(const HTMLStartTagComment *C, in printHTMLStartTagComment()
208 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in printHTMLStartTagComment()
234 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
310 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
546 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
669 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
/trueos/contrib/llvm/tools/clang/include/clang/Basic/
HDCommentNodes.td13 def HTMLStartTagComment : DComment<HTMLTagComment>;