Home | History | Annotate | Download | only in gdb.cp

Lines Matching refs:A1

27 class A1 {
31 friend ostream& operator<<(ostream& outs, A1 one);
35 A1(int a, int b)
41 A1 operator+=(int value);
42 A1 operator+(const A1&);
43 A1 operator-(const A1&);
44 A1 operator%(const A1&);
45 int operator==(const A1&);
46 int operator!=(const A1&);
47 int operator&&(const A1&);
48 int operator||(const A1&);
49 A1 operator<<(int);
50 A1 operator>>(int);
51 A1 operator|(const A1&);
52 A1 operator^(const A1&);
53 A1 operator&(const A1&);
54 int operator<(const A1&);
55 int operator<=(const A1&);
56 int operator>=(const A1&);
57 int operator>(const A1&);
58 A1 operator*(const A1&);
59 A1 operator/(const A1&);
60 A1 operator=(const A1&);
62 A1 operator~();
63 A1 operator+();
64 A1 operator-();
66 A1 operator++();
67 A1 operator++(int);
68 A1 operator--();
69 A1 operator--(int);
74 A1 A1::operator+(const A1& second)
76 A1 sum(0,0);
83 A1 A1::operator*(const A1& second)
85 A1 product(0,0);
92 A1 A1::operator-(const A1& second)
94 A1 diff(0,0);
101 A1 A1::operator/(const A1& second)
103 A1 div(0,0);
110 A1 A1::operator%(const A1& second)
112 A1 rem(0,0);
119 int A1::operator==(const A1& second)
127 int A1::operator!=(const A1& second)
135 int A1::operator&&(const A1& second)
140 int A1::operator||(const A1& second)
145 A1 A1::operator<<(int value)
147 A1 lshft(0,0);
154 A1 A1::operator>>(int value)
156 A1 rshft(0,0);
163 A1 A1::operator|(const A1& second)
165 A1 abitor(0,0);
172 A1 A1::operator^(const A1& second)
174 A1 axor(0,0);
181 A1 A1::operator&(const A1& second)
183 A1 abitand(0,0);
190 int A1::operator<(const A1& second)
192 A1 b(0,0);
197 int A1::operator<=(const A1& second)
202 int A1::operator>=(const A1& second)
207 int A1::operator>(const A1& second)
212 int A1::operator!(void)
217 A1 A1::operator-(void)
219 A1 neg(0,0);
226 A1 A1::operator+(void)
228 A1 pos(0,0);
235 A1 A1::operator~(void)
237 A1 acompl(0,0);
244 A1 A1::operator++() // pre increment
251 A1 A1::operator++(int) // post increment
258 A1 A1::operator--() // pre decrement
265 A1 A1::operator--(int) // post decrement
273 A1 A1::operator=(const A1& second)
282 A1 A1::operator+=(int value)
291 ostream& operator<<(ostream& outs, A1 one)
345 A1 one(2,3);
346 A1 two(4,5);
347 A1 three(0,0);