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

1 2 3

  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
StatusBar.java 30 import android.graphics.drawable.Drawable;
107 Drawable.createFromXml(mContext.getResources(), parser));
  /hardware/intel/img/psb_video/src/
psb_output.h 45 #define Drawable unsigned int
216 void* draw, /* X Drawable */
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DrawableTest.java 17 package android.graphics.drawable.cts;
36 import android.graphics.drawable.Drawable;
37 import android.graphics.drawable.Drawable.Callback;
83 Drawable mockDrawable = new MockDrawable();
97 Drawable mockDrawable = new MockDrawable();
145 assertNull(Drawable.createFromPath(null));
149 assertNull(Drawable.createFromPath(uri.getPath()));
158 assertNotNull(Drawable.createFromPath(u.toString()))
316 Drawable drawable = Drawable.createFromXml(mResources, parser); local
329 Drawable drawable = Drawable.createFromXml(mResources, parser, theme); local
344 Drawable drawable = Drawable.createFromXmlInner(mResources, parser, attrs); local
361 Drawable drawable = Drawable.createFromXmlInner(mResources, parser, attrs, theme); local
    [all...]
ScaleDrawableTest.java 17 package android.graphics.drawable.cts;
46 import android.graphics.drawable.BitmapDrawable;
47 import android.graphics.drawable.ColorDrawable;
48 import android.graphics.drawable.Drawable;
49 import android.graphics.drawable.Drawable.ConstantState;
50 import android.graphics.drawable.ScaleDrawable;
79 Drawable d = new BitmapDrawable();
92 Drawable.Callback callback = mock(Drawable.Callback.class)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
shmproto.h 35 #define Drawable CARD32
96 Drawable drawable B32;
119 Drawable drawable B32;
153 Drawable drawable B32;
169 Drawable drawable B32;
182 #undef Drawable
    [all...]
multibufproto.h 35 #define Drawable CARD32
227 Drawable drawable B32;
291 #undef Drawable
xfixesproto.h 54 #define Drawable CARD32
539 #undef Drawable
lbxproto.h 91 #define Drawable CARD32
553 Drawable drawable B32;
630 CARD8 srcCache; /* source drawable */
631 CARD8 cacheEnts; /* dest drawable and gc */
642 CARD8 srcCache; /* source drawable */
643 CARD8 cacheEnts; /* dest drawable and gc */
971 #undef Drawable
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
shmproto.h 35 #define Drawable CARD32
96 Drawable drawable B32;
119 Drawable drawable B32;
153 Drawable drawable B32;
169 Drawable drawable B32;
182 #undef Drawable
    [all...]
multibufproto.h 35 #define Drawable CARD32
227 Drawable drawable B32;
291 #undef Drawable
syncproto.h 84 #define Drawable CARD32
354 Drawable d B32;
471 #undef Drawable
xfixesproto.h 54 #define Drawable CARD32
596 #undef Drawable
lbxproto.h 91 #define Drawable CARD32
553 Drawable drawable B32;
630 CARD8 srcCache; /* source drawable */
631 CARD8 cacheEnts; /* dest drawable and gc */
642 CARD8 srcCache; /* source drawable */
643 CARD8 cacheEnts; /* dest drawable and gc */
971 #undef Drawable
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeEffect.java 32 // (3) Use a private Drawable class (which inherits from ResourceTexture)
33 // instead of android.graphics.drawable.Drawable to hold the images.
34 // The private Drawable class is used to translate original Canvas calls to
84 private final Drawable mEdge;
85 private final Drawable mGlow;
137 mEdge = new Drawable(context, R.drawable.overscroll_edge);
138 mGlow = new Drawable(context, R.drawable.overscroll_glow)
    [all...]
  /external/ImageMagick/Magick++/lib/
Drawable.cpp 6 // Implementation of Drawable (Graphic objects)
17 #include "Magick++/Drawable.h"
79 /* Drawable */
80 Magick::Drawable::Drawable(void)
85 Magick::Drawable::Drawable(const Magick::DrawableBase& original_)
90 Magick::Drawable::~Drawable(void)
96 Magick::Drawable::Drawable(const Magick::Drawable& original_
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java 17 package android.graphics.drawable;
64 * A Drawable is a general abstraction for "something that can be drawn." Most
65 * often you will deal with Drawable as the type of resource retrieved for
66 * drawing things to the screen; the Drawable class provides a generic API for
68 * Unlike a {@link android.view.View}, a Drawable does not have any facility to
71 * <p>In addition to simple drawing, Drawable provides a number of generic
76 * Drawable where it is drawn and how large it should be. All Drawables
83 * For example, a Drawable that is intended to be the frame for a button
87 * <li> The {@link #setState} method allows the client to tell the Drawable
92 * continuous controller that can modify the Drawable is displayed, such a
1254 Drawable drawable = createFromXmlInnerForDensity(r, parser, attrs, density, theme); local
    [all...]
VectorDrawable.java 15 package android.graphics.drawable;
62 * This lets you create a drawable based on an XML vector graphic.
72 * The vector drawable has the following elements:
76 * <dd>Used to define a vector drawable
79 * <dd>Defines the name of this vector drawable.</dd>
81 * <dd>Used to define the intrinsic width of the drawable.
84 * <dd>Used to define the intrinsic height the drawable.
93 * <dd>The color to apply to the drawable as a tint. By default, no tint is applied.</dd>
97 * <dd>Indicates if the drawable needs to be mirrored when its layout direction is
100 * <dd>The opacity of this drawable. Default is 1.0.</dd
592 final VectorDrawable drawable = new VectorDrawable(); local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 55 * This allows for drawing through {@link #draw(Drawable, Paint_Delegate, boolean, boolean)} and
56 * {@link #draw(Drawable)}
86 public interface Drawable {
561 * Executes the Drawable's draw method, with a null paint delegate.
565 public void draw(Drawable drawable) {
566 draw(drawable, null, false /*compositeOnly*/, false /*forceSrcMode*/);
570 * Executes the Drawable's draw method.
577 public void draw(Drawable drawable, Paint_Delegate paint, boolean compositeOnly
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
Drawable.h 6 // Definition of Drawable (Graphic objects)
15 // not using <vector> as part of the Drawable implementation.
95 // Base class for all drawable objects
116 // Representation of a drawable surrogate object to manage drawable objects
118 #undef Drawable // Conflict with <X11/Xproto.h>
119 class MagickPPExport Drawable
124 Drawable(void);
127 Drawable(const DrawableBase& original_);
130 ~Drawable(void)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
X.h 97 typedef XID Drawable;
607 #define XYPixmap 1 /* depth == drawable depth */
608 #define ZPixmap 2 /* depth == drawable depth */
Xproto.h 241 #define Drawable CARD32
1036 Drawable drawable B32;
1045 Drawable drawable B32;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
X.h 97 typedef XID Drawable;
607 #define XYPixmap 1 /* depth == drawable depth */
608 #define ZPixmap 2 /* depth == drawable depth */
Xproto.h 241 #define Drawable CARD32
1036 Drawable drawable B32;
1045 Drawable drawable B32;
    [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 904 milliseconds

1 2 3