Lines Matching full:operator
39 T &operator[](size_t n) {
43 const T &operator[](size_t n) const {
67 bad_alloc& operator=(const bad_alloc&) throw();
142 void* operator new(std::size_t, const std::nothrow_t&) throw();
143 void* operator new[](std::size_t, const std::nothrow_t&) throw();
144 void operator delete(void*, const std::nothrow_t&) throw();
145 void operator delete[](void*, const std::nothrow_t&) throw();
147 void* operator new (std::size_t size, void* ptr) throw() { return ptr; };
148 void* operator new[] (std::size_t size, void* ptr) throw() { return ptr; };
149 void operator delete (void* ptr, void*) throw() {};
150 void operator delete[] (void* ptr, void*) throw() {};