Home | History | Annotate | Download | only in support

Lines Matching refs:TEST_NOEXCEPT

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;}
101 A2& operator=(const A2& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;}
102 A2& operator=(A2&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;}
134 explicit A3(int id = 0) TEST_NOEXCEPT : id_(id) {}
148 A3(const A3& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;}
149 A3(A3&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;}
150 A3& operator=(const A3& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;}
151 A3& operator=(A3&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;}