Lines Matching refs:Stopwatch
40 nw::lyt::internal::Stopwatch::Instance<no>(label), no)
43 if(nw::lyt::internal::Stopwatch::IsTarget(no)) \
44 nw::lyt::internal::Stopwatch::Instance<no>().Start(label)
47 if(nw::lyt::internal::Stopwatch::IsTarget(no)) \
48 nw::lyt::internal::Stopwatch::Instance<no>().Stop()
63 class Stopwatch : public nw::ut::LinkListNode
69 typedef nw::ut::LinkList<Stopwatch, 0> List;
72 Stopwatch(int no = 0, const char* label = NULL);
208 static Stopwatch& Instance(const char* label = NULL)
210 static Stopwatch obj(no);
257 static void Dump(const Stopwatch& stopwatch);
285 Measure(Stopwatch& stopwatch, int no) in Measure()
289 if(Stopwatch::IsTarget(no)) in Measure()
307 Stopwatch& m_Stopwatch;