Lines Matching refs:a

56 		test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end());  in tests()  local
58 check_eq(a, b); in tests()
65 test_bounded_ptr<TQual> const a(array.begin() + 1, array.begin(), array.end()); in tests() local
67 check_eq(a, b); in tests()
74 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
76 check_ne(a, b); in tests()
83 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests() local
85 check_eq(a, b); in tests()
92 test_bounded_ptr<TQual> const a(array.begin() + 2, array.begin(), array.begin() + 3); in tests() local
94 check_ne(a, b); in tests()
103 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests() local
105 check_eq(a, b); in tests()
112 test_bounded_ptr<TQual> const a(array.end() - 1, array.begin(), array.end() - 2); in tests() local
114 check_eq(a, b); in tests()
121 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end() - 1); in tests() local
123 check_eq(a, b); in tests()
130 test_bounded_ptr<TQual> const a(array.end() - 1, array.begin(), array.end() - 2); in tests() local
132 check_ne(a, b); in tests()
137 test_bounded_ptr<TQual> a = nullptr; in tests() local
139 check_eq(a, b); in tests()
142 test_bounded_ptr<TQual> a(array.end() - 1, array.begin(), array.end() - 2); in tests() local
144 check_ne(a, b); in tests()
147 test_bounded_ptr<TQual> a = nullptr; in tests() local
149 check_ne(a, b); in tests()
163 test_bounded_ptr<Derived> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
165 check_eq(a, b); in tests_convert()
168 test_bounded_ptr<Related> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
170 check_eq(a, b); in tests_convert()
175 test_bounded_ptr<Related> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
177 check_eq(a, b); in tests_convert()