OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RollingTimeDeltaHistory
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/cc/base/
rolling_time_delta_history.h
18
class CC_EXPORT
RollingTimeDeltaHistory
{
20
explicit
RollingTimeDeltaHistory
(size_t max_size);
22
~
RollingTimeDeltaHistory
();
39
DISALLOW_COPY_AND_ASSIGN(
RollingTimeDeltaHistory
);
rolling_time_delta_history.cc
11
RollingTimeDeltaHistory
::
RollingTimeDeltaHistory
(size_t max_size)
14
RollingTimeDeltaHistory
::~
RollingTimeDeltaHistory
() {}
16
void
RollingTimeDeltaHistory
::InsertSample(base::TimeDelta time) {
29
void
RollingTimeDeltaHistory
::Clear() {
34
base::TimeDelta
RollingTimeDeltaHistory
::Percentile(double percent) const {
rolling_time_delta_history_unittest.cc
12
RollingTimeDeltaHistory
empty_history(0);
33
RollingTimeDeltaHistory
size_one_history(1);
58
RollingTimeDeltaHistory
large_history(100);
/external/chromium_org/cc/trees/
proxy_timing_history.h
33
RollingTimeDeltaHistory
draw_duration_history_;
34
RollingTimeDeltaHistory
begin_main_frame_to_commit_duration_history_;
35
RollingTimeDeltaHistory
commit_to_activate_duration_history_;
/external/chromium_org/cc/output/
output_surface.h
183
RollingTimeDeltaHistory
gpu_latency_history_;
Completed in 153 milliseconds