Searched defs:HST (Results 1 - 4 of 4) sorted by relevance

/external/clang/unittests/AST/
H A DCommentParser.cpp327 HTMLStartTagComment *&HST,
329 ::testing::AssertionResult AR = GetChildAt(C, Idx, HST);
333 StringRef ActualTagName = HST->getTagName();
346 HTMLStartTagComment *&HST,
349 ::testing::AssertionResult AR = HasHTMLStartTagAt(C, Idx, HST, TagName);
353 if (!HST->isSelfClosing())
365 HTMLStartTagComment *&HST,
368 ::testing::AssertionResult AR = HasHTMLStartTagAt(C, Idx, HST, TagName);
372 if (HST->isSelfClosing())
376 if (HST
325 HasHTMLStartTagAt(const Comment *C, size_t Idx, HTMLStartTagComment *&HST, StringRef TagName) argument
344 HasHTMLStartTagAt(const Comment *C, size_t Idx, HTMLStartTagComment *&HST, StringRef TagName, SelfClosing) argument
363 HasHTMLStartTagAt(const Comment *C, size_t Idx, HTMLStartTagComment *&HST, StringRef TagName, NoAttrs) argument
384 HasHTMLStartTagAt(const Comment *C, size_t Idx, HTMLStartTagComment *&HST, StringRef TagName, StringRef AttrName, StringRef AttrValue) argument
1067 HTMLStartTagComment *HST; local
1089 HTMLStartTagComment *HST; local
1113 HTMLStartTagComment *HST; local
1135 HTMLStartTagComment *HST; local
1180 HTMLStartTagComment *HST; local
[all...]
/external/clang/lib/AST/
H A DCommentParser.cpp431 HTMLStartTagComment *HST = local
472 S.actOnHTMLStartTagFinish(HST,
477 return HST;
480 S.actOnHTMLStartTagFinish(HST,
485 return HST;
499 S.actOnHTMLStartTagFinish(HST,
503 return HST;
507 S.actOnHTMLStartTagFinish(HST,
513 HST->getLocation(),
522 << HST
[all...]
H A DCommentSema.cpp508 const HTMLStartTagComment *HST = HTMLOpenTags.back(); local
510 StringRef LastNotClosedTagName = HST->getTagName();
519 HST->getLocation(),
527 Diag(HST->getLocation(), diag::warn_doc_html_start_end_mismatch)
528 << HST->getTagName() << HET->getTagName()
529 << HST->getSourceRange() << HET->getSourceRange();
531 Diag(HST->getLocation(), diag::warn_doc_html_start_end_mismatch)
532 << HST->getTagName() << HET->getTagName()
533 << HST->getSourceRange();
/external/clang/tools/libclang/
H A DCXComment.cpp188 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); local
189 if (!HST)
192 return HST->isSelfClosing();
196 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); local
197 if (!HST)
200 return HST->getNumAttrs();
204 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); local
205 if (!HST || AttrIdx >= HST->getNumAttrs())
208 return cxstring::createRef(HST
212 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); local
[all...]

Completed in 145 milliseconds