Lines Matching refs:array

71 	std::array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}};  in tests()  local
75 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
76 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
80 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
81 test_bounded_ptr<TQual> const b(array.begin() + 1, array.begin(), array.end()); in tests()
85 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
86 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests()
90 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
91 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests()
95 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests()
96 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests()
103 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
115 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
116 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
121 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
122 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests()
127 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests()
128 test_bounded_ptr<TQual> const b(array.begin(), array.begin() + 2, array.end()); in tests()
133 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests()
134 test_bounded_ptr<TQual> const b(array.begin() + 3, array.begin() + 2, array.end()); in tests()
140 libkern::bounded_ptr<TQual, dummy_policy1> const a(array.begin(), array.begin(), array.end()); in tests()
141 libkern::bounded_ptr<TQual, dummy_policy2> const b(array.begin(), array.begin(), array.end()); in tests()
153 std::array<Derived, 5> array = {Derived{0}, Derived{1}, Derived{2}, Derived{3}, Derived{4}}; in tests_convert() local
154 test_bounded_ptr<Derived> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert()
155 test_bounded_ptr<Related> const b(array.begin(), array.begin(), array.end() - 1); in tests_convert()