Lines Matching refs:operator
94 operator s64() const { return m_Tick; } in s64()
99 operator nn::fnd::TimeSpan() const;
119 Tick& operator-=(Tick rhs);
127 Tick operator-(Tick rhs) const;
135 Tick& operator+=(Tick rhs);
143 Tick operator+(Tick rhs) const;
151 Tick& operator+=(fnd::TimeSpan rhs);
159 Tick operator+(fnd::TimeSpan rhs) const;
229 inline Tick::operator nn::fnd::TimeSpan() const in TimeSpan()
242 inline Tick& Tick::operator+=(fnd::TimeSpan rhs)
251 inline Tick& Tick::operator-=(Tick rhs) { this->m_Tick -= rhs.m_Tick; return *this; }
252 inline Tick Tick::operator-(Tick rhs) const { Tick ret(*this); return ret -= rhs; }
253 inline Tick& Tick::operator+=(Tick rhs) { this->m_Tick += rhs.m_Tick; return *this; }
254 inline Tick Tick::operator+(Tick rhs) const { Tick ret(*this); return ret += rhs; }
255 inline Tick Tick::operator+(fnd::TimeSpan rhs) const { Tick ret(*this); return ret += rhs; }