Lines Matching refs:nullptr
52 using nullptr_t = decltype(nullptr);
77 template <typename T, enable_if_t<!is_trivially_destructible_v<T> >* = nullptr>
86 template <typename T, enable_if_t<is_trivially_destructible_v<T> >* = nullptr>
171 explicit constexpr safe_allocation() noexcept : data_(nullptr), size_(0)
217 data_ = nullptr;
235 data_ = nullptr;
260 other.data_ = nullptr;
271 if (data_ != nullptr) {
274 data_ = nullptr;
303 other.data_ = nullptr;
306 if (old_data != nullptr) {
319 if (data_ != nullptr) {
329 return data_ != nullptr;
352 if (data_ == nullptr) {
361 if (data_ == nullptr) {
370 if (data_ == nullptr) {
379 if (data_ == nullptr) {
470 return !(x == nullptr);
477 return x == nullptr;
484 return !(x == nullptr);