Searched refs:U_NO_THROW (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Duobject.h31 * \def U_NO_THROW
43 #ifndef U_NO_THROW
44 #define U_NO_THROW throw() macro
131 static void * U_EXPORT2 operator new(size_t size) U_NO_THROW; member in class:UMemory
138 static void * U_EXPORT2 operator new[](size_t size) U_NO_THROW; member in class:UMemory
148 static void U_EXPORT2 operator delete(void *p) U_NO_THROW; member in class:UMemory
155 static void U_EXPORT2 operator delete[](void *p) U_NO_THROW; member in class:UMemory
163 static inline void * U_EXPORT2 operator new(size_t, void *ptr) U_NO_THROW { return ptr; }
170 static inline void U_EXPORT2 operator delete(void *, void *) U_NO_THROW {}
180 static void * U_EXPORT2 operator new(size_t size, const char* file, int line) U_NO_THROW; member in class:UMemory
188 static void U_EXPORT2 operator delete(void* p, const char* file, int line) U_NO_THROW; member in class:UMemory
[all...]
/external/icu/icu4c/source/common/
H A Duobject.cpp61 void * U_EXPORT2 UMemory::operator new(size_t size) U_NO_THROW {
65 void U_EXPORT2 UMemory::operator delete(void *p) U_NO_THROW {
71 void * U_EXPORT2 UMemory::operator new[](size_t size) U_NO_THROW {
75 void U_EXPORT2 UMemory::operator delete[](void *p) U_NO_THROW {
82 void * U_EXPORT2 UMemory::operator new(size_t size, const char* /*file*/, int /*line*/) U_NO_THROW {
86 void U_EXPORT2 UMemory::operator delete(void* p, const char* /*file*/, int /*line*/) U_NO_THROW {
/external/icu/icu4c/source/i18n/
H A Ddigitlst.h495 static inline void * U_EXPORT2 operator new(size_t size) U_NO_THROW { return ::operator new(size); };
496 static inline void U_EXPORT2 operator delete(void *ptr ) U_NO_THROW { ::operator delete(ptr); };
505 static inline void * U_EXPORT2 operator new(size_t /*size*/, void * onStack, EStackMode /*mode*/) U_NO_THROW { return onStack; }
511 static inline void U_EXPORT2 operator delete(void * /*ptr*/, void * /*onStack*/, EStackMode /*mode*/) U_NO_THROW {}

Completed in 431 milliseconds