Lines Matching refs:fnd
77 Tick(nn::fnd::TimeSpan span);
99 operator nn::fnd::TimeSpan() const;
106 nn::fnd::TimeSpan ToTimeSpan() const;
151 Tick& operator+=(fnd::TimeSpan rhs);
159 Tick operator+(fnd::TimeSpan rhs) const;
222 inline Tick::Tick(nn::fnd::TimeSpan span) in Tick()
229 inline Tick::operator nn::fnd::TimeSpan() const in TimeSpan()
231 return nn::fnd::TimeSpan::FromNanoSeconds( in TimeSpan()
237 inline nn::fnd::TimeSpan Tick::ToTimeSpan() const in ToTimeSpan()
242 inline Tick& Tick::operator+=(fnd::TimeSpan rhs)
255 inline Tick Tick::operator+(fnd::TimeSpan rhs) const { Tick ret(*this); return ret += rhs; }