Lines Matching refs:Operator
36 return Operator('|', self, other)
39 return Operator('|', other, self)
42 return Operator('^', self, other)
45 return Operator('&', self, other)
48 return Operator('&', other, self)
51 return Operator('<', self, other)
54 return Operator('>', self, other)
57 return Operator('+', self, other)
60 return Operator('+', other, self)
63 return Operator('-', self, other)
66 return Operator('-', other, self)
69 return Operator('*', self, other)
72 return Operator('*', other, self)
75 return Operator('/', self, other)
78 return Operator('/', other, self)
81 return Operator('%', self, other)
112 class Operator(Expression): class
144 if isinstance(other, Operator):
190 return Operator(self.operator, lhs, rhs)
193 if isinstance(other, Operator):
205 return Operator(self.operator, lhs, rhs)