Searched defs:height (Results 1 - 25 of 319) sorted by relevance

1234567891011>>

/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_image.h49 u32 height; member in struct:__anon873
/frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNILib.java29 * @param height the current view height
31 public static native void init(int width, int height); argument
/frameworks/base/opengl/tests/gl_jni/src/com/android/gljni/
H A DGLJNILib.java29 * @param height the current view height
31 public static native void init(int width, int height); argument
H A DGLJNIView.java75 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
76 GLJNILib.init(width, height);
/frameworks/base/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfLib.java29 * @param height the current view height
31 public static native void init(int width, int height); argument
/frameworks/base/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualLib.java29 * @param height the current view height
31 public static native void init(int width, int height); argument
/frameworks/base/core/java/android/gesture/
H A DOrientedBoundingBox.java29 public final float height; field in class:OrientedBoundingBox
39 height = h;
59 point[1] = height / 2;
67 point[1] = -height / 2;
72 point[1] = -height / 2;
77 point[1] = height / 2;
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DRectShape.java43 protected void onResize(float width, float height) { argument
44 mRect.set(0, 0, width, height);
H A DPathShape.java44 * @param stdHeight the standard height for the shape. Any changes to the
45 * height with resize() will result in a height scaled based
46 * on the new height divided by this height.
63 protected void onResize(float width, float height) { argument
65 mScaleY = height / mStdHeight;
H A DShape.java40 * 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) { argument
68 if (height < 0) {
69 height =0;
71 if (mWidth != width || mHeight != height) {
73 mHeight = height;
74 onResize(width, height);
92 * @param height th
94 onResize(float width, float height) argument
[all...]
/frameworks/base/include/ui/
H A DVirtualKeyMap.h39 int32_t height; member in struct:android::VirtualKeyDefinition
/frameworks/base/native/include/android/
H A Dnative_window.h43 int32_t height; member in struct:ANativeWindow_Buffer
77 * Return the current height in pixels of the window surface. Returns a
91 * The width and height control the number of pixels in the buffers, not the
99 * width and height must be either both zero or both non-zero.
103 int32_t width, int32_t height, int32_t format);
H A Dbitmap.h42 uint32_t height; member in struct:__anon960
/frameworks/base/opengl/tests/testPauseResume/src/com/android/test/
H A DTestView.java75 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGetBitmapActivity.java81 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
94 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
/frameworks/base/core/java/android/view/
H A DGLES20Layer.java32 GLES20Layer(int width, int height, boolean opaque) { argument
33 super(width, height, opaque);
51 void update(int width, int height, boolean isOpaque) { argument
52 super.update(width, height, isOpaque);
H A DGLES20RenderLayer.java33 GLES20RenderLayer(int width, int height, boolean isOpaque) { argument
34 super(width, height, isOpaque);
37 mLayer = GLES20Canvas.nCreateLayer(width, height, isOpaque, layerInfo);
56 void resize(int width, int height) { argument
57 if (!isValid() || width <= 0 || height <= 0) return;
60 mHeight = height;
62 if (width != mLayerWidth || height != mLayerHeight) {
65 GLES20Canvas.nResizeLayer(mLayer, width, height, layerInfo);
H A DGLES20TextureLayer.java50 void resize(int width, int height) { argument
75 void update(int width, int height, boolean isOpaque) { argument
76 super.update(width, height, isOpaque);
77 GLES20Canvas.nUpdateTextureLayer(mLayer, width, height, isOpaque, mSurface);
/frameworks/base/include/media/stagefright/
H A DYUVImage.h56 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height);
60 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
68 static size_t bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height);
71 int32_t height() const {return mHeight;} function in class:android::YUVImage
73 // Returns true if pixel is the range [0, width-1] x [0, height-1]
78 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
84 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
147 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
167 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
/frameworks/base/libs/rs/driver/
H A DrsdFrameBufferObj.h38 void setDimensions(uint32_t width, uint32_t height) { argument
40 mHeight = height;
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dget_pred_outside.cpp36 height = height of the VOP in pixels (y axis); full-pel resolution;
247 int height, /* i */
268 if (ypos > ((height - 1) << 1)) ypos = (height - 1) << 1;
301 else if ((ypos >> 1) < (height - B_SIZE)) /* pad left of frame */
332 prev = c_prev + width * (height - 8);
350 ptr = pred + 8 + (((ypos >> 1) - (height - 8)) << 4) + (xpos >> 1);
399 prev = c_prev + width * (height - 8) + (xpos >> 1) - xoffset;
419 ptr = pred + (((ypos >> 1) - (height
241 GetPredOutside( int xpos, int ypos, uint8 *c_prev, uint8 *pred_block, int width, int height, int rnd1, int pred_width ) argument
[all...]
H A Dpp_semaphore_chroma_inter.cpp32 height = luminance VOP height in pixels (int)
119 int height, /* i */
160 else if (nmvy > (height >> 4) - 1)
162 nmvy = (height >> 4) - 1;
176 if (((dy&0xF) != 0) && (mmvy + 1 < (height >> 4) - 1))
111 pp_semaphore_chroma_inter( int xpred, int ypred, uint8 *pp_dec_u, uint8 *pstprcTypPrv, int dx, int dy, int mvwidth, int height, int32 size, int mv_loc, uint8 msk_deblock ) argument
/frameworks/base/media/libstagefright/rtsp/
H A Drtp_test.cpp200 int32_t width, height; local
202 CHECK(decoder->getFormat()->findInt32(kKeyHeight, &height));
203 printf("INFO_FORMAT_CHANGED %d x %d\n", width, height);
/frameworks/base/opengl/java/android/opengl/
H A DTexture.java33 private int width, height, bpp; field in class:Texture
42 // height
46 // pixel (width - 1, height - 1)
54 this.height = readInt16(is);
57 int npixels = width*height;
90 int width, int height,
114 width, height,
128 width, height,
85 loadTexture(GL10 gl, int textureUnit, int minFilter, int magFilter, int wrapS, int wrapT, int mode, int width, int height, int dataType, Buffer data) argument
/frameworks/base/opengl/tests/gl_perfapp/jni/
H A Dgl_code.cpp21 // Width and height of the screen
62 JNIEXPORT void JNICALL Java_com_android_glperf_GLPerfLib_init(JNIEnv * env, jobject obj, jint width, jint height);
66 JNIEXPORT void JNICALL Java_com_android_glperf_GLPerfLib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
69 gHeight = height;

Completed in 5858 milliseconds

1234567891011>>