Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:ExpectedCount

726     : Id(Id), ExpectedCount(-1), Count(0) {}
729 // Checks that there were exactly \c ExpectedCount matches.
730 VerifyIdIsBoundTo(llvm::StringRef Id, int ExpectedCount)
731 : Id(Id), ExpectedCount(ExpectedCount), Count(0) {}
737 int ExpectedCount = 1)
738 : Id(Id), ExpectedCount(ExpectedCount), Count(0),
742 if (ExpectedCount != -1)
743 EXPECT_EQ(ExpectedCount, Count);
783 const int ExpectedCount;