Lines Matching refs:label
38 # define NW_LYT_STOPWATCH_MEASURE(no, label) \ argument
40 nw::lyt::internal::Stopwatch::Instance<no>(label), no)
42 # define NW_LYT_STOPWATCH_START(no, label) \ argument
44 nw::lyt::internal::Stopwatch::Instance<no>().Start(label)
50 # define NW_LYT_STOPWATCH_MEASURE(no, label)
51 # define NW_LYT_STOPWATCH_START(no, label)
72 Stopwatch(int no = 0, const char* label = NULL);
78 void Start(const char* label = NULL)
81 NW_UNUSED_VARIABLE(label)
83 if (label != NULL)
85 this->SetLabel(label);
135 void SetLabel(const char* label) in SetLabel() argument
138 NW_UNUSED_VARIABLE(label); in SetLabel()
140 m_Label = label; in SetLabel()
208 static Stopwatch& Instance(const char* label = NULL)
212 if (label != NULL)
214 obj.SetLabel(label);