Lines Matching refs:left

94 bool operator ==(Time left, Time right)  in operator ==()  argument
96 return left.asMicroseconds() == right.asMicroseconds(); in operator ==()
101 bool operator !=(Time left, Time right) in operator !=() argument
103 return left.asMicroseconds() != right.asMicroseconds(); in operator !=()
108 bool operator <(Time left, Time right) in operator <() argument
110 return left.asMicroseconds() < right.asMicroseconds(); in operator <()
115 bool operator >(Time left, Time right) in operator >() argument
117 return left.asMicroseconds() > right.asMicroseconds(); in operator >()
122 bool operator <=(Time left, Time right) in operator <=() argument
124 return left.asMicroseconds() <= right.asMicroseconds(); in operator <=()
129 bool operator >=(Time left, Time right) in operator >=() argument
131 return left.asMicroseconds() >= right.asMicroseconds(); in operator >=()
143 Time operator +(Time left, Time right) in operator +() argument
145 return microseconds(left.asMicroseconds() + right.asMicroseconds()); in operator +()
150 Time& operator +=(Time& left, Time right) in operator +=() argument
152 return left = left + right; in operator +=()
157 Time operator -(Time left, Time right) in operator -() argument
159 return microseconds(left.asMicroseconds() - right.asMicroseconds()); in operator -()
164 Time& operator -=(Time& left, Time right) in operator -=() argument
166 return left = left - right; in operator -=()
171 Time operator *(Time left, float right) in operator *() argument
173 return seconds(left.asSeconds() * right); in operator *()
178 Time operator *(Time left, Int64 right) in operator *() argument
180 return microseconds(left.asMicroseconds() * right); in operator *()
185 Time operator *(float left, Time right) in operator *() argument
187 return right * left; in operator *()
192 Time operator *(Int64 left, Time right) in operator *() argument
194 return right * left; in operator *()
199 Time& operator *=(Time& left, float right) in operator *=() argument
201 return left = left * right; in operator *=()
206 Time& operator *=(Time& left, Int64 right) in operator *=() argument
208 return left = left * right; in operator *=()
213 Time operator /(Time left, float right) in operator /() argument
215 return seconds(left.asSeconds() / right); in operator /()
220 Time operator /(Time left, Int64 right) in operator /() argument
222 return microseconds(left.asMicroseconds() / right); in operator /()
227 Time& operator /=(Time& left, float right) in operator /=() argument
229 return left = left / right; in operator /=()
234 Time& operator /=(Time& left, Int64 right) in operator /=() argument
236 return left = left / right; in operator /=()
241 float operator /(Time left, Time right) in operator /() argument
243 return left.asSeconds() / right.asSeconds(); in operator /()
248 Time operator %(Time left, Time right) in operator %() argument
250 return microseconds(left.asMicroseconds() % right.asMicroseconds()); in operator %()
255 Time& operator %=(Time& left, Time right) in operator %=() argument
257 return left = left % right; in operator %=()