Lines Matching defs:operator

146   int operator+ (base const& o) const { // base::operator+
149 base operator++ (void) { // base::operator++
152 base operator+=(base const& o) { // base::operator+=
155 int operator- (base const& o) const { // base::operator-
158 base operator-- (void) { // base::operator--
161 base operator-= (base const& o) { // base::operator-=
164 int operator* (base const& o) const { // base::operator*
167 base operator*= (base const& o) { // base::operator*=
170 int operator/ (base const& o) const { // base::operator/
173 base operator/= (base const& o) { // base::operator/=
176 int operator% (base const& o) const { // base::operator%
179 base operator%= (base const& o) { // base::operator%=
182 bool operator< (base const& o) const { // base::operator<
185 bool operator<= (base const& o) const { // base::operator<=
188 bool operator> (base const& o) const { // base::operator>
191 bool operator>= (base const& o) const { // base::operator>=
194 bool operator!= (base const& o) const { // base::operator!=
197 bool operator== (base const& o) const { // base::operator==
200 bool operator! (void) const { // base::operator!
203 bool operator&& (base const& o) const { // base::operator&&
206 bool operator|| (base const& o) const { // base::operator||
209 int operator<< (int value) const { // base::operator<<
212 base operator<<= (int value) { // base::operator<<=
215 int operator>> (int value) const { // base::operator>>
218 base operator>>= (int value) { // base::operator>>=
221 int operator~ (void) const { // base::operator~
224 int operator& (base const& o) const { // base::operator&
227 base operator&= (base const& o) { // base::operator&=
230 int operator| (base const& o) const { // base::operator|
233 base operator|= (base const& o) { // base::operator|=
236 int operator^ (base const& o) const { // base::operator^
239 base operator^= (base const& o) { // base::operator^=
242 base operator= (base const& o) { // base::operator=
245 void operator() (void) const { // base::operator()
248 int operator[] (int idx) const { // base::operator[]
251 void* operator new (size_t size) throw () { // base::operator new
254 void operator delete (void* ptr) { // base::operator delete
257 void* operator new[] (size_t size) throw () { // base::operator new[]
260 void operator delete[] (void* ptr) { // base::operator delete[]
263 base const* operator-> (void) const { // base::opeartor->
266 int operator->* (base const& b) const { // base::operator->*
269 operator char* () const { return const_cast<char*> ("hello"); } // base::operator char*
270 operator int () const { return 21; } // base::operator int
271 operator fluff* () const { return new fluff (); } // base::operator fluff*
272 operator fluff** () const { return &g_fluff; } // base::operator fluff**
273 operator fluff const* const* () const { return &g_fluff; } // base::operator fluff const* const*