HomeSort by relevance Sort by last modified time
    Searched refs:Picture (Results 1 - 25 of 42) sorted by null

1 2

  /external/v4l2_codec2/vda/
picture.cc 6 #include "picture.h"
24 Picture::Picture(int32_t picture_buffer_id,
33 Picture::Picture(const Picture& other) = default;
35 Picture::~Picture() = default;
picture.h 19 // A picture buffer that has size and pixel format information.
45 // A decoded picture frame.
46 class Picture {
48 Picture(int32_t picture_buffer_id,
52 Picture(const Picture&);
53 ~Picture();
55 // Returns the id of the picture buffer where this picture is contained.
65 // Returns the visible rectangle of the picture. Its size may be smalle
    [all...]
video_decode_accelerator.h 16 #include "picture.h"
143 // The list of picture buffer formats that the client knows how to use. An
154 // Interface for collaborating with picture interface to provide memory for
155 // output picture and blitting them. These callbacks will not be made unless
181 // Callback to dismiss picture buffer that was assigned earlier.
185 virtual void PictureReady(const Picture& picture) = 0;
236 // Assigns a set of texture-backed picture buffers to the video decoder.
238 // Ownership of each picture buffer remains with the client, but the client
243 // |buffers| contains the allocated picture buffers for the output. Not
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPictureTest.java 5 import android.graphics.Picture;
15 Picture picture = new Picture(); local
16 picture.beginRecording(100, 100);
17 assertThat(picture.getHeight()).isEqualTo(100);
18 assertThat(picture.getWidth()).isEqualTo(100);
23 Picture originalPicture = new Picture();
26 Picture copiedPicture = new Picture(originalPicture)
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPicture.java 8 import android.graphics.Picture;
12 @Implements(Picture.class)
28 protected void __constructor__(Picture src) {
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
PictureTest.java 22 import android.graphics.Picture;
41 private static Picture greenSquare() {
44 Picture pic = new Picture();
58 Picture pic = greenSquare();
70 Picture pic = greenSquare();
HardwareBitmapTests.java 33 import android.graphics.Picture;
89 Picture picture = new Picture(); local
91 Canvas canvas = picture.beginRecording(TEST_WIDTH, TEST_HEIGHT);
96 picture.endRecording();
98 Bitmap hardwareBitmap = Bitmap.createBitmap(picture);
112 Picture picture = new Picture(); local
132 Picture picture = new Picture(); local
149 Picture picture = new Picture(); local
    [all...]
BitmapTests.java 28 import android.graphics.Picture;
227 Picture picture = new Picture(); local
229 Canvas canvas = picture.beginRecording(TEST_WIDTH, TEST_HEIGHT);
234 picture.endRecording();
236 Bitmap bitmap = Bitmap.createBitmap(picture, picture.getWidth(),
237 picture.getHeight(), Bitmap.Config.ARGB_8888);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
PictureDrawableTest.java 26 import android.graphics.Picture;
42 assertNotNull((new PictureDrawable(new Picture())).getPicture());
49 // Create Picture for drawing
50 Picture picture = new Picture(); local
51 Canvas recodingCanvas = picture.beginRecording(100, 200);
53 picture.endRecording();
54 pictureDrawable.setPicture(picture);
75 // Test with null Picture objec
79 Picture picture = new Picture(); local
125 Picture picture = new Picture(); local
    [all...]
DefaultFocusHighlightTest.java 31 import android.graphics.Picture;
154 d = DrawableFactory.createPictureDrawable(new Picture());
336 static PictureDrawable createPictureDrawable(Picture picture) {
337 PictureDrawable pictureDrawable = new PictureDrawable(picture);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PictureTest.java 29 import android.graphics.Picture;
46 // This method tests out some edge cases w.r.t. Picture creation.
48 // the created picture (effectively) has balanced saves and restores:
49 // - copy constructed picture from actively recording picture
50 // - actively recording picture after draw call
53 Picture original = new Picture();
60 Picture copy = new Picture(original)
106 Picture picture = new Picture(); local
129 Picture picture = new Picture(); local
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
CanvasClientView.java 22 import android.graphics.Picture;
67 Picture picture = new Picture(); local
68 Canvas pictureCanvas = picture.beginRecording(ActivityTestBase.TEST_WIDTH,
72 picture.endRecording();
73 picture.draw(canvas);
  /cts/tests/tests/uirendering27/src/android/uirendering/cts/testinfrastructure/
CanvasClientView.java 22 import android.graphics.Picture;
67 Picture picture = new Picture(); local
68 Canvas pictureCanvas = picture.beginRecording(ActivityTestBase.TEST_WIDTH,
72 picture.endRecording();
73 picture.draw(canvas);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Pictures.java 37 private Picture mPicture;
56 mPicture = new Picture();
PictureLayout.java 21 import android.graphics.Picture;
30 private final Picture mPicture = new Picture();
  /external/pdfium/xfa/fxfa/parser/
cxfa_bind.cpp 16 const CXFA_Node::PropertyData kPropertyData[] = {{XFA_Element::Picture, 1, 0},
51 GetChild<CXFA_Picture>(0, XFA_Element::Picture, false);
cxfa_format.cpp 14 const CXFA_Node::PropertyData kPropertyData[] = {{XFA_Element::Picture, 1, 0},
cxfa_picture.cpp 22 constexpr wchar_t kName[] = L"picture";
32 XFA_Element::Picture,
cxfa_transform.cpp 14 {XFA_Element::Picture, 1, 0}, {XFA_Element::NameAttr, 1, 0},
cxfa_connect.cpp 15 {XFA_Element::Picture, 1, 0},
cxfa_ui.cpp 21 {XFA_Element::Picture, 1, 0},
cxfa_validate.cpp 19 {XFA_Element::Picture, 1, 0},
147 CXFA_Picture* pNode = GetChild<CXFA_Picture>(0, XFA_Element::Picture, false);
  /external/skia/include/core/
SkPictureRecorder.h 18 class Picture;
45 @param bounds the cull rect used when recording this picture. Any drawing the falls outside
71 * The returned picture is immutable. If during recording drawables were added to the canvas,
72 * these will have been "drawn" into a recording canvas, so that this resulting picture will
85 * @return the picture containing the recorded content.
95 * Unlike finishRecordingAsPicture(), which returns an immutable picture, the returned drawable
98 * it is drawn or a new picture is snapped from it (by calling drawable->newPictureSnapshot()).
109 friend class android::Picture;
  /external/skqp/include/core/
SkPictureRecorder.h 18 class Picture;
45 @param bounds the cull rect used when recording this picture. Any drawing the falls outside
71 * The returned picture is immutable. If during recording drawables were added to the canvas,
72 * these will have been "drawn" into a recording canvas, so that this resulting picture will
85 * @return the picture containing the recorded content.
95 * Unlike finishRecordingAsPicture(), which returns an immutable picture, the returned drawable
98 * it is drawn or a new picture is snapped from it (by calling drawable->newPictureSnapshot()).
109 friend class android::Picture;
  /external/v4l2_codec2/include/
C2VDAAdaptor.h 44 void PictureReady(const media::Picture& picture) override;
55 // client, and used to check validity of picture id in importBufferForPicture and
58 // The picture size for creating picture buffers. This is obtained while VDA calls

Completed in 534 milliseconds

1 2