Symbol: BStopWatch
headers/os/support/StopWatch.h
13
class BStopWatch {
headers/os/support/StopWatch.h
15
BStopWatch(const char* name, bool silent = false);
headers/os/support/StopWatch.h
16
virtual ~BStopWatch();
src/apps/haikudepot/icon/PackageIconTarRepository.cpp
172
BStopWatch watch("PackageIconTarRepository::Init", true);
src/apps/haikudepot/process/AbstractProcess.cpp
77
BStopWatch stopWatch("process", true);
src/apps/haikudepot/server/AbstractSingleFileServerProcess.cpp
57
BStopWatch stopWatch("download", true);
src/apps/haikudepot/server/AbstractSingleFileServerProcess.cpp
89
BStopWatch stopWatch("process local data", true);
src/apps/haikudepot/server/ServerPkgDataUpdateProcess.cpp
332
BStopWatch watch("ServerPkgDataUpdateProcess::ProcessLocalData", true);
src/apps/haikudepot/ui/MainWindow.cpp
1185
BStopWatch stopWatch("adopt_model", true);
src/apps/showimage/Filter.cpp
138
fStopWatch = new BStopWatch("Filter Time");
src/apps/showimage/Filter.h
158
BStopWatch* fStopWatch;
src/kits/support/StopWatch.cpp
106
BStopWatch::Reset()
src/kits/support/StopWatch.cpp
117
BStopWatch::Name() const
src/kits/support/StopWatch.cpp
124
void BStopWatch::_ReservedStopWatch1() {}
src/kits/support/StopWatch.cpp
125
void BStopWatch::_ReservedStopWatch2() {}
src/kits/support/StopWatch.cpp
37
BStopWatch::BStopWatch(const char *name, bool silent)
src/kits/support/StopWatch.cpp
46
BStopWatch::~BStopWatch()
src/kits/support/StopWatch.cpp
64
BStopWatch::Suspend()
src/kits/support/StopWatch.cpp
72
BStopWatch::Resume()
src/kits/support/StopWatch.cpp
82
BStopWatch::Lap()
src/kits/support/StopWatch.cpp
96
BStopWatch::ElapsedTime() const
src/kits/tracker/Tests.cpp
140
BStopWatch watch("", true);
src/kits/tracker/Tests.cpp
91
BStopWatch watch;
src/libs/print/libprint/GraphicsDriver.cpp
681
BStopWatch stopWatch("printJob", !MEASURE_PRINT_JOB_TIME);
src/tests/add-ons/print/ppd/test/TestParser.cpp
37
BStopWatch* stopWatch = NULL;
src/tests/add-ons/print/ppd/test/TestParser.cpp
39
stopWatch = new BStopWatch("PPDParser");
src/tests/kits/locale/catalogSpeed.cpp
111
BStopWatch watch("catalogSpeed", true);
src/tests/kits/locale/catalogSpeed.cpp
151
BStopWatch watch("catalogSpeed", true);
src/tests/kits/locale/catalogSpeed.cpp
54
BStopWatch watch("catalogSpeed", true);
src/tests/kits/locale/catalogSpeed.cpp
85
BStopWatch watch("catalogSpeed", true);
src/tests/kits/locale/collatorSpeed.cpp
54
BStopWatch watch(name, true);
src/tests/kits/net/cookie/cookie_test.cpp
40
BStopWatch* watch = new BStopWatch("Cookie insertion");
src/tests/kits/net/cookie/cookie_test.cpp
61
watch = new BStopWatch("Cookie filtering");
src/tests/kits/support/StopWatchTest.cpp
107
BStopWatch sw("lap2", true);
src/tests/kits/support/StopWatchTest.cpp
117
BStopWatch sw("reset", true);
src/tests/kits/support/StopWatchTest.cpp
130
BStopWatch sw("multi", true);
src/tests/kits/support/StopWatchTest.cpp
35
BStopWatch sw(NULL, true);
src/tests/kits/support/StopWatchTest.cpp
44
BStopWatch sw("mywatch", true);
src/tests/kits/support/StopWatchTest.cpp
53
BStopWatch sw("et", true);
src/tests/kits/support/StopWatchTest.cpp
66
BStopWatch sw("sr", true);
src/tests/kits/support/StopWatchTest.cpp
85
BStopWatch sw("lap", true);
src/tests/kits/support/StopWatchTest.cpp
97
BStopWatch sw("lapoverflow", true);