Lines Matching defs:Point
22 struct Point {
26 Point operator+(Point const &other) const;
27 Point operator-(Point const &other) const;
28 Point operator*(Point const &other) const;
29 Point operator&(Point const &other) const;
30 Point operator|(Point const &other) const;
31 Point operator^(Point const &other) const;
33 Point operator&&(Point const &other) const;
34 Point operator||(Point const &other) const;
35 Point &operator=(Point const &other);
37 Point &operator+=(Point const &other);
38 Point &operator*=(Point const &other);
39 Point &operator&=(Point const &other);
40 Point &operator|=(Point const &other);
41 Point &operator^=(Point const &other);
45 void work(Point &P, int N, Point const *Points);
47 void foo(int N, Point const *Points) {
48 Point Red;