MCPcopy Create free account
hub / github.com/dds-bridge/dds / TimerLines

Method TimerLines

library/src/system/timer_group.cpp:147–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145
146
147string TimerGroup::TimerLines(const Timer& sumTotal) const
148{
149 string st = "";
150 for (unsigned r = 0; r < timers.size(); r++)
151 {
152 size_t i = timers.size() - r - 1;
153 if (timers[i].Used())
154 st += timers[i].SumLine(sumTotal);
155 }
156 return st;
157}
158
159
160string TimerGroup::DetailLines() const

Callers 1

PrintStatsMethod · 0.80

Calls 2

UsedMethod · 0.45
SumLineMethod · 0.45

Tested by

no test coverage detected