Lines Matching refs:_assert
13 #define _assert(...) T_ASSERT_TRUE((__VA_ARGS__), # __VA_ARGS__) macro
53 _assert(to.discard_bounds() == static_cast<To const*>(ptr1)); in tests()
54 _assert(&ref == &to); // make sure we return *this in tests()
61 _assert(to.discard_bounds() == static_cast<To const*>(ptr2)); in tests()
64 _assert(to.discard_bounds() == static_cast<To const*>(ptr1)); in tests()
65 _assert(&ref == &to); // make sure we return *this in tests()
73 _assert(to.unsafe_discard_bounds() == nullptr); in tests()
74 _assert(&ref == &to); // make sure we return *this in tests()
82 _assert(to.discard_bounds() == static_cast<To const*>(ptr1)); in tests()
83 _assert(&ref == &to); // make sure we return *this in tests()
94 _assert(to.unsafe_discard_bounds() == static_cast<To const*>(array.begin())); in tests()