Lines Matching refs:test_bounded_ptr
21 test_bounded_ptr<T> p = nullptr; in tests()
25 test_bounded_ptr<T> p{nullptr}; in tests()
29 test_bounded_ptr<T> p(nullptr); in tests()
33 test_bounded_ptr<T> p = static_cast<test_bounded_ptr<T> >(nullptr); in tests()
37 auto f = [](test_bounded_ptr<T> p) { in tests()
45 test_bounded_ptr<T> p = NULL; in tests()
49 test_bounded_ptr<T> p{NULL}; in tests()
53 test_bounded_ptr<T> p(NULL); in tests()
57 test_bounded_ptr<T> p = static_cast<test_bounded_ptr<T> >(NULL); in tests()
61 auto f = [](test_bounded_ptr<T> p) { in tests()
69 test_bounded_ptr<T> p = 0; in tests()
73 test_bounded_ptr<T> p{0}; in tests()
77 test_bounded_ptr<T> p(0); in tests()
81 test_bounded_ptr<T> p = static_cast<test_bounded_ptr<T> >(0); in tests()
85 auto f = [](test_bounded_ptr<T> p) { in tests()