Lines Matching refs:a

28 		test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end());  in tests()  local
30 std::ptrdiff_t diff = a - b; in tests()
34 test_bounded_ptr<Left> const a(array.begin() + 1, array.begin(), array.end()); in tests() local
36 std::ptrdiff_t diff = a - b; in tests()
40 test_bounded_ptr<Left> const a(array.begin() + 2, array.begin(), array.end()); in tests() local
42 std::ptrdiff_t diff = a - b; in tests()
46 test_bounded_ptr<Left> const a(array.begin() + 3, array.begin(), array.end()); in tests() local
48 std::ptrdiff_t diff = a - b; in tests()
52 test_bounded_ptr<Left> const a(array.begin() + 4, array.begin(), array.end()); in tests() local
54 std::ptrdiff_t diff = a - b; in tests()
58 test_bounded_ptr<Left> const a(array.end(), array.begin(), array.end()); in tests() local
60 std::ptrdiff_t diff = a - b; in tests()
66 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests() local
68 std::ptrdiff_t diff = a - b; in tests()
72 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests() local
74 std::ptrdiff_t diff = a - b; in tests()
78 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests() local
80 std::ptrdiff_t diff = a - b; in tests()
84 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests() local
86 std::ptrdiff_t diff = a - b; in tests()
90 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests() local
92 std::ptrdiff_t diff = a - b; in tests()
98 test_bounded_ptr<Left> const a(array.begin() + 2, array.begin() + 1, array.end() - 1); in tests() local
100 _assert(a - b == -2); in tests()
101 _assert(b - a == 2); in tests()
106 test_bounded_ptr<Left> const a(array.begin() + 2, array.begin() + 1, array.end() - 1); in tests() local
108 _assert(a - b == -2); in tests()
111 Left* a = array.begin() + 4; in tests() local
113 _assert(a - b == 2); in tests()