Home | History | Annotate | Download | only in ADT

Lines Matching refs:Values

56   void appendValues(VectorT &V, ArrayRef<PtrT> Values) {
57 for (size_t i = 0, e = Values.size(); i != e; ++i)
58 V.push_back(Values[i]);
68 void expectValues(const VectorT &V, ArrayRef<PtrT> Values) {
69 EXPECT_EQ(Values.empty(), V.empty());
70 EXPECT_EQ(Values.size(), V.size());
71 for (size_t i = 0, e = Values.size(); i != e; ++i) {
72 EXPECT_EQ(Values[i], V[i]);
73 EXPECT_EQ(Values[i], *std::next(V.begin(), i));
75 EXPECT_EQ(V.end(), std::next(V.begin(), Values.size()));
100 // Pop and clobber a few values to keep things interesting.