Lines Matching refs:operator
43 friend ParticleTime operator -(const ParticleTime& rhs);
86 ParticleTime operator +(ParticleTime right) const
93 ParticleTime operator -(ParticleTime right) const
137 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return …
138 …ParticleTime& operator =(s32 value) { this->m_ParticleTime = S32ToParticleTime(value); return *thi…
139 …ParticleTime& operator =(ParticleTime value) { this->m_ParticleTime = value.m_ParticleTime; return…
140 …ParticleTime& operator +=(f32 value) { this->m_ParticleTime += Float32ToParticleTime(value); retur…
141 …ParticleTime& operator +=(s32 value) { this->m_ParticleTime += S32ToParticleTime(value); return *t…
142 …ParticleTime& operator +=(ParticleTime value) { this->m_ParticleTime += value.m_ParticleTime; retu…
143 …ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= Float32ToParticleTime(value); retur…
144 …ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= S32ToParticleTime(value); return *t…
145 …ParticleTime& operator -=(ParticleTime value) { this->m_ParticleTime -= value.m_ParticleTime; retu…
147 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
148 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
149 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
150 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
151 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
152 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
154 bool operator ==(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
155 bool operator !=(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
156 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= S32ToParticleTime(rhs); }
157 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= S32ToParticleTime(rhs); }
158 bool operator >(s32 rhs) const { return this->m_ParticleTime > S32ToParticleTime(rhs); }
159 bool operator <(s32 rhs) const { return this->m_ParticleTime < S32ToParticleTime(rhs); }
206 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)
220 friend ParticleTime operator -(const ParticleTime& rhs);
260 ParticleTime operator +(ParticleTime right) const
265 ParticleTime operator -(ParticleTime right) const
307 …ParticleTime& operator =(f32 value) { this->m_ParticleTime = Float32ToParticleTime(value); return …
308 ParticleTime& operator =(s32 value) { this->m_ParticleTime = value; return *this; }
309 …ParticleTime& operator =(ParticleTime value) { this->m_ParticleTime = value.m_ParticleTime; return…
310 ParticleTime& operator +=(f32 value) { this->m_ParticleTime += value; return *this; }
311 ParticleTime& operator +=(s32 value) { this->m_ParticleTime += value; return *this; }
312 …ParticleTime& operator +=(ParticleTime value) { this->m_ParticleTime += value.m_ParticleTime; retu…
313 ParticleTime& operator -=(f32 value) { this->m_ParticleTime -= value; return *this; }
314 ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= value; return *this; }
315 …ParticleTime& operator -=(ParticleTime value) { this->m_ParticleTime -= value.m_ParticleTime; retu…
317 …bool operator ==(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
318 …bool operator !=(const ParticleTime& rhs) const { return this->m_ParticleTime == rhs.m_ParticleTim…
319 …bool operator >=(const ParticleTime& rhs) const { return this->m_ParticleTime >= rhs.m_ParticleTim…
320 …bool operator <=(const ParticleTime& rhs) const { return this->m_ParticleTime <= rhs.m_ParticleTim…
321 …bool operator >(const ParticleTime& rhs) const { return this->m_ParticleTime > rhs.m_ParticleTime;…
322 …bool operator <(const ParticleTime& rhs) const { return this->m_ParticleTime < rhs.m_ParticleTime;…
324 bool operator ==(s32 rhs) const { return this->m_ParticleTime == rhs; }
325 bool operator !=(s32 rhs) const { return this->m_ParticleTime == rhs; }
326 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= rhs; }
327 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= rhs; }
328 bool operator >(s32 rhs) const { return this->m_ParticleTime > rhs; }
329 bool operator <(s32 rhs) const { return this->m_ParticleTime < rhs; }
358 NW_FORCE_INLINE ParticleTime operator -(const ParticleTime& rhs)