Lines Matching refs:id_

23     int id_;  variable
25 explicit A1(int id = 0) TEST_NOEXCEPT : id_(id) {} in id_() function
29 int id() const {return id_;} in id()
36 A1(const A1& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} in A1()
37 A1(A1&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A1()
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;} in A1()
44 A1(A1<U>&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A1()
57 std::size_t max_size() const {return id_;} in max_size()
82 int id_; variable
84 explicit A2(int id = 0) TEST_NOEXCEPT : id_(id) {} in id_() function
93 int id() const {return id_;} in id()
99 A2(const A2& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} in A2()
100 A2(A2&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A2()
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;}
132 int id_; variable
134 explicit A3(int id = 0) TEST_NOEXCEPT : id_(id) {} in id_() function
141 int id() const {return id_;} in id()
148 A3(const A3& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} in A3()
149 A3(A3&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A3()
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;}