Searched refs:nothrow (Results 1 – 19 of 19) sorted by relevance
38 void*volatile vp = operator new [] (std::numeric_limits<std::size_t>::max(), std::nothrow); in main()46 A* ap = new(std::nothrow) A[3]; in main()
42 A* ap = new (std::nothrow) A[3]; in main()
38 void* vp = operator new (std::numeric_limits<std::size_t>::max(), std::nothrow); in main()46 A* ap = new(std::nothrow) A; in main()
42 A* ap = new (std::nothrow) A; in main()
67 # define nothrow nothrow_t() macro98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
14 Inner * ic = new (std::nothrow) Inner[1]; // SegFault here in X()
29 K * pK = new (std::nothrow) K( 10); in main()
22 return operator new(numBytes, std::nothrow); in operator new()
41 const nothrow_t nothrow = {}; variable
11 extern const nothrow_t nothrow;
155 const nothrow_t nothrow = {}; variable
43 extern const nothrow_t nothrow;114 extern _LIBCPP_FUNC_VIS const nothrow_t nothrow;
1833 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
90 const nothrow_t nothrow /* = {} */; variable
41 extern const nothrow_t nothrow;
787 - Fixed Gabi++ nothrow new[] infinite recursion.