Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:operator

5   operator char *(); // expected-note {{conversion to pointer type}}
9 operator int *(); // expected-note {{conversion to pointer type}}
19 operator int *();
23 operator int *();
33 operator const int *(); // expected-note {{conversion to pointer type}}
37 operator int *(); // expected-note {{conversion to pointer type}}
47 operator const int *(); // expected-note {{conversion to pointer type}}
51 operator const int *(); // expected-note {{conversion to pointer type}}
64 operator int();
65 operator int*();
72 operator int();
73 operator int*();
74 template<typename T> operator T*() const; // converts to any pointer!
81 operator int*();
85 // not the same function as Base's non-const operator int()
86 operator int*() const;
90 // overload resolution selects Derived::operator int*() const;
97 template<typename T> operator T*() const;
101 template<typename T> operator T*() const; // hides base conversion
102 operator int *() const;