Lines Matching refs:Stopwatch
42 nw::lyt::internal::Stopwatch::Instance<no>(label), no)
45 if(nw::lyt::internal::Stopwatch::IsTarget(no)) \
46 nw::lyt::internal::Stopwatch::Instance<no>().Start(label)
49 if(nw::lyt::internal::Stopwatch::IsTarget(no)) \
50 nw::lyt::internal::Stopwatch::Instance<no>().Stop()
65 class Stopwatch : public nw::ut::LinkListNode
71 typedef nw::ut::LinkList<Stopwatch, 0> List;
74 Stopwatch(int no = 0, const char* label = NULL);
210 static Stopwatch& Instance(const char* label = NULL)
212 static Stopwatch obj(no);
259 static void Dump(const Stopwatch& stopwatch);
304 Measure(Stopwatch& stopwatch, int no) in Measure()
308 if(Stopwatch::IsTarget(no)) in Measure()
327 Stopwatch& m_Stopwatch;