Lines Matching refs:b
79 TQual* b = array.begin(); in tests() local
80 check_eq(a, b); in tests()
88 TQual* b = array.begin() + 1; in tests() local
89 check_eq(a, b); in tests()
97 TQual* b = array.begin() + 2; in tests() local
98 check_lt(a, b); in tests()
106 TQual* b = array.end(); in tests() local
107 check_eq(a, b); in tests()
115 TQual* b = array.begin() + 4; in tests() local
116 check_lt(a, b); in tests()
126 TQual* b = array.begin(); in tests() local
127 check_eq(a, b); in tests()
135 TQual* b = array.end() - 1; in tests() local
136 check_eq(a, b); in tests()
144 TQual* b = array.end(); in tests() local
145 check_eq(a, b); in tests()
153 TQual* b = array.end(); in tests() local
154 check_lt(a, b); in tests()
160 TQual* b = nullptr; in tests() local
161 check_eq(a, b); in tests()
165 TQual* b = nullptr; in tests() local
166 check_lt(b, a); in tests()
170 TQual* b = array.begin(); in tests() local
171 check_lt(a, b); in tests()
186 Related* b = array.begin(); in tests_convert() local
187 check_lt(b, a); in tests_convert()
191 Derived* b = array.begin() + 1; in tests_convert() local
192 check_lt(a, b); in tests_convert()
198 void* b = array.begin() + 1; in tests_convert() local
199 check_lt(a, b); in tests_convert()