Searched defs:new (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dunew.h8 /// \brief Same as \<new\>, but throws ustl:: exceptions.
25 // - normal single new and delete (no arguments, throw @c bad_alloc on error)
26 // - normal array new and delete (same)
27 // - @c nothrow single new and delete (take a @c nothrow argument, return
29 // - @c nothrow array new and delete (same)
31 // Placement new and delete signatures (take a memory address argument,
34 inline void* operator new (size_t n) throw (ustl::bad_alloc) { return (throwing_malloc (n)); }
35 inline void* operator new[] (size_t n) throw (ustl::bad_alloc) { return (throwing_malloc (n)); }
39 // Default placement versions of operator new.
40 inline void* operator new (size_
[all...]

Completed in 55 milliseconds