Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching full:operator

4   A(); A(const A&); A(A&&); A &operator=(const A&); A &operator=(A&&); ~A();
7 B(); B(const B&); B(B&&); B &operator=(const B&); B &operator=(B&&); ~B();
14 U &operator=(const U&);
15 U &operator=(U&&);
26 U &U::operator=(const U&) { return *this; }
27 U &U::operator=(U &&) { return *this; }
34 S &operator=(const S&);
35 S &operator=(S&&);
67 S &S::operator=(const S&) { return *this; }
69 S &S::operator=(S &&) { return *this; }