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

1 2

  /external/chromium_org/media/video/
picture.cc 5 #include "media/video/picture.h"
25 Picture::Picture(int32 picture_buffer_id,
picture.h 16 // A picture buffer that is composed of a GLES2 texture.
54 // A decoded picture frame.
56 class MEDIA_EXPORT Picture {
58 Picture(int32 picture_buffer_id,
62 // Returns the id of the picture buffer where this picture is contained.
76 // Returns the visible rectangle of the picture. Its size may be smaller
78 // Picture contained in the PictureBuffer.
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLPictureElement.cpp 34 UseCounter::count(document(), UseCounter::Picture);
  /frameworks/base/core/jni/android/graphics/
Picture.h 36 class Picture {
38 explicit Picture(const Picture* src = NULL);
48 static Picture* CreateFromStream(SkStream* stream);
60 // Make a copy of a picture that is in the midst of being recorded. The
61 // resulting picture will have balanced saves and restores.
Picture.cpp 18 #include "Picture.h"
24 Picture::Picture(const Picture* src) {
39 Canvas* Picture::beginRecording(int width, int height) {
47 // Canvas.java and our picture can both be owners
52 void Picture::endRecording() {
59 int Picture::width() const {
68 int Picture::height() const {
77 Picture* Picture::CreateFromStream(SkStream* stream)
    [all...]
  /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));
  /external/chromium_org/cc/resources/
picture.cc 5 #include "cc/resources/picture.h"
87 scoped_refptr<Picture> Picture::Create(
93 scoped_refptr<Picture> picture = make_scoped_refptr(new Picture(layer_rect)); local
95 picture->Record(client, tile_grid_info, recording_mode);
97 picture->GatherPixelRefs(tile_grid_info);
99 return picture;
102 Picture::Picture(const gfx::Rect& layer_rect
    [all...]
picture.h 41 class CC_EXPORT Picture
42 : public base::RefCountedThreadSafe<Picture> {
56 static scoped_refptr<Picture> Create(
62 static scoped_refptr<Picture> CreateFromValue(const base::Value* value);
63 static scoped_refptr<Picture> CreateFromSkpValue(const base::Value* value);
84 // Draw the picture directly into the given canvas, without applying any
91 // raster this layer rect from this picture. Internally, pixel refs are
96 PixelRefIterator(const gfx::Rect& layer_rect, const Picture* picture);
116 const Picture* picture_
    [all...]
  /external/chromium_org/ppapi/proxy/
video_decoder_resource.cc 52 VideoDecoderResource::Picture::Picture(int32_t decode_id, uint32_t texture_id)
56 VideoDecoderResource::Picture::~Picture() {
174 // decode_id for the maximum picture delay.
253 PP_VideoPicture* picture,
262 // If the next picture is ready, return it synchronously.
264 WriteNextPicture(picture);
269 get_picture_ = picture;
273 void VideoDecoderResource::RecyclePicture(const PP_VideoPicture* picture) {
409 PP_VideoPicture* picture = get_picture_; local
515 Picture& picture = received_pictures_.front(); local
    [all...]
video_decoder_resource.h 59 virtual int32_t GetPicture(PP_VideoPicture* picture,
61 virtual void RecyclePicture(const PP_VideoPicture* picture) OVERRIDE;
97 // Struct to hold a picture received from the decoder.
98 struct Picture {
99 Picture(int32_t decode_id, uint32_t texture_id);
100 ~Picture();
135 void WriteNextPicture(PP_VideoPicture* picture);
149 typedef std::queue<Picture> PictureQueue;
161 // The maximum delay (in Decode calls) before we receive a picture. If we
162 // haven't received a picture from a Decode call after this many successiv
    [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 public class Picture {
37 * Creates an empty picture that is ready to record.
39 public Picture() {
44 * Create a picture by making a copy of what has already been recorded in
46 * changes will not be reflected in this picture
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comdef.h 199 #if !defined(Picture)
200 struct Picture : IPictureDisp {};
202 _COM_SMARTPTR_TYPEDEF(Picture,__uuidof(IDispatch));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java 65 // Returns the size for the specified picture. If the size information is
69 // Returns the media item for the specified picture.
72 // Returns the rotation for the specified picture.
187 // The picture entries, the valid index is from -SCREEN_NAIL_MAX to
189 private final RangeArray<Picture> mPictures =
190 new RangeArray<Picture>(-SCREEN_NAIL_MAX, SCREEN_NAIL_MAX);
218 // model, if we assume the index of current focused picture is 0. So if
429 Picture p = mPictures.get(i);
473 Picture p = mPictures.get(index);
500 Picture p = mPictures.get(i)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
UseCounter.h 490 Picture = 521,
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/21/
android.jar 

Completed in 911 milliseconds

1 2