HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 1 - 25 of 2034) 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) {
29 this.height = height;
41 return height;
  /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)
41 , m_height(height)
42 , m_data(CanvasPixelArray::create(width * height * 4))
ImageData.h 40 static PassRefPtr<ImageData> create(unsigned width, unsigned height);
43 unsigned height() const { return m_height; } function in class:WebCore::ImageData
47 ImageData(unsigned width, unsigned height);
  /external/webkit/WebKit/chromium/public/
WebSize.h 46 int height; member in struct:WebKit::WebSize
48 bool isEmpty() const { return width <= 0 || height <= 0; }
52 , height(0)
56 WebSize(int width, int height)
58 , height(height)
65 , height(s.height())
72 height = s.height();
    [all...]
WebRect.h 48 int height; member in struct:WebKit::WebRect
50 bool isEmpty() const { return width <= 0 || height <= 0; }
56 , height(0)
60 WebRect(int x, int y, int width, int height)
64 , height(height)
73 , height(r.height())
82 height = r.height();
    [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);
  /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 40 * Returns the height of the Shape.
62 * @param height the height of the shape (in pixels)
64 public final void resize(float width, float height) {
68 if (height < 0) {
69 height =0;
71 if (mWidth != width || mHeight != height) {
73 mHeight = height;
74 onResize(width, height);
92 * @param height the new height of the Shap
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
IntSizeQt.cpp 38 , m_height(r.height())
44 return QSize(width(), height());
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyWallpaper.java 22 protected GalaxyRS createScene(int width, int height) {
23 return new GalaxyRS(width, height);
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNILib.java 29 * @param height the current view height
31 public static native void init(int width, int height);
  /frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNILib.java 29 * @param height the current view height
31 public static native void init(int width, int height);
  /frameworks/base/opengl/tests/gldual/src/com/android/gldual/
GLDualLib.java 29 * @param height the current view height
31 public static native void init(int width, int height);
  /external/webkit/WebCore/platform/graphics/
FloatSize.cpp 35 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
39 FloatSize FloatSize::narrowPrecision(double width, double height)
41 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
FloatSize.h 54 FloatSize(float width, float height) : m_width(width), m_height(height) { }
57 static FloatSize narrowPrecision(double width, double height);
60 float height() const { return m_height; } function in class:WebCore::FloatSize
63 void setHeight(float height) { m_height = height; }
97 a.setHeight(a.height() + b.height());
104 a.setHeight(a.height() - b.height());
    [all...]
  /external/webkit/WebCore/platform/
LengthSize.h 34 LengthSize(Length width, Length height)
36 , m_height(height)
48 void setHeight(Length height) { m_height = height; }
49 Length height() const { return m_height; } function in struct:WebCore::LengthSize
  /external/webkit/WebCore/rendering/style/
StyleGeneratedImage.cpp 45 int height = fixedSize.height() * multiplier; local
47 // Don't let images that have a width/height >= 1 shrink below 1 when zoomed.
51 if (fixedSize.height() > 0)
52 height = max(1, height);
54 return IntSize(width, height);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app.h 43 extern void appRender(long tick, int width, int height);
  /development/tools/yuv420sp2rgb/
cmdline.h 8 int *height,
  /external/webkit/WebKit/android/benchmark/
main.cpp 39 int height = 600; local
49 height = atoi(x + 1);
50 LOGD("Rendering page at %dx%d", width, height);
64 android::benchmark(argv[optind], reloadCount, width, height);
  /external/webkit/WebKit/android/plugins/
SurfaceCallback.h 36 virtual void surfaceChanged(int format, int width, int height) = 0;
  /frameworks/base/opengl/tests/angeles/
app.h 43 extern void appRender(long tick, int width, int height);
  /frameworks/base/opengl/tests/gl_jni/src/com/android/gljni/
GLJNILib.java 29 * @param height the current view height
31 public static native void init(int width, int height);
  /external/chromium/base/gfx/
size.cc 19 Size::Size(int width, int height) {
21 set_height(height);
27 set_height(s.height);
32 set_height(s.height);
58 void Size::set_height(int height) {
59 if (height < 0) {
61 height = 0;
63 height_ = height;
69 return out << s.width() << "x" << s.height();
  /external/skia/src/core/
SkBitmap_scroll.cpp 35 int height = this->height(); local
38 if ((dx | dy) == 0 || width <= 0 || height <= 0) {
49 r.set(0, 0, width, height);
80 height += dy;
83 height -= dy;
85 src += (height - 1) * rowBytes;
86 dst += (height - 1) * rowBytes;
100 while (--height >= 0) {

Completed in 477 milliseconds

1 2 3 4 5 6 7 8 91011>>