Lines Matching defs: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;
1067 HTMLStartTagComment *HST;
1072 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "a", NoAttrs()));
1089 HTMLStartTagComment *HST;
1094 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "br", SelfClosing()));
1113 HTMLStartTagComment *HST;
1118 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "a", "href", ""));
1135 HTMLStartTagComment *HST;
1140 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "a", "href", "bbb"));
1180 HTMLStartTagComment *HST;
1186 ASSERT_TRUE(HasHTMLStartTagAt(PC, 1, HST, "pre", NoAttrs()));