Lines Matching refs:a
78 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
80 check_eq(a, b); in tests()
87 test_bounded_ptr<TQual> const a(array.begin() + 1, array.begin(), array.end()); in tests() local
89 check_eq(a, b); in tests()
96 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
98 check_lt(a, b); in tests()
105 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests() local
107 check_eq(a, b); in tests()
114 test_bounded_ptr<TQual> const a(array.begin() + 2, array.begin(), array.begin() + 3); in tests() local
116 check_lt(a, b); in tests()
125 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests() local
127 check_eq(a, b); in tests()
134 test_bounded_ptr<TQual> const a(array.end() - 1, array.begin(), array.end() - 2); in tests() local
136 check_eq(a, b); in tests()
143 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end() - 1); in tests() local
145 check_eq(a, b); in tests()
152 test_bounded_ptr<TQual> const a(array.end() - 1, array.begin(), array.end() - 2); in tests() local
154 check_lt(a, b); in tests()
159 test_bounded_ptr<TQual> a = nullptr; in tests() local
161 check_eq(a, b); in tests()
164 test_bounded_ptr<TQual> a(array.end() - 1, array.begin(), array.end() - 2); in tests() local
166 check_lt(b, a); in tests()
169 test_bounded_ptr<TQual> a = nullptr; in tests() local
171 check_lt(a, b); in tests()
185 test_bounded_ptr<Derived> const a(array.begin() + 1, array.begin(), array.end() - 1); in tests_convert() local
187 check_lt(b, a); in tests_convert()
190 test_bounded_ptr<Related> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
192 check_lt(a, b); in tests_convert()
197 test_bounded_ptr<Related> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
199 check_lt(a, b); in tests_convert()