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

1 2

  /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...]
  /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));
  /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...]
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
xfixesproto.h 65 #define Picture CARD32
241 Picture picture B32;
377 Picture picture B32;
594 #undef Picture
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java 64 // Returns the size for the specified picture. If the size information is
68 // Returns the media item for the specified picture.
71 // Returns the rotation for the specified picture.
186 // The picture entries, the valid index is from -SCREEN_NAIL_MAX to
188 private final RangeArray<Picture> mPictures =
189 new RangeArray<Picture>(-SCREEN_NAIL_MAX, SCREEN_NAIL_MAX);
217 // model, if we assume the index of current focused picture is 0. So if
428 Picture p = mPictures.get(i);
472 Picture p = mPictures.get(index);
499 Picture p = mPictures.get(i)
    [all...]
  /external/pdfium/xfa/fxfa/
fxfa_basic.h 762 Picture,
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /external/robolectric/v1/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 379 milliseconds

1 2