Lines Matching refs:delete
107 * - normal single new and delete (no arguments, throw @c bad_alloc on error)
108 * - normal array new and delete (same)
109 * - @c nothrow single new and delete (take a @c nothrow argument, return
111 * - @c nothrow array new and delete (same)
113 * Placement new and delete signatures (take a memory address argument,
120 void operator delete(void*) _GLIBCXX_USE_NOEXCEPT
122 void operator delete[](void*) _GLIBCXX_USE_NOEXCEPT
125 void operator delete(void*, std::size_t) _GLIBCXX_USE_NOEXCEPT
127 void operator delete[](void*, std::size_t) _GLIBCXX_USE_NOEXCEPT
134 void operator delete(void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
136 void operator delete[](void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
139 void operator delete(void*, std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
141 void operator delete[](void*, std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
151 // Default placement versions of operator delete.
152 inline void operator delete (void*, void*) _GLIBCXX_USE_NOEXCEPT { }
153 inline void operator delete[](void*, void*) _GLIBCXX_USE_NOEXCEPT { }