Searched defs:recorder (Results 1 - 25 of 102) sorted by relevance

12345

/external/chromium_org/third_party/skia/gm/
H A Dpathopsskpclip.cpp36 SkPictureRecorder recorder; variable
37 SkCanvas* rec = recorder.beginRecording(1200, 900, NULL, 0);
50 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
H A Ddistantclip.cpp33 SkPictureRecorder recorder; local
37 SkCanvas* rec = recorder.beginRecording(kExtents, kOffset + kExtents, NULL, 0);
46 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
49 pict->playback(recorder.beginRecording(pict->cullRect().width(),
52 SkAutoTUnref<SkPicture> pict2(recorder.endRecording());
H A Dpictureimagefilter.cpp26 SkPictureRecorder recorder; local
27 SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
36 fPicture.reset(recorder.endRecording());
H A Dpictureshader.cpp32 SkPictureRecorder recorder; local
33 SkCanvas* pictureCanvas = recorder.beginRecording(tileSize, tileSize, NULL, 0);
35 fPicture.reset(recorder.endRecording());
H A Dpictureshadertile.cpp63 SkPictureRecorder recorder; local
64 SkCanvas* pictureCanvas = recorder.beginRecording(kPictureSize, kPictureSize, NULL, 0);
66 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
/external/chromium_org/third_party/skia/tools/
H A Dgpuveto.cpp57 SkPictureRecorder recorder; local
58 picture->playback(recorder.beginRecording(picture->cullRect().width(),
61 SkAutoTUnref<SkPicture> recorded(recorder.endRecording());
H A Dskpmaker.cpp32 SkPictureRecorder recorder; local
33 SkCanvas* canvas = recorder.beginRecording(width, height, NULL, 0);
42 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
/external/skia/gm/
H A Dpathopsskpclip.cpp40 SkPictureRecorder recorder; variable
41 SkCanvas* rec = recorder.beginRecording(1200, 900, NULL, 0);
54 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
H A Ddistantclip.cpp33 SkPictureRecorder recorder; local
37 SkCanvas* rec = recorder.beginRecording(100, offset + extents, NULL, 0);
51 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
54 pict->draw(recorder.beginRecording(100, offset + extents, NULL, 0));
55 SkAutoTUnref<SkPicture> pict2(recorder.endRecording());
H A Dpictureimagefilter.cpp26 SkPictureRecorder recorder; local
27 SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
35 fPicture.reset(recorder.endRecording());
/external/skia/tools/
H A Dgpuveto.cpp57 SkPictureRecorder recorder; local
58 picture->draw(recorder.beginRecording(picture->width(), picture->height(), NULL, 0));
59 SkAutoTUnref<SkPicture> recorded(recorder.endRecording());
H A Dskpmaker.cpp30 SkPictureRecorder recorder; local
31 SkCanvas* canvas = recorder.beginRecording(width, height, NULL, 0);
40 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
/external/chromium_org/net/quic/
H A Dquic_sustained_bandwidth_recorder_test.cc16 QuicSustainedBandwidthRecorder recorder; local
17 EXPECT_FALSE(recorder.HasEstimate());
30 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time,
32 EXPECT_FALSE(recorder.HasEstimate());
37 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time,
39 EXPECT_FALSE(recorder.HasEstimate());
44 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time,
46 EXPECT_TRUE(recorder.HasEstimate());
47 EXPECT_EQ(recorder.BandwidthEstimate(), bandwidth);
48 EXPECT_EQ(recorder
96 QuicSustainedBandwidthRecorder recorder; local
[all...]
/external/chromium_org/third_party/skia/bench/
H A DRecordingBench.cpp44 SkPictureRecorder recorder; local
45 fSrc->playback(recorder.beginRecording(w, h, fUseBBH ? &factory : NULL));
46 SkDELETE(recorder.endRecording());
H A DPictureNestingBench.cpp52 SkPictureRecorder recorder; local
56 c = recorder.beginRecording(1, 1);
78 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
108 SkPictureRecorder recorder; local
111 SkCanvas* c = recorder.beginRecording(SkIntToScalar(canvasSize.x()),
114 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
128 SkPictureRecorder recorder; local
129 SkCanvas* c = recorder.beginRecording(SkIntToScalar(canvasSize.x()),
133 fPicture.reset(recorder.endRecording());
H A DPictureRecordBench.cpp55 SkPictureRecorder recorder; variable
62 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
63 canvas = recorder.beginRecording(PICTURE_WIDTH, PICTURE_HEIGHT, NULL, 0);
124 SkPictureRecorder recorder; variable
128 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
129 canvas = recorder.beginRecording(PICTURE_WIDTH, PICTURE_HEIGHT, NULL, 0);
162 SkPictureRecorder recorder; variable
163 SkCanvas* canvas = recorder.beginRecording(PICTURE_WIDTH, PICTURE_HEIGHT, NULL, 0);
/external/chromium_org/third_party/skia/tests/
H A DPictureStateTreeTest.cpp15 SkPictureRecorder recorder; local
16 SkCanvas* canvas = recorder.beginRecording(200, 200, bbhFactory, 0);
64 return recorder.endRecording();
H A DGpuLayerCacheTest.cpp97 SkPictureRecorder recorder; local
98 recorder.beginRecording(1, 1);
99 SkAutoTUnref<const SkPicture> picture(recorder.endRecording());
H A DTileGridTest.cpp63 SkPictureRecorder recorder; local
64 SkCanvas* canvas = recorder.beginRecording(20, 20, &factory, 0);
68 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
152 SkPictureRecorder recorder; local
153 SkCanvas* canvas = recorder.beginRecording(20, 20, &factory, 0);
158 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
/external/oprofile/libpp/
H A Dcallgraph_container.h49 * list. This is used to initially populate the recorder with
165 arc_recorder recorder; member in class:callgraph_container
/external/skia/tests/
H A DPictureStateTreeTest.cpp15 SkPictureRecorder recorder; local
16 SkCanvas* canvas = recorder.beginRecording(200, 200, bbhFactory, 0);
64 return recorder.endRecording();
/external/chromium_org/cc/resources/
H A Dskpicture_content_layer_updater.cc31 SkPictureRecorder recorder; local
33 recorder.beginRecording(paint_rect.width(), paint_rect.height(), NULL, 0);
47 picture_ = skia::AdoptRef(recorder.endRecording());
/external/chromium_org/skia/ext/
H A Danalysis_canvas_unittest.cc291 SkPictureRecorder recorder; local
295 skia::SharePtr(recorder.beginRecording(256, 256, &factory));
309 skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording());
/external/chromium_org/third_party/skia/debugger/
H A DSkDebugger.cpp42 SkPictureRecorder recorder; local
43 SkCanvas* canvas = recorder.beginRecording(this->pictureCull().width(),
67 return recorder.endRecording();
/external/chromium_org/third_party/skia/samplecode/
H A DSamplePicture.cpp65 SkPictureRecorder recorder; local
67 recorder.beginRecording(100, 100, NULL, 0);
68 fSubPicture = recorder.endRecording();
70 SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
85 fPicture = recorder.endRecording();
135 SkPictureRecorder recorder; local
136 this->drawSomething(recorder.beginRecording(100, 100, NULL, 0));
137 SkAutoTUnref<SkPicture> pict(recorder.endRecording());

Completed in 3845 milliseconds

12345