Lines Matching refs:cit
46 void test_eq(It it, ConstIt cit) { in test_eq() argument
49 (void)(it == cit); in test_eq()
50 (void)(it != cit); in test_eq()
51 (void)(cit == it); in test_eq()
52 (void)(cit != it); in test_eq()
53 (void)(cit == cit); in test_eq()
54 (void)(cit != cit); in test_eq()
58 void test_lt(It it, ConstIt cit) { in test_lt() argument
63 (void)(it < cit); in test_lt()
64 (void)(it <= cit); in test_lt()
65 (void)(it > cit); in test_lt()
66 (void)(it >= cit); in test_lt()
67 (void)(cit < it); in test_lt()
68 (void)(cit <= it); in test_lt()
69 (void)(cit > it); in test_lt()
70 (void)(cit >= it); in test_lt()
71 (void)(cit < cit); in test_lt()
72 (void)(cit <= cit); in test_lt()
73 (void)(cit > cit); in test_lt()
74 (void)(cit >= cit); in test_lt()
79 (void)(it - cit); in test_lt()
80 (void)(cit - it); in test_lt()
81 (void)(cit - cit); in test_lt()
92 typename Container::const_iterator cit = c.begin(); in test_forward() local
93 test_eq(it, cit); in test_forward()
100 typename Container::const_iterator cit = c.begin(); in test_random_access() local
101 test_eq(it, cit); in test_random_access()
102 test_lt(it, cit); in test_random_access()