Home | History | Annotate | Download | only in libclang

Lines Matching refs:HST

196   const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC);
197 if (!HST)
200 return HST->isSelfClosing();
204 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC);
205 if (!HST)
208 return HST->getNumAttrs();
212 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC);
213 if (!HST || AttrIdx >= HST->getNumAttrs())
216 return cxstring::createRef(HST->getAttr(AttrIdx).Name);
220 const HTMLStartTagComment *HST = getASTNodeAs<HTMLStartTagComment>(CXC);
221 if (!HST || AttrIdx >= HST->getNumAttrs())
224 return cxstring::createRef(HST->getAttr(AttrIdx).Value);