Lines Matching refs:operator

45     friend ParticleTime operator -(const ParticleTime& rhs);
88 ParticleTime operator +(ParticleTime right) const
95 ParticleTime operator -(ParticleTime right) const
102 ParticleTime operator *(ParticleTime right) const
109 ParticleTime operator /(ParticleTime right) const
153 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return …
154 …ParticleTime& operator =(s32 value) { this->m_ParticleTime = S32ToParticleTime(value); return *thi…
155 …ParticleTime& operator =(ParticleTime value) { this->m_ParticleTime = value.m_ParticleTime; return…
156 …ParticleTime& operator +=(f32 value) { this->m_ParticleTime += Float32ToParticleTime(value); retur…
157 …ParticleTime& operator +=(s32 value) { this->m_ParticleTime += S32ToParticleTime(value); return *t…
158 …ParticleTime& operator +=(ParticleTime value) { this->m_ParticleTime += value.m_ParticleTime; retu…
159 …ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= Float32ToParticleTime(value); retur…
160 …ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= S32ToParticleTime(value); return *t…
161 …ParticleTime& operator -=(ParticleTime value) { this->m_ParticleTime -= value.m_ParticleTime; retu…
163 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
164 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
165 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
166 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
167 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
168 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
170 bool operator ==(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
171 bool operator !=(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
172 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= S32ToParticleTime(rhs); }
173 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= S32ToParticleTime(rhs); }
174 bool operator >(s32 rhs) const { return this->m_ParticleTime > S32ToParticleTime(rhs); }
175 bool operator <(s32 rhs) const { return this->m_ParticleTime < S32ToParticleTime(rhs); }
222 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)
236 friend ParticleTime operator -(const ParticleTime& rhs);
276 ParticleTime operator +(ParticleTime right) const
281 ParticleTime operator -(ParticleTime right) const
286 ParticleTime operator *(ParticleTime right) const
291 ParticleTime operator /(ParticleTime right) const
333 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return …
334 ParticleTime& operator =(s32 value) { this->m_ParticleTime = value; return *this; }
335 …ParticleTime& operator =(ParticleTime value) { this->m_ParticleTime = value.m_ParticleTime; return…
336 ParticleTime& operator +=(f32 value) { this->m_ParticleTime += value; return *this; }
337 ParticleTime& operator +=(s32 value) { this->m_ParticleTime += value; return *this; }
338 …ParticleTime& operator +=(ParticleTime value) { this->m_ParticleTime += value.m_ParticleTime; retu…
339 ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= value; return *this; }
340 ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= value; return *this; }
341 …ParticleTime& operator -=(ParticleTime value) { this->m_ParticleTime -= value.m_ParticleTime; retu…
343 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
344 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
345 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
346 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
347 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
348 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
350 bool operator ==(s32 rhs) const { return this->m_ParticleTime == rhs; }
351 bool operator !=(s32 rhs) const { return this->m_ParticleTime == rhs; }
352 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= rhs; }
353 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= rhs; }
354 bool operator >(s32 rhs) const { return this->m_ParticleTime > rhs; }
355 bool operator <(s32 rhs) const { return this->m_ParticleTime < rhs; }
384 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)