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

1 2 3

  /external/v4l2_codec2/vda/
picture.cc 5 #include "picture.h"
23 Picture::Picture(int32_t picture_buffer_id,
32 Picture::Picture(const Picture& other) = default;
34 Picture::~Picture() = default;
picture.h 18 // A picture buffer that has size and pixel format information.
44 // A decoded picture frame.
45 class Picture {
47 Picture(int32_t picture_buffer_id,
51 Picture(const Picture&);
52 ~Picture();
54 // Returns the id of the picture buffer where this picture is contained.
64 // Returns the visible rectangle of the picture. Its size may be smalle
    [all...]
video_decode_accelerator.h 15 #include "picture.h"
142 // The list of picture buffer formats that the client knows how to use. An
153 // Interface for collaborating with picture interface to provide memory for
154 // output picture and blitting them. These callbacks will not be made unless
180 // Callback to dismiss picture buffer that was assigned earlier.
184 virtual void PictureReady(const Picture& picture) = 0;
235 // Assigns a set of texture-backed picture buffers to the video decoder.
237 // Ownership of each picture buffer remains with the client, but the client
242 // |buffers| contains the allocated picture buffers for the output. Not
    [all...]
v4l2_slice_video_decode_accelerator.h 313 // Callback that indicates a picture has been cleared.
415 PictureRecord(bool cleared, const Picture& picture);
418 Picture picture; // The decoded picture. member in struct:media::V4L2SliceVideoDecodeAccelerator::PictureRecord
  /frameworks/base/core/jni/
android_graphics_Picture.cpp 19 #include "Picture.h"
29 const Picture* src = reinterpret_cast<Picture*>(srcHandle);
30 return reinterpret_cast<jlong>(new Picture(src));
35 Picture* picture = NULL; local
38 picture = Picture::CreateFromStream(strm);
41 return reinterpret_cast<jlong>(picture);
45 Picture* picture = reinterpret_cast<Picture*>(pictureHandle) local
53 Picture* picture = reinterpret_cast<Picture*>(pictureHandle); local
61 Picture* picture = reinterpret_cast<Picture*>(pictureHandle); local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Picture.h 37 class Picture {
39 explicit Picture(const Picture* src = NULL);
49 static Picture* CreateFromStream(SkStream* stream);
61 // Make a copy of a picture that is in the midst of being recorded. The
62 // resulting picture will have balanced saves and restores.
Picture.cpp 17 #include "Picture.h"
25 Picture::Picture(const Picture* src) {
41 Canvas* Picture::beginRecording(int width, int height) {
50 void Picture::endRecording() {
58 int Picture::width() const {
63 int Picture::height() const {
68 Picture* Picture::CreateFromStream(SkStream* stream)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Picture.java 23 * A Picture records drawing calls (via the canvas returned by beginRecording)
24 * and can then play them back into Canvas (via {@link Picture#draw(Canvas)} or
25 * {@link Canvas#drawPicture(Picture)}).For most content (e.g. text, lines, rectangles),
26 * drawing a sequence from a picture can be faster than the equivalent API
27 * calls, since the picture performs its playback without incurring any
30 * <p class="note"><strong>Note:</strong> Prior to API level 23 a picture cannot
33 public class Picture {
40 * Creates an empty picture that is ready to record.
42 public Picture() {
47 * Create a picture by making a copy of what has already been recorded i
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_bind.cpp 14 if (CXFA_Node* pPicture = m_pNode->GetChild(0, XFA_Element::Picture))
xfa_basic_data_element_properties.cpp 74 {XFA_Element::Picture, 1, 0},
196 {XFA_Element::Picture, 1, 0},
307 {XFA_Element::Picture, 1, 0},
364 {XFA_Element::Picture, 1, 0},
455 {XFA_Element::Picture, 1, 0},
479 {XFA_Element::Picture, 1, 0},
cxfa_validate.cpp 113 if (CXFA_Node* pNode = m_pNode->GetChild(0, XFA_Element::Picture))
  /frameworks/base/graphics/java/android/graphics/drawable/
PictureDrawable.java 22 import android.graphics.Picture;
27 * Drawable subclass that wraps a Picture, allowing the picture to be used
32 private Picture mPicture;
35 * Construct a new drawable referencing the specified picture. The picture
38 * @param picture The picture to associate with the drawable. May be null.
40 public PictureDrawable(Picture picture) {
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
PictureTest.java 22 import android.graphics.Picture;
40 private static Picture greenSquare() {
43 Picture pic = new Picture();
57 Picture pic = greenSquare();
69 Picture pic = greenSquare();
ExactCanvasTests.java 23 import android.graphics.Picture;
176 Picture picture = new Picture();
177 Canvas pictureCanvas = picture.beginRecording(90, 90);
179 picture.endRecording();
180 picture.draw(canvas);
209 // picture recording/playback. Maybe this is related to bug:31456967
210 // Hence disable picture mode for now.
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
PictureDrawableTest.java 26 import android.graphics.Picture;
41 assertNotNull((new PictureDrawable(new Picture())).getPicture());
48 // Create Picture for drawing
49 Picture picture = new Picture(); local
50 Canvas recodingCanvas = picture.beginRecording(100, 200);
52 picture.endRecording();
53 pictureDrawable.setPicture(picture);
74 // Test with null Picture objec
78 Picture picture = new Picture(); local
124 Picture picture = new Picture(); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PictureTest.java 29 import android.graphics.Picture;
49 // This method tests out some edge cases w.r.t. Picture creation.
51 // the created picture (effectively) has balanced saves and restores:
52 // - copy constructed picture from actively recording picture
53 // - writeToStream/createFromStream created picture from actively recording picture
54 // - actively recording picture after draw call
57 Picture original = new Picture();
121 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);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Pictures.java 37 private Picture mPicture;
56 mPicture = new Picture();
77 canvas.drawPicture(Picture.createFromStream(is));
PictureLayout.java 21 import android.graphics.Picture;
30 private final Picture mPicture = new Picture();
  /external/skia/include/core/
SkPictureRecorder.h 17 class Picture;
44 @param bounds the cull rect used when recording this picture. Any drawing the falls outside
70 * The returned picture is immutable. If during recording drawables were added to the canvas,
71 * these will have been "drawn" into a recording canvas, so that this resulting picture will
84 * @return the picture containing the recorded content.
94 * Unlike finishRecordingAsPicture(), which returns an immutable picture, the returned drawable
97 * it is drawn or a new picture is snapped from it (by calling drawable->newPictureSnapshot()).
108 friend class android::Picture;
  /frameworks/layoutlib/bridge/src/android/webkit/
WebView.java 23 import android.graphics.Picture;
150 public Picture capturePicture() {
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
NopCanvas.java 25 import android.graphics.Picture;
297 public void drawPicture(Picture picture) {
301 public void drawPicture(Picture picture, RectF dst) {
305 public void drawPicture(Picture picture, Rect dst) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comdef.h 217 #if !defined(Picture)
218 struct Picture : IPictureDisp {};
220 _COM_SMARTPTR_TYPEDEF(Picture,__uuidof(IDispatch));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
xfixesproto.h 65 #define Picture CARD32
241 Picture picture B32;
377 Picture picture B32;
537 #undef Picture
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
WebViewTest.java 3 import android.graphics.Picture;
87 public void onNewPicture(WebView view, Picture picture) {

Completed in 905 milliseconds

1 2 3