/third_party/flutter/engine/flutter/lib/ui/painting/ |
D | picture_recorder.cc | 12 IMPLEMENT_WRAPPERTYPEINFO(ui, PictureRecorder); 15 V(PictureRecorder, isRecording) \ 16 V(PictureRecorder, endRecording) 20 void PictureRecorder::RegisterNatives(tonic::DartLibraryNatives* natives) { in FOR_EACH_BINDING() 23 fml::RefPtr<PictureRecorder> PictureRecorder::Create() { in Create() 24 return fml::MakeRefCounted<PictureRecorder>(); in Create() 27 PictureRecorder::PictureRecorder() {} in PictureRecorder() function in flutter::PictureRecorder 29 PictureRecorder::~PictureRecorder() {} in ~PictureRecorder() 31 bool PictureRecorder::isRecording() { in isRecording() 35 SkCanvas* PictureRecorder::BeginRecording(SkRect bounds) { in BeginRecording() [all …]
|
D | picture_recorder.h | 19 class PictureRecorder : public RefCountedDartWrappable<PictureRecorder> { 21 FML_FRIEND_MAKE_REF_COUNTED(PictureRecorder); 24 static fml::RefPtr<PictureRecorder> Create(); 26 ~PictureRecorder() override; 37 PictureRecorder();
|
D | canvas.h | 30 static fml::RefPtr<Canvas> Create(PictureRecorder* recorder,
|
D | canvas.cc | 67 fml::RefPtr<Canvas> Canvas::Create(PictureRecorder* recorder, in Create()
|
/third_party/flutter/engine/flutter/testing/dart/ |
D | canvas_test.dart | 17 callback(Canvas(PictureRecorder(), const Rect.fromLTRB(0.0, 0.0, 0.0, 0.0))); 31 final PictureRecorder recorder = PictureRecorder(); 39 try { Canvas(PictureRecorder(), null); } catch (error) { } // ignore: empty_catches 40 try { Canvas(PictureRecorder(), rect); } catch (error) { } // ignore: empty_catches 43 PictureRecorder() 136 final PictureRecorder recorder = PictureRecorder();
|
D | color_filter_test.dart | 33 final PictureRecorder recorder = PictureRecorder();
|
D | encoding_test.dart | 72 final PictureRecorder recorder = PictureRecorder();
|
/third_party/flutter/flutter/examples/layers/raw/ |
D | shader_warm_up.dart | 14 final ui.PictureRecorder recorder = ui.PictureRecorder();
|
D | canvas.dart | 13 // First we create a PictureRecorder to record the commands we're going to 14 // feed in the canvas. The PictureRecorder will eventually produce a Picture, 16 final ui.PictureRecorder recorder = ui.PictureRecorder();
|
D | touch_input.dart | 14 // First we create a PictureRecorder to record the commands we're going to 15 // feed in the canvas. The PictureRecorder will eventually produce a Picture, 17 final ui.PictureRecorder recorder = ui.PictureRecorder();
|
D | hello_world.dart | 22 final ui.PictureRecorder recorder = ui.PictureRecorder();
|
D | spinning_square.dart | 23 final ui.PictureRecorder recorder = ui.PictureRecorder();
|
D | text.dart | 15 final ui.PictureRecorder recorder = ui.PictureRecorder();
|
/third_party/flutter/engine/flutter/shell/platform/embedder/fixtures/ |
D | main.dart | 185 PictureRecorder baseRecorder = PictureRecorder(); 210 PictureRecorder baseRecorder = PictureRecorder();
|
/third_party/flutter/flutter/packages/flutter_test/test/ |
D | reference_image_test.dart | 14 final ui.PictureRecorder recorder = ui.PictureRecorder();
|
/third_party/flutter/engine/flutter/testing/scenario_app/lib/src/ |
D | animated_color_square.dart | 38 final PictureRecorder recorder = PictureRecorder();
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/compositor/ |
D | picture_recorder.dart | 7 class SkPictureRecorder implements ui.PictureRecorder {
|
/third_party/flutter/engine/flutter/lib/ui/ |
D | dart_ui.cc | 88 PictureRecorder::RegisterNatives(g_natives); in InitForGlobal()
|
/third_party/flutter/engine/flutter/lib/web_ui/test/ |
D | compositing_test.dart | 236 final PictureRecorder recorder = PictureRecorder();
|
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | shader_warm_up.dart | 82 final ui.PictureRecorder recorder = ui.PictureRecorder();
|
D | basic_types.dart | 57 // - Picture, PictureRecorder, Scene, SceneBuilder:
|
/third_party/skia/modules/canvaskit/npm_build/types/ |
D | index.d.ts | 404 readonly PictureRecorder: DefaultConstructor<PictureRecorder>; property 2517 export interface PictureRecorder extends EmbindObject<PictureRecorder> { interface
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/ |
D | canvas.dart | 84 /// To end recording, use the [PictureRecorder.endRecording] method. 85 class PictureRecorder { 86 /// Creates a new idle PictureRecorder. To associate it with a 87 /// [Canvas] and begin recording, pass this [PictureRecorder] to the 89 factory PictureRecorder() { 93 return PictureRecorder._(); 97 PictureRecorder._(); 116 /// [PictureRecorder] has not yet been associated with a [Canvas], 126 /// Returns null if the PictureRecorder is not associated with a canvas. 168 /// To end the recording, call [PictureRecorder.endRecording] on the [all …]
|
/third_party/flutter/flutter/packages/flutter/test/rendering/ |
D | layers_test.dart | 230 final PictureRecorder recorder = PictureRecorder();
|
/third_party/skia/modules/canvaskit/ |
D | externs.js | 636 PictureRecorder: { property
|