Lines Matching refs:nullptr
40 _assert(!(ptr == nullptr)); in tests()
41 _assert(!(nullptr == ptr)); in tests()
42 _assert(ptr != nullptr); in tests()
43 _assert(nullptr != ptr); in tests()
46 test_bounded_ptr<QualT> const ptr = nullptr; in tests()
47 _assert(ptr == nullptr); in tests()
48 _assert(nullptr == ptr); in tests()
49 _assert(!(ptr != nullptr)); in tests()
50 _assert(!(nullptr != ptr)); in tests()
55 libkern::bounded_ptr<QualT, non_default_policy> const ptr = nullptr; in tests()
56 _assert(ptr == nullptr); in tests()
57 _assert(nullptr == ptr); in tests()
58 _assert(!(ptr != nullptr)); in tests()
59 _assert(!(nullptr != ptr)); in tests()