OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:test_noexcept
(Results
1 - 25
of
78
) sorted by null
1
2
3
4
/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
...]
/prebuilts/ndk/r16/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
...]
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
...]
/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/r16/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/
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
delete_align_val_t_replace.pass.cpp
51
void operator delete(void* p)
TEST_NOEXCEPT
57
void operator delete(void* p, const std::nothrow_t&)
TEST_NOEXCEPT
63
void operator delete [] (void* p, std::align_val_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
48
void operator delete[](void* p)
TEST_NOEXCEPT
54
void operator delete[](void* p, const std::nothrow_t&)
TEST_NOEXCEPT
60
void operator delete[](void* p, std::size_t)
TEST_NOEXCEPT
/external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
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
47
void operator delete(void* p)
TEST_NOEXCEPT
53
void operator delete(void* p, const std::nothrow_t&)
TEST_NOEXCEPT
59
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
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.array/
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
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.single/
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
47
void operator delete(void* p)
TEST_NOEXCEPT
53
void operator delete(void* p, const std::nothrow_t&)
TEST_NOEXCEPT
59
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
Completed in 562 milliseconds
1
2
3
4