OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StatsCounterTimer
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/base/metrics/
stats_counters.cc
66
StatsCounterTimer
::
StatsCounterTimer
(const std::string& name) {
76
StatsCounterTimer
::~
StatsCounterTimer
() {
79
void
StatsCounterTimer
::Start() {
87
void
StatsCounterTimer
::Stop() {
95
bool
StatsCounterTimer
::Running() {
100
void
StatsCounterTimer
::AddTime(TimeDelta time) {
104
void
StatsCounterTimer
::Record() {
110
:
StatsCounterTimer
(name)
[
all
...]
stats_counters.h
129
// A
StatsCounterTimer
is a StatsCounter which keeps a timer during
130
// the scope of the
StatsCounterTimer
. On destruction, it will record
132
class BASE_EXPORT
StatsCounterTimer
: protected StatsCounter {
135
explicit
StatsCounterTimer
(const std::string& name);
136
virtual ~
StatsCounterTimer
();
161
class BASE_EXPORT StatsRate : public
StatsCounterTimer
{
stats_table_unittest.cc
286
class MockStatsCounterTimer : public
StatsCounterTimer
{
289
:
StatsCounterTimer
(name) {}
295
// Test some basic
StatsCounterTimer
operations
296
TEST_F(StatsTableTest,
StatsCounterTimer
) {
367
StatsCounterTimer
foo("foo");
379
StatsScope<
StatsCounterTimer
> timer(foo);
389
StatsScope<
StatsCounterTimer
> timer(foo);
/external/chromium_org/chrome/app/
chrome_main_delegate.h
63
scoped_ptr<base::
StatsCounterTimer
> stats_counter_timer_;
64
scoped_ptr<base::StatsScope<base::
StatsCounterTimer
> > startup_timer_;
chrome_main_delegate.cc
651
stats_counter_timer_.reset(new base::
StatsCounterTimer
("Chrome.Init"));
652
startup_timer_.reset(new base::StatsScope<base::
StatsCounterTimer
>
[
all
...]
/external/chromium_org/content/renderer/
renderer_main.cc
157
base::
StatsCounterTimer
stats_counter_timer("Content.RendererInit");
158
base::StatsScope<base::
StatsCounterTimer
> startup_timer(stats_counter_timer);
Completed in 75 milliseconds