Lines Matching refs:rhs

43     friend ParticleTime operator -(const ParticleTime& rhs);
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)
223 result.m_ParticleTime = -rhs.m_ParticleTime;
234 friend ParticleTime operator -(const ParticleTime& rhs);
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)
374 return ParticleTime(-rhs.m_ParticleTime);