Home
last modified time | relevance | path

Searched refs:TEST_THROW_SPEC (Results 1 – 11 of 11) sorted by relevance

/external/libcxx/test/support/
Dtest_macros.h113 # define TEST_THROW_SPEC(...) macro
115 # define TEST_THROW_SPEC(...) throw(__VA_ARGS__) macro
125 #define TEST_THROW_SPEC(...) throw(__VA_ARGS__) macro
Dcount_new.hpp359 void* operator new(std::size_t s) TEST_THROW_SPEC(std::bad_alloc) in operator new()
374 void* operator new[](std::size_t s) TEST_THROW_SPEC(std::bad_alloc) in operator new[]()
392 void* operator new(std::size_t s, std::align_val_t av) TEST_THROW_SPEC(std::bad_alloc) { in operator new()
418 void* operator new[](std::size_t s, std::align_val_t av) TEST_THROW_SPEC(std::bad_alloc) { in operator new[]()
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
Dnew_replace.pass.cpp24 void* operator new(std::size_t s) TEST_THROW_SPEC(std::bad_alloc) in operator new()
Dnew_nothrow_replace.pass.cpp25 void* operator new(std::size_t s) TEST_THROW_SPEC(std::bad_alloc) in operator new()
Dnew_align_val_t_replace.pass.cpp50 void* operator new(std::size_t s, std::align_val_t a) TEST_THROW_SPEC(std::bad_alloc) in operator new()
Dnew_align_val_t_nothrow_replace.pass.cpp72 void* operator new(std::size_t s, std::align_val_t a) TEST_THROW_SPEC(std::bad_alloc) in operator new()
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/
Dnew_array_replace.pass.cpp26 void* operator new(std::size_t s) TEST_THROW_SPEC(std::bad_alloc) in operator new()
Dnew_array_nothrow_replace.pass.cpp25 void* operator new(std::size_t s) TEST_THROW_SPEC(std::bad_alloc) in operator new()
Dnew_align_val_t_replace.pass.cpp50 void* operator new[](std::size_t s, std::align_val_t a) TEST_THROW_SPEC(std::bad_alloc) in operator new[]()
Dnew_align_val_t_nothrow_replace.pass.cpp71 void* operator new[](std::size_t s, std::align_val_t a) TEST_THROW_SPEC(std::bad_alloc) in operator new[]()
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/
DF.pass.cpp32 void* operator new(std::size_t s) TEST_THROW_SPEC(std::bad_alloc) in operator new()