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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/GlobalTime/src/com/android/globaltime/
Texture.java 24 private int width, height; field in class:Texture
26 public Texture(ByteBuffer data, int width, int height) {
28 this.width = width;
37 return width;
  /external/webkit/WebCore/html/
ImageData.cpp 34 PassRefPtr<ImageData> ImageData::create(unsigned width, unsigned height)
36 return adoptRef(new ImageData(width, height));
39 ImageData::ImageData(unsigned width, unsigned height)
40 : m_width(width)
42 , m_data(CanvasPixelArray::create(width * height * 4))
TextMetrics.idl 29 readonly attribute float width;
  /dalvik/dx/tests/008-field/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/009-method/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/010-class-attrib-InnerClasses/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/011-class-attrib-Synthetic/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/012-class-attrib-SourceFile/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/013-class-attrib-Deprecated/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/014-field-attrib-ConstantValue/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/015-field-attrib-Synthetic/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/016-field-attrib-Deprecated/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/025-class-attrib-Signature/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/026-field-attrib-Signature/
run 17 dx --debug --dump --width=200 small-class.txt
  /external/webkit/WebKit/chromium/public/
WebSize.h 45 int width; member in struct:WebKit::WebSize
48 bool isEmpty() const { return width <= 0 || height <= 0; }
51 : width(0)
56 WebSize(int width, int height)
57 : width(width)
64 : width(s.width())
71 width = s.width();
    [all...]
WebRect.h 47 int width; member in struct:WebKit::WebRect
50 bool isEmpty() const { return width <= 0 || height <= 0; }
55 , width(0)
60 WebRect(int x, int y, int width, int height)
63 , width(width)
72 , width(r.width())
81 width = r.width();
    [all...]
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
MagicSmoke.java 22 protected MagicSmokeRS createScene(int width, int height) {
23 return new MagicSmokeRS(this, width, height);
  /external/webkit/WebCore/platform/haiku/
FileChooserHaiku.cpp 31 String FileChooser::basenameForWidth(const Font&, int width) const
  /external/webkit/WebCore/platform/wx/
FileChooserWx.cpp 33 String FileChooser::basenameForWidth(const Font&, int width) const
  /frameworks/base/awt/java/awt/
Dimension.java 30 * The Dimension represents the size (width and height) of a component. The
31 * width and height values can be negative, but in that case the behavior of
44 * The width dimension.
46 public int width; field in class:Dimension
62 this(d.width, d.height);
66 * Instantiates a new Dimension with zero width and height.
73 * Instantiates a new Dimension with the specified width and height.
75 * @param width
76 * the width of the new Dimension.
80 public Dimension(int width, int height)
    [all...]
DisplayMode.java 25 * The DisplayMode class contains the bit depth, height, width and refresh rate
33 * The width.
35 private final int width; field in class:DisplayMode
66 * @param width
67 * the width of the display.
76 public DisplayMode(int width, int height, int bitDepth, int refreshRate) {
77 this.width = width;
119 if (dm.width != width) {
    [all...]
  /ndk/samples/hello-neon/jni/
helloneon-intrinsics.h 20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize);
  /packages/apps/Mms/src/com/android/mms/ui/
AdaptableSlideViewInterface.java 27 void setTextRegion(int left, int top, int width, int height);
31 void setImageRegion(int left, int top, int width, int height);
35 void setVideoRegion(int left, int top, int width, int height);
43 void onSizeChanged(int width, int height);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
Shape.java 33 * Returns the width of the Shape.
61 * @param width the width of the shape (in pixels)
64 public final void resize(float width, float height) {
65 if (width < 0) {
66 width = 0;
71 if (mWidth != width || mHeight != height) {
72 mWidth = width;
74 onResize(width, height);
91 * @param width the new width of the Shap
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
mb_utils.cpp 25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width)
42 comp += width;
43 prev += width;
53 comp += width;
54 prev += width;
64 comp += width;
65 prev += width;
74 comp += width;
75 prev += width;
86 void PutSKIPPED_B(uint8 *comp, uint8 *prev, int width)
    [all...]

Completed in 806 milliseconds

1 2 3 4 5 6 7 8 91011>>