Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXComment.cpp195 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); in clang_HTMLStartTagComment_isSelfClosing()
203 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); in clang_HTMLStartTag_getNumAttrs()
211 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); in clang_HTMLStartTag_getAttrName()
219 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); in clang_HTMLStartTag_getAttrValue()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DCommentSema.h69 SmallVector<HTMLStartTagComment *, 8> HTMLOpenTags;
170 HTMLStartTagComment *actOnHTMLStartTagStart(SourceLocation LocBegin,
173 void actOnHTMLStartTagFinish(HTMLStartTagComment *Tag,
174 ArrayRef<HTMLStartTagComment::Attribute> Attrs,
H A DCommentParser.h107 HTMLStartTagComment *parseHTMLStartTag();
H A DComment.h115 friend class HTMLStartTagComment; variable
413 class HTMLStartTagComment : public HTMLTagComment {
454 HTMLStartTagComment(SourceLocation LocBegin, in HTMLStartTagComment() function
H A DTextNodeDumper.h209 void visitHTMLStartTagComment(const comments::HTMLStartTagComment *C,
H A DJSONNodeDumper.h331 void visitHTMLStartTagComment(const comments::HTMLStartTagComment *C,
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DCommentParser.cpp438 HTMLStartTagComment *Parser::parseHTMLStartTag() { in parseHTMLStartTag()
440 HTMLStartTagComment *HST = in parseHTMLStartTag()
445 SmallVector<HTMLStartTagComment::Attribute, 2> Attrs; in parseHTMLStartTag()
452 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(), in parseHTMLStartTag()
462 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(), in parseHTMLStartTag()
469 Attrs.push_back(HTMLStartTagComment::Attribute( in parseHTMLStartTag()
H A DCommentSema.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()
H A DTextNodeDumper.cpp751 const comments::HTMLStartTagComment *C, const comments::FullComment *) { in visitHTMLStartTagComment()
756 const comments::HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in visitHTMLStartTagComment()
H A DJSONNodeDumper.cpp1550 const comments::HTMLStartTagComment *C, const comments::FullComment *) { in visitHTMLStartTagComment()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DCommentToXML.cpp197 void printHTMLStartTagComment(const HTMLStartTagComment *C, in printHTMLStartTagComment()
204 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in printHTMLStartTagComment()
230 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
310 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
541 void visitHTMLStartTagComment(const HTMLStartTagComment *C);
658 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DCommentNodes.td13 def HTMLStartTagComment : CommentNode<HTMLTagComment>;