Lines Matching refs:label
40 # define NW_LYT_STOPWATCH_MEASURE(no, label) \ argument
42 nw::lyt::internal::Stopwatch::Instance<no>(label), no)
44 # define NW_LYT_STOPWATCH_START(no, label) \ argument
46 nw::lyt::internal::Stopwatch::Instance<no>().Start(label)
52 # define NW_LYT_STOPWATCH_MEASURE(no, label)
53 # define NW_LYT_STOPWATCH_START(no, label)
74 Stopwatch(int no = 0, const char* label = NULL);
80 void Start(const char* label = NULL)
83 NW_UNUSED_VARIABLE(label)
85 if (label != NULL)
87 this->SetLabel(label);
137 void SetLabel(const char* label) in SetLabel() argument
140 NW_UNUSED_VARIABLE(label); in SetLabel()
142 m_Label = label; in SetLabel()
210 static Stopwatch& Instance(const char* label = NULL)
214 if (label != NULL)
216 obj.SetLabel(label);