/external/libcxx/test/support/ |
allocators.h | 25 explicit A1(int id = 0) TEST_NOEXCEPT : id_(id) {} 36 A1(const A1& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} 37 A1(A1&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} 38 A1& operator=(const A1& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;} 39 A1& operator=(A1&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;} 42 A1(const A1<U>& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} 44 A1(A1<U>&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} 84 explicit A2(int id = 0) TEST_NOEXCEPT : id_(id) {} 99 A2(const A2& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} 100 A2(A2&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true; [all...] |
nasty_containers.hpp | 54 iterator begin() TEST_NOEXCEPT { return v_.begin(); } 55 const_iterator begin() const TEST_NOEXCEPT { return v_.begin(); } 56 iterator end() TEST_NOEXCEPT { return v_.end(); } 57 const_iterator end() const TEST_NOEXCEPT { return v_.end(); } 59 reverse_iterator rbegin() TEST_NOEXCEPT { return v_.rbegin(); } 60 const_reverse_iterator rbegin() const TEST_NOEXCEPT { return v_.rbegin(); } 61 reverse_iterator rend() TEST_NOEXCEPT { return v_.rend(); } 62 const_reverse_iterator rend() const TEST_NOEXCEPT { return v_.rend(); } 64 const_iterator cbegin() const TEST_NOEXCEPT { return v_.cbegin(); } 65 const_iterator cend() const TEST_NOEXCEPT { return v_.cend(); [all...] |
constexpr_char_traits.hpp | 28 static TEST_CONSTEXPR_CXX14 void assign(char_type& __c1, const char_type& __c2) TEST_NOEXCEPT 31 static TEST_CONSTEXPR bool eq(char_type __c1, char_type __c2) TEST_NOEXCEPT 34 static TEST_CONSTEXPR bool lt(char_type __c1, char_type __c2) TEST_NOEXCEPT 44 static TEST_CONSTEXPR int_type not_eof(int_type __c) TEST_NOEXCEPT 47 static TEST_CONSTEXPR char_type to_char_type(int_type __c) TEST_NOEXCEPT 50 static TEST_CONSTEXPR int_type to_int_type(char_type __c) TEST_NOEXCEPT 53 static TEST_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) TEST_NOEXCEPT 56 static TEST_CONSTEXPR int_type eof() TEST_NOEXCEPT
|
min_allocator.h | 26 bare_allocator() TEST_NOEXCEPT {} 29 bare_allocator(bare_allocator<U>) TEST_NOEXCEPT {} 67 no_default_allocator(no_default_allocator<U>) TEST_NOEXCEPT {} 113 malloc_allocator() TEST_NOEXCEPT { assert(!disable_default_constructor); } 116 malloc_allocator(malloc_allocator<U>) TEST_NOEXCEPT {} 150 min_pointer() TEST_NOEXCEPT = default; 151 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} 153 min_pointer(min_pointer<T, ID> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} 167 min_pointer() TEST_NOEXCEPT = default; 168 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) { [all...] |
test_allocator.h | 65 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {++count;} 66 explicit test_allocator(int i, int id = 0) TEST_NOEXCEPT : data_(i), id_(id) 68 test_allocator(const test_allocator& a) TEST_NOEXCEPT 70 template <class U> test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT 72 ~test_allocator() TEST_NOEXCEPT { 94 size_type max_size() const TEST_NOEXCEPT 133 // non_default_test_allocator() TEST_NOEXCEPT : data_(0) {++count;} 134 explicit non_default_test_allocator(int i) TEST_NOEXCEPT : data_(i) {++count;} 135 non_default_test_allocator(const non_default_test_allocator& a) TEST_NOEXCEPT 137 template <class U> non_default_test_allocator(const non_default_test_allocator<U>& a) TEST_NOEXCEPT [all...] |
test_iterators.h | 487 NonThrowingIterator & operator= (const NonThrowingIterator &rhs) TEST_NOEXCEPT 496 reference operator*() const TEST_NOEXCEPT 501 NonThrowingIterator & operator++() TEST_NOEXCEPT 507 NonThrowingIterator operator++(int) TEST_NOEXCEPT 514 NonThrowingIterator & operator--() TEST_NOEXCEPT 520 NonThrowingIterator operator--(int) TEST_NOEXCEPT 527 bool operator== (const NonThrowingIterator &rhs) const TEST_NOEXCEPT 543 bool operator== (const NonThrowingIterator<T>& a, const NonThrowingIterator<T>& b) TEST_NOEXCEPT 547 bool operator!= (const NonThrowingIterator<T>& a, const NonThrowingIterator<T>& b) TEST_NOEXCEPT
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/ |
allocators.h | 25 explicit A1(int id = 0) TEST_NOEXCEPT : id_(id) {} 36 A1(const A1& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} 37 A1(A1&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} 38 A1& operator=(const A1& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;} 39 A1& operator=(A1&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;} 42 A1(const A1<U>& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} 44 A1(A1<U>&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} 84 explicit A2(int id = 0) TEST_NOEXCEPT : id_(id) {} 99 A2(const A2& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} 100 A2(A2&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true; [all...] |
constexpr_char_traits.hpp | 27 static TEST_CONSTEXPR_CXX14 void assign(char_type& __c1, const char_type& __c2) TEST_NOEXCEPT 30 static TEST_CONSTEXPR bool eq(char_type __c1, char_type __c2) TEST_NOEXCEPT 33 static TEST_CONSTEXPR bool lt(char_type __c1, char_type __c2) TEST_NOEXCEPT 43 static TEST_CONSTEXPR int_type not_eof(int_type __c) TEST_NOEXCEPT 46 static TEST_CONSTEXPR char_type to_char_type(int_type __c) TEST_NOEXCEPT 49 static TEST_CONSTEXPR int_type to_int_type(char_type __c) TEST_NOEXCEPT 52 static TEST_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) TEST_NOEXCEPT 55 static TEST_CONSTEXPR int_type eof() TEST_NOEXCEPT
|
min_allocator.h | 23 bare_allocator() TEST_NOEXCEPT {} 26 bare_allocator(bare_allocator<U>) TEST_NOEXCEPT {} 58 min_pointer() TEST_NOEXCEPT = default; 59 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} 61 min_pointer(min_pointer<T> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} 75 min_pointer() TEST_NOEXCEPT = default; 76 min_pointer(std::nullptr_t) TEST_NOEXCEPT : ptr_(nullptr) {} 83 min_pointer(min_pointer<T> p) TEST_NOEXCEPT : ptr_(p.ptr_) {} 97 explicit min_pointer(T* p) TEST_NOEXCEPT : ptr_(p) {} 99 min_pointer() TEST_NOEXCEPT = default [all...] |
test_macros.h | 60 #define TEST_NOEXCEPT noexcept 69 #define TEST_NOEXCEPT
|
test_iterators.h | 484 NonThrowingIterator & operator= (const NonThrowingIterator &rhs) TEST_NOEXCEPT 493 reference operator*() const TEST_NOEXCEPT 498 NonThrowingIterator & operator++() TEST_NOEXCEPT 504 NonThrowingIterator operator++(int) TEST_NOEXCEPT 511 NonThrowingIterator & operator--() TEST_NOEXCEPT 517 NonThrowingIterator operator--(int) TEST_NOEXCEPT 524 bool operator== (const NonThrowingIterator &rhs) const TEST_NOEXCEPT 540 bool operator== (const NonThrowingIterator<T>& a, const NonThrowingIterator<T>& b) TEST_NOEXCEPT 544 bool operator!= (const NonThrowingIterator<T>& a, const NonThrowingIterator<T>& b) TEST_NOEXCEPT
|
/external/libcxx/test/libcxx/selftest/ |
test_macros.pass.cpp | 18 #ifndef TEST_NOEXCEPT 19 #error TEST_NOEXCEPT must be defined 30 void test_noexcept() TEST_NOEXCEPT 64 test_noexcept();
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/selftest/ |
test_macros.pass.cpp | 18 #ifndef TEST_NOEXCEPT 19 #error TEST_NOEXCEPT must be defined 30 void test_noexcept() TEST_NOEXCEPT 64 test_noexcept();
|
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/ |
delete_align_val_t_replace.pass.cpp | 39 void operator delete(void* p) TEST_NOEXCEPT 45 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT 51 void operator delete [] (void* p, std::align_val_t) TEST_NOEXCEPT
|
sized_delete_array11.pass.cpp | 29 void operator delete[](void* p) TEST_NOEXCEPT 35 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT 41 void operator delete[](void* p, std::size_t) TEST_NOEXCEPT
|
sized_delete_array14.pass.cpp | 34 void operator delete[](void* p) TEST_NOEXCEPT 40 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT 46 void operator delete[](void* p, std::size_t) TEST_NOEXCEPT
|
sized_delete_array_fsizeddeallocation.sh.cpp | 42 void operator delete[](void* p) TEST_NOEXCEPT 48 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT 54 void operator delete[](void* p, std::size_t) TEST_NOEXCEPT
|
sized_delete_array_calls_unsized_delete_array.pass.cpp | 26 void operator delete[](void* p) TEST_NOEXCEPT 32 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT
|
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/ |
delete_align_val_t_replace.pass.cpp | 40 void operator delete(void* p) TEST_NOEXCEPT 46 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT 52 void operator delete(void* p, std::align_val_t) TEST_NOEXCEPT
|
sized_delete11.pass.cpp | 29 void operator delete(void* p) TEST_NOEXCEPT 35 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT 41 void operator delete(void* p, std::size_t) TEST_NOEXCEPT
|
sized_delete14.pass.cpp | 34 void operator delete(void* p) TEST_NOEXCEPT 40 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT 46 void operator delete(void* p, std::size_t) TEST_NOEXCEPT
|
sized_delete_fsizeddeallocation.sh.cpp | 42 void operator delete(void* p) TEST_NOEXCEPT 48 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT 54 void operator delete(void* p, std::size_t) TEST_NOEXCEPT
|
sized_delete_calls_unsized_delete.pass.cpp | 26 void operator delete(void* p) TEST_NOEXCEPT 32 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT
|
/external/libcxx/test/std/experimental/any/any.class/any.modifiers/ |
swap.pass.cpp | 82 void test_noexcept() function 94 test_noexcept();
|
/external/libcxx/test/std/utilities/any/any.class/any.modifiers/ |
swap.pass.cpp | 82 void test_noexcept() function 125 test_noexcept();
|