Lines Matching refs:array

55 	std::array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}};  in tests()  local
59 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
60 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
64 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
65 test_bounded_ptr<TQual> const b(array.begin() + 1, array.begin(), array.end()); in tests()
69 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
70 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests()
74 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
75 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests()
79 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests()
80 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests()
87 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
99 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
100 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
105 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
106 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests()
111 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests()
112 test_bounded_ptr<TQual> const b(array.begin(), array.begin() + 2, array.end()); in tests()
117 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests()
118 test_bounded_ptr<TQual> const b(array.begin() + 3, array.begin() + 2, array.end()); in tests()
124 libkern::bounded_ptr<TQual, dummy_policy1> const a(array.begin(), array.begin(), array.end()); in tests()
125 libkern::bounded_ptr<TQual, dummy_policy2> const b(array.begin(), array.begin(), array.end()); in tests()
137 std::array<Derived, 5> array = {Derived{0}, Derived{1}, Derived{2}, Derived{3}, Derived{4}}; in tests_convert() local
138 test_bounded_ptr<Derived> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert()
139 test_bounded_ptr<Related> const b(array.begin(), array.begin(), array.end() - 1); in tests_convert()