OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TEST_NOEXCEPT
(Results
1 - 4
of
4
) sorted by null
/external/libcxx/test/libcxx/selftest/
test_macros.pass.cpp
21
#ifndef
TEST_NOEXCEPT
22
#error
TEST_NOEXCEPT
must be defined
37
void
test_noexcept
()
TEST_NOEXCEPT
55
test_noexcept
();
/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;}
40
A1(const A1<U>& a)
TEST_NOEXCEPT
: id_(a.id()) {copy_called = true;}
42
A1(A1<U>&& a)
TEST_NOEXCEPT
: id_(a.id()) {move_called = true;}
82
explicit A2(int id = 0)
TEST_NOEXCEPT
: id_(id) {}
97
A2(const A2& a)
TEST_NOEXCEPT
: id_(a.id()) {copy_called = true;}
98
A2(A2&& a)
TEST_NOEXCEPT
: id_(a.id()) {move_called = true;}
130
explicit A3(int id = 0)
TEST_NOEXCEPT
: id_(id) {}
144
A3(const A3& a)
TEST_NOEXCEPT
: id_(a.id()) {copy_called = true;
[
all
...]
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
65
#define
TEST_NOEXCEPT
noexcept
67
#define
TEST_NOEXCEPT
Completed in 119 milliseconds