Home | History | Annotate | Download | only in support

Lines Matching refs:F1

160 AssertData CheckCollectionsEqual(It1 F1, It1 E1, It2 F2, It2 E2,
162 const It1 F1Orig = F1;
167 while (F1 != E1 && F2 != E2) {
168 if (!(C(*F1, *F2))) {
169 ErrorMsg += PrintMismatch(*F1, *F2, Idx);
174 ++F1;
177 if (!Failed && (F1 != E1 || F2 != E2)) {
209 #define ASSERT_COLLECTION_EQ_COMP(F1, E1, F2, E2, Comp) \
212 F1, E1, F2, E2, \
213 ::verbose_assert::AssertData("CheckCollectionsEqual(" #F1 ", " #E1 \
219 #define ASSERT_COLLECTION_EQ(F1, E1, F2, E2) \
220 ASSERT_COLLECTION_EQ_COMP(F1, E1, F2, E2, ::verbose_assert::EqualToComp())