Lines Matching defs:A1

30 class A1 {
34 friend ostream& operator<<(ostream& outs, A1 one);
38 A1(int a, int b)
44 A1 operator+=(int value);
45 A1 operator+(const A1&);
46 A1 operator-(const A1&);
47 A1 operator%(const A1&);
48 int operator==(const A1&);
49 int operator!=(const A1&);
50 int operator&&(const A1&);
51 int operator||(const A1&);
52 A1 operator<<(int);
53 A1 operator>>(int);
54 A1 operator|(const A1&);
55 A1 operator^(const A1&);
56 A1 operator&(const A1&);
57 int operator<(const A1&);
58 int operator<=(const A1&);
59 int operator>=(const A1&);
60 int operator>(const A1&);
61 A1 operator*(const A1&);
62 A1 operator/(const A1&);
63 A1 operator=(const A1&);
65 A1 operator~();
66 A1 operator-();
68 A1 operator++();
69 A1 operator++(int);
70 A1 operator--();
71 A1 operator--(int);
76 A1 A1::operator+(const A1& second)
78 A1 sum(0,0);
85 A1 A1::operator*(const A1& second)
87 A1 product(0,0);
94 A1 A1::operator-(const A1& second)
96 A1 diff(0,0);
103 A1 A1::operator/(const A1& second)
105 A1 div(0,0);
112 A1 A1::operator%(const A1& second)
114 A1 rem(0,0);
121 int A1::operator==(const A1& second)
129 int A1::operator!=(const A1& second)
137 int A1::operator&&(const A1& second)
142 int A1::operator||(const A1& second)
147 A1 A1::operator<<(int value)
149 A1 lshft(0,0);
156 A1 A1::operator>>(int value)
158 A1 rshft(0,0);
165 A1 A1::operator|(const A1& second)
167 A1 abitor(0,0);
174 A1 A1::operator^(const A1& second)
176 A1 axor(0,0);
183 A1 A1::operator&(const A1& second)
185 A1 abitand(0,0);
192 int A1::operator<(const A1& second)
194 A1 b(0,0);
199 int A1::operator<=(const A1& second)
204 int A1::operator>=(const A1& second)
209 int A1::operator>(const A1& second)
214 int A1::operator!(void)
219 A1 A1::operator-(void)
221 A1 neg(0,0);
228 A1 A1::operator~(void)
230 A1 acompl(0,0);
237 A1 A1::operator++() // pre increment
244 A1 A1::operator++(int) // post increment
251 A1 A1::operator--() // pre decrement
258 A1 A1::operator--(int) // post decrement
266 A1 A1::operator=(const A1& second)
275 A1 A1::operator+=(int value)
284 ostream& operator<<(ostream& outs, A1 one)
291 A1 one(2,3);
292 A1 two(4,5);
293 A1 three(0,0);