Home | History | Annotate | Download | only in AST

Lines Matching refs:HST

327                                              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->getNumAttrs() != 0)
378 << "HTMLStartTagComment has " << HST->getNumAttrs() << " attr(s), "
386 HTMLStartTagComment *&HST,
390 ::testing::AssertionResult AR = HasHTMLStartTagAt(C, Idx, HST, TagName);
394 if (HST->isSelfClosing())
398 if (HST->getNumAttrs() != 1)
400 << "HTMLStartTagComment has " << HST->getNumAttrs() << " attr(s), "
403 StringRef ActualName = HST->getAttr(0).Name;
409 StringRef ActualValue = HST->getAttr(0).Value;
1092 HTMLStartTagComment *HST;
1097 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "a", NoAttrs()));
1114 HTMLStartTagComment *HST;
1119 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "br", SelfClosing()));
1138 HTMLStartTagComment *HST;
1143 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "a", "href", ""));
1160 HTMLStartTagComment *HST;
1165 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "a", "href", "bbb"));
1205 HTMLStartTagComment *HST;
1211 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "pre", NoAttrs()));