Home
last modified time | relevance | path

Searched refs:nothrow (Results 1 – 19 of 19) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.array/
Dnew_array_nothrow.pass.cpp38 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()
Dnew_array_nothrow_replace.pass.cpp42 A* ap = new (std::nothrow) A[3]; in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.single/
Dnew_nothrow.pass.cpp38 void* vp = operator new (std::numeric_limits<std::size_t>::max(), std::nothrow); in main()
46 A* ap = new(std::nothrow) A; in main()
Dnew_nothrow_replace.pass.cpp42 A* ap = new (std::nothrow) A; in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_new.h67 # define nothrow nothrow_t() macro
98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
/ndk/tests/device/test-stlport_shared-exception/jni/
Dnew5.cpp14 Inner * ic = new (std::nothrow) Inner[1]; // SegFault here in X()
Doperators27.cpp29 K * pK = new (std::nothrow) K( 10); in main()
Ddelete3_1.cpp22 return operator new(numBytes, std::nothrow); in operator new()
/ndk/tests/device/test-stlport_static-exception/jni/
Dnew5.cpp14 Inner * ic = new (std::nothrow) Inner[1]; // SegFault here in X()
Doperators27.cpp29 K * pK = new (std::nothrow) K( 10); in main()
Ddelete3_1.cpp22 return operator new(numBytes, std::nothrow); in operator new()
/ndk/sources/cxx-stl/gabi++/src/
Dnew.cc41 const nothrow_t nothrow = {}; variable
/ndk/sources/cxx-stl/system/include/
Dnew11 extern const nothrow_t nothrow;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dnew.cpp155 const nothrow_t nothrow = {}; variable
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dnew43 extern const nothrow_t nothrow;
114 extern _LIBCPP_FUNC_VIS const nothrow_t nothrow;
Dmemory1833 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
/ndk/sources/cxx-stl/stlport/src/
Ddll_main.cpp90 const nothrow_t nothrow /* = {} */; variable
/ndk/sources/cxx-stl/gabi++/include/
Dnew41 extern const nothrow_t nothrow;
/ndk/docs/text/
DCHANGES.text787 - Fixed Gabi++ nothrow new[] infinite recursion.