OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MicroBenchmark
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/cc/debug/
micro_benchmark.cc
16
MicroBenchmark
::
MicroBenchmark
(const DoneCallback& callback)
21
MicroBenchmark
::~
MicroBenchmark
() {}
23
bool
MicroBenchmark
::IsDone() const {
27
void
MicroBenchmark
::DidUpdateLayers(LayerTreeHost* host) {}
29
void
MicroBenchmark
::NotifyDone(scoped_ptr<base::Value> result) {
34
void
MicroBenchmark
::RunOnLayer(Layer* layer) {}
36
void
MicroBenchmark
::RunOnLayer(PictureLayer* layer) {}
38
bool
MicroBenchmark
::ProcessedForBenchmarkImpl() const
[
all
...]
micro_benchmark_controller.cc
22
scoped_ptr<
MicroBenchmark
> CreateBenchmark(
25
const
MicroBenchmark
::DoneCallback& callback) {
27
return scoped_ptr<
MicroBenchmark
>(
30
return scoped_ptr<
MicroBenchmark
>(
33
return scoped_ptr<
MicroBenchmark
>(
36
return scoped_ptr<
MicroBenchmark
>();
41
typedef const
MicroBenchmark
* argument_type;
62
const
MicroBenchmark
::DoneCallback& callback) {
63
scoped_ptr<
MicroBenchmark
> benchmark =
75
for (ScopedPtrVector<
MicroBenchmark
>::iterator it = benchmarks_.begin()
[
all
...]
micro_benchmark.h
23
class CC_EXPORT
MicroBenchmark
{
27
explicit
MicroBenchmark
(const DoneCallback& callback);
28
virtual ~
MicroBenchmark
();
micro_benchmark_controller.h
33
const
MicroBenchmark
::DoneCallback& callback);
41
ScopedPtrVector<
MicroBenchmark
> benchmarks_;
picture_record_benchmark.h
19
class CC_EXPORT PictureRecordBenchmark : public
MicroBenchmark
{
22
const
MicroBenchmark
::DoneCallback& callback);
25
// Implements
MicroBenchmark
interface.
rasterize_and_record_benchmark.h
24
class RasterizeAndRecordBenchmark : public
MicroBenchmark
{
28
const
MicroBenchmark
::DoneCallback& callback);
31
// Implements
MicroBenchmark
interface.
unittest_only_benchmark.h
13
class CC_EXPORT UnittestOnlyBenchmark : public
MicroBenchmark
{
unittest_only_benchmark.cc
16
:
MicroBenchmark
(callback),
picture_record_benchmark.cc
29
const
MicroBenchmark
::DoneCallback& callback)
30
:
MicroBenchmark
(callback) {
rasterize_and_record_benchmark.cc
35
const
MicroBenchmark
::DoneCallback& callback)
36
:
MicroBenchmark
(callback),
/external/chromium_org/cc/layers/
picture_layer.h
40
virtual void RunMicroBenchmark(
MicroBenchmark
* benchmark) OVERRIDE;
picture_layer.cc
159
void PictureLayer::RunMicroBenchmark(
MicroBenchmark
* benchmark) {
layer.h
460
virtual void RunMicroBenchmark(
MicroBenchmark
* benchmark);
layer.cc
[
all
...]
/external/chromium_org/cc/trees/
layer_tree_host.h
289
const
MicroBenchmark
::DoneCallback& callback);
layer_tree_host.cc
[
all
...]
Completed in 1298 milliseconds