Lines Matching refs:Point
23 struct Point { struct
27 Point operator+(Point const &other) const; argument
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;
32 Point operator^(Point const &other) const;
34 Point operator&&(Point const &other) const;
35 Point operator||(Point const &other) const;
36 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);
42 Point &operator^=(Point const &other);
46 void work(Point &P, int N, Point const *Points);
48 void foo(int N, Point const *Points) { in foo()
49 Point Red; in foo()