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

/external/clang/tools/libclang/
H A DCXComment.cpp196 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); local
197 if (!HST)
200 return HST->isSelfClosing();
204 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); local
205 if (!HST)
208 return HST->getNumAttrs();
212 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); local
213 if (!HST || AttrIdx >= HST->getNumAttrs())
216 return cxstring::createRef(HST
220 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC); local
[all...]
/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
1092 HTMLStartTagComment *HST; local
1114 HTMLStartTagComment *HST; local
1138 HTMLStartTagComment *HST; local
1160 HTMLStartTagComment *HST; local
1205 HTMLStartTagComment *HST; local
[all...]
/external/clang/lib/AST/
H A DCommentParser.cpp435 HTMLStartTagComment *HST = local
476 S.actOnHTMLStartTagFinish(HST,
481 return HST;
484 S.actOnHTMLStartTagFinish(HST,
489 return HST;
503 S.actOnHTMLStartTagFinish(HST,
507 return HST;
511 S.actOnHTMLStartTagFinish(HST,
517 HST->getLocation(),
526 << HST
[all...]
H A DCommentSema.cpp507 HTMLStartTagComment *HST = HTMLOpenTags.pop_back_val(); local
508 StringRef LastNotClosedTagName = HST->getTagName();
511 if (HST->isMalformed())
521 HST->getLocation(),
529 Diag(HST->getLocation(), diag::warn_doc_html_start_end_mismatch)
530 << HST->getTagName() << HET->getTagName()
531 << HST->getSourceRange() << HET->getSourceRange();
532 HST->setIsMalformed();
534 Diag(HST->getLocation(), diag::warn_doc_html_start_end_mismatch)
535 << HST
553 HTMLStartTagComment *HST = HTMLOpenTags.pop_back_val(); local
[all...]

Completed in 141 milliseconds