Symbol: ElapsedTime
headers/os/support/StopWatch.h
21
bigtime_t ElapsedTime() const;
src/apps/haikudepot/icon/PackageIconTarRepository.cpp
179
double secs = watch.ElapsedTime() / 1000000.0;
src/apps/haikudepot/process/AbstractProcess.cpp
79
fDurationSeconds = static_cast<double>(stopWatch.ElapsedTime()) / 1000000.0;
src/apps/haikudepot/server/AbstractSingleFileServerProcess.cpp
60
fDownloadDurationSeconds = ((double)stopWatch.ElapsedTime() / 1000000.0);
src/apps/haikudepot/server/AbstractSingleFileServerProcess.cpp
91
fProcessLocalDataDurationSeconds = ((double)stopWatch.ElapsedTime() / 1000000.0);
src/apps/haikudepot/server/ServerPkgDataUpdateProcess.cpp
353
double secs = watch.ElapsedTime() / 1000000.0;
src/apps/haikudepot/ui/MainWindow.cpp
1212
double durationSeconds = ((double)stopWatch.ElapsedTime() / 1000000.0);
src/kits/support/StopWatch.cpp
49
printf("StopWatch \"%s\": %d usecs.\n", fName, (int)ElapsedTime());
src/kits/tracker/Tests.cpp
189
watch.ElapsedTime() / numDrawn);
src/kits/tracker/Tests.cpp
246
watch.ElapsedTime() / numDrawn);
src/kits/tracker/Tests.cpp
294
bigtime_t now = watch.ElapsedTime();
src/tests/kits/locale/catalogSpeed.cpp
102
kNumStrings, watch.ElapsedTime());
src/tests/kits/locale/catalogSpeed.cpp
136
cat1.CountItems(), watch.ElapsedTime());
src/tests/kits/locale/catalogSpeed.cpp
144
cat1.CountItems(), watch.ElapsedTime());
src/tests/kits/locale/catalogSpeed.cpp
159
cat->CountItems(), watch.ElapsedTime());
src/tests/kits/locale/catalogSpeed.cpp
168
kNumStrings, watch.ElapsedTime());
src/tests/kits/locale/catalogSpeed.cpp
70
cat1.CountItems(), watch.ElapsedTime());
src/tests/kits/locale/catalogSpeed.cpp
78
cat1.CountItems(), watch.ElapsedTime());
src/tests/kits/locale/catalogSpeed.cpp
93
cat->CountItems(), watch.ElapsedTime());
src/tests/kits/locale/collatorSpeed.cpp
64
double secs = watch.ElapsedTime() / 1000000.0;
src/tests/kits/locale/collatorSpeed.cpp
66
name, watch.ElapsedTime(), secs, uint32(kIterations * kNumStrings / secs));
src/tests/kits/support/StopWatchTest.cpp
120
bigtime_t beforeReset = sw.ElapsedTime();
src/tests/kits/support/StopWatchTest.cpp
125
CPPUNIT_ASSERT(sw.ElapsedTime() < 5000);
src/tests/kits/support/StopWatchTest.cpp
143
bigtime_t elapsed = sw.ElapsedTime();
src/tests/kits/support/StopWatchTest.cpp
54
bigtime_t t1 = sw.ElapsedTime();
src/tests/kits/support/StopWatchTest.cpp
59
bigtime_t t2 = sw.ElapsedTime();
src/tests/kits/support/StopWatchTest.cpp
70
bigtime_t t1 = sw.ElapsedTime();
src/tests/kits/support/StopWatchTest.cpp
72
bigtime_t t2 = sw.ElapsedTime();
src/tests/kits/support/StopWatchTest.cpp
78
bigtime_t t3 = sw.ElapsedTime();