HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 151 - 175 of 7384) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
new 43 void* operator new(std::size_t size) throw(/*std::bad_alloc*/);
44 void* operator new(std::size_t size, const std::nothrow_t&) throw();
45 void* operator new[](std::size_t size) throw(/*std::bad_alloc*/);
46 void* operator new[](std::size_t size, const std::nothrow_t&) throw();
48 void operator delete[](void* ptr) throw();
49 void operator delete[](void* const, std::nothrow_t&) throw();
50 void operator delete(void* ptr) throw();
51 void operator delete(void*, const std::nothrow_t&) throw();
53 inline void* operator new(std::size_t, void* p) throw() { return p; }
54 inline void* operator new[](std::size_t, void* p) throw() { return p;
    [all...]