Lines Matching defs:other
13 A(const A &other) : m(other.m) { in A()
18 A &operator=(const A &other) { in operator =()
39 B(const B &other) : m(other.m) {} in B()
40 B(B &&other) : m(other.m) { in B() function in test_mutating_compliant_example::B
44 B &operator=(const B &other) { in operator =()
51 B &operator=(B &&other) { in operator =()
67 C(C &other) { in C() function in test_mutating_pointer::C
89 D(D &other) { in D() function in test_mutating_indirect_member::D
101 E(E &other) { in E() function in test_mutating_other_object::E
119 F(F &other) : a(other.a) { in F() function in test_mutating_member_function::F
142 G(G &other) { in G() function in test_mutating_function_on_nested_object::G