Lines Matching refs:from
50 test_bounded_ptr<From> const from(ptr, array.begin(), array.end()); in tests() local
51 test_bounded_ptr<To> to = from; // conversion (implicit) in tests()
55 test_bounded_ptr<From> const from(ptr, array.begin(), array.end()); in tests() local
56 test_bounded_ptr<To> to(from); // conversion (explicit) in tests()
60 test_bounded_ptr<From> const from(ptr, array.begin(), array.end()); in tests() local
61 test_bounded_ptr<To> to{from}; // conversion (explicit) in tests()
65 test_bounded_ptr<From> const from(ptr, array.begin(), array.end()); in tests() local
66 test_bounded_ptr<To> to = static_cast<test_bounded_ptr<To> >(from); // conversion (explicit) in tests()
72 test_bounded_ptr<From> from = nullptr; in tests() local
73 test_bounded_ptr<To> to = from; // conversion (implicit) in tests()
79 libkern::bounded_ptr<From, dummy_policy1> from(ptr, array.begin(), array.end()); in tests() local
80 libkern::bounded_ptr<To, dummy_policy2> to = from; // conversion (implicit) in tests()
89 test_bounded_ptr<From> const from(array.begin(), array.begin() + 1, array.end()); in tests() local
90 test_bounded_ptr<To> to(from); in tests()