Searched refs:HTMLStartTagComment (Results 1 – 10 of 10) sorted by relevance
/external/clang/tools/libclang/ |
D | CXComment.cpp | 196 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); in clang_HTMLStartTagComment_isSelfClosing() 204 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); in clang_HTMLStartTag_getNumAttrs() 212 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); in clang_HTMLStartTag_getAttrName() 220 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); in clang_HTMLStartTag_getAttrValue()
|
/external/clang/include/clang/AST/ |
D | CommentSema.h | 70 SmallVector<HTMLStartTagComment *, 8> HTMLOpenTags; 171 HTMLStartTagComment *actOnHTMLStartTagStart(SourceLocation LocBegin, 174 void actOnHTMLStartTagFinish(HTMLStartTagComment *Tag, 175 ArrayRef<HTMLStartTagComment::Attribute> Attrs,
|
D | CommentParser.h | 108 HTMLStartTagComment *parseHTMLStartTag();
|
D | Comment.h | 115 friend class HTMLStartTagComment; variable 419 class HTMLStartTagComment : public HTMLTagComment { 460 HTMLStartTagComment(SourceLocation LocBegin, in HTMLStartTagComment() function
|
/external/clang/lib/AST/ |
D | CommentParser.cpp | 433 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()
|
D | CommentSema.cpp | 458 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()
|
D | ASTDumper.cpp | 566 void visitHTMLStartTagComment(const HTMLStartTagComment *C); 2369 void ASTDumper::visitHTMLStartTagComment(const HTMLStartTagComment *C) { in visitHTMLStartTagComment() 2374 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i); in visitHTMLStartTagComment()
|
/external/clang/unittests/AST/ |
D | CommentParser.cpp | 327 HTMLStartTagComment *&HST, in HasHTMLStartTagAt() 346 HTMLStartTagComment *&HST, in HasHTMLStartTagAt() 365 HTMLStartTagComment *&HST, in HasHTMLStartTagAt() 386 HTMLStartTagComment *&HST, in HasHTMLStartTagAt() 1092 HTMLStartTagComment *HST; in TEST_F() 1114 HTMLStartTagComment *HST; in TEST_F() 1138 HTMLStartTagComment *HST; in TEST_F() 1160 HTMLStartTagComment *HST; in TEST_F() 1205 HTMLStartTagComment *HST; in TEST_F()
|
/external/clang/lib/Index/ |
D | CommentToXML.cpp | 200 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() 544 void visitHTMLStartTagComment(const HTMLStartTagComment *C); 662 const HTMLStartTagComment *C) { in visitHTMLStartTagComment()
|
/external/clang/include/clang/Basic/ |
D | CommentNodes.td | 13 def HTMLStartTagComment : DComment<HTMLTagComment>;
|