Lines Matching refs:operator

43     friend ParticleTime operator -(const ParticleTime& rhs);
86 ParticleTime operator +(ParticleTime right) const
93 ParticleTime operator -(ParticleTime right) const
100 ParticleTime operator *(ParticleTime right) const
107 ParticleTime operator /(ParticleTime right) const
151 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return …
152 …ParticleTime& operator =(s32 value) { this->m_ParticleTime = S32ToParticleTime(value); return *thi…
153 …ParticleTime& operator =(ParticleTime value) { this->m_ParticleTime = value.m_ParticleTime; return…
154 …ParticleTime& operator +=(f32 value) { this->m_ParticleTime += Float32ToParticleTime(value); retur…
155 …ParticleTime& operator +=(s32 value) { this->m_ParticleTime += S32ToParticleTime(value); return *t…
156 …ParticleTime& operator +=(ParticleTime value) { this->m_ParticleTime += value.m_ParticleTime; retu…
157 …ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= Float32ToParticleTime(value); retur…
158 …ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= S32ToParticleTime(value); return *t…
159 …ParticleTime& operator -=(ParticleTime value) { this->m_ParticleTime -= value.m_ParticleTime; retu…
161 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
162 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
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_ParticleTime;…
166 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
168 bool operator ==(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
169 bool operator !=(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
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); }
220 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)
234 friend ParticleTime operator -(const ParticleTime& rhs);
274 ParticleTime operator +(ParticleTime right) const
279 ParticleTime operator -(ParticleTime right) const
321 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return …
322 ParticleTime& operator =(s32 value) { this->m_ParticleTime = value; return *this; }
323 …ParticleTime& operator =(ParticleTime value) { this->m_ParticleTime = value.m_ParticleTime; return…
324 ParticleTime& operator +=(f32 value) { this->m_ParticleTime += value; return *this; }
325 ParticleTime& operator +=(s32 value) { this->m_ParticleTime += value; return *this; }
326 …ParticleTime& operator +=(ParticleTime value) { this->m_ParticleTime += value.m_ParticleTime; retu…
327 ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= value; return *this; }
328 ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= value; return *this; }
329 …ParticleTime& operator -=(ParticleTime value) { this->m_ParticleTime -= value.m_ParticleTime; retu…
331 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
332 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
333 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
334 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
335 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
336 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
338 bool operator ==(s32 rhs) const { return this->m_ParticleTime == rhs; }
339 bool operator !=(s32 rhs) const { return this->m_ParticleTime == rhs; }
340 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= rhs; }
341 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= rhs; }
342 bool operator >(s32 rhs) const { return this->m_ParticleTime > rhs; }
343 bool operator <(s32 rhs) const { return this->m_ParticleTime < rhs; }
372 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)