Searched refs:height (Results 251 - 275 of 757) sorted by relevance

<<11121314151617181920>>

/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES20.spec22 void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data )
23 void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
24 void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
25 void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
94 void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
96 void glRenderbufferStorage ( GLenum target, GLenum internalformat, GLsizei width, GLsizei height )
98 void glScissor ( GLint x, GLint y, GLsizei width, GLsizei height )
107 void glTexImage2D ( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels )
112 void glTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels )
144 void glViewport ( GLint x, GLint y, GLsizei width, GLsizei height )
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItemView.java190 final int height = getHeight();
191 final int midy = screenPos[1] + height / 2;
195 if (midy < displayFrame.height()) {
198 screenWidth - screenPos[0] - width / 2, height);
201 cheatSheet.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, height);
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java673 if (heightMode == MeasureSpec.EXACTLY && lp.height == 0 && lp.weight > 0) {
682 if (lp.height == 0 && lp.weight > 0) {
686 // with a height of 0
688 lp.height = LayoutParams.WRAP_CONTENT;
700 lp.height = oldHeight;
797 // Check against our minimum height
834 if ((lp.height != 0) || (heightMode != MeasureSpec.EXACTLY)) {
934 // Temporarily force children to reuse their old measured height
936 int oldHeight = lp.height;
937 lp.height
1670 setChildFrame(View child, int left, int top, int width, int height) argument
1844 LayoutParams(int width, int height) argument
1859 LayoutParams(int width, int height, float weight) argument
[all...]
H A DAbsoluteLayout.java87 // Check against minimum height and width
98 * a height of {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT}
167 * height and location.
171 * @param height the height, either {@link #MATCH_PARENT},
176 public LayoutParams(int width, int height, int x, int y) { argument
177 super(width, height);
219 + sizeToString(width) + ", height=" + sizeToString(height)
/frameworks/av/media/libstagefright/
H A DJPEGSource.cpp207 uint16_t width, height; local
208 if (!mSource->getUInt16(i + 1, &height)
214 mHeight = height;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h131 int16 height; /* Height */ member in struct:tagVideoRefCopyInfoData
133 int16 realHeight; /* Non-padded height, not a multiple of 16. */
150 OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
151 Bool PVAllocVideoData(VideoDecControls *decCtrl, int width, int height, int nLayers);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dconceal.cpp123 CopyVopMB(video->currVop, video->concealFrame, i, video->width, video->height);
138 void CopyVopMB(Vop *curr, uint8 *prevFrame, int mbnum, int width_Y, int height) argument
152 size = (int32)height * width_Y;
/frameworks/av/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/av/services/camera/libcameraservice/camera3/
H A DCamera3IOStreamBase.cpp33 uint32_t width, uint32_t height, size_t maxSize, int format) :
35 width, height, maxSize, format),
117 camera3_stream::width, camera3_stream::height,
32 Camera3IOStreamBase(int id, camera3_stream_type_t type, uint32_t width, uint32_t height, size_t maxSize, int format) argument
/frameworks/base/core/java/android/view/
H A DSurfaceView.java284 int height = mRequestedHeight >= 0
287 setMeasuredDimension(width, height);
467 mLayout.height = getHeight();
525 mSurfaceFrame.bottom = mWinFrame.height();
529 mSurfaceFrame.bottom = (int) (mWinFrame.height() * appInvertedScale + 0.5f);
610 " w=" + mLayout.width + " h=" + mLayout.height +
653 + " h=" + frame.height() + ", cur w=" + mCurWidth + " h=" + mCurHeight);
661 || surfaceView.mWinFrame.height() != frame.height()) {
718 public void setFixedSize(int width, int height) {
[all...]
H A DTextureView.java63 * public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
74 * public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
397 // parameters are correct (width, height, transform, etc.)
526 * texture is not available or the width &lt;= 0 or the height &lt;= 0
550 * @param height The height of the bitmap to create
553 * texture is not available or width is &lt;= 0 or height is &lt;= 0
559 public Bitmap getBitmap(int width, int height) { argument
560 if (isAvailable() && width > 0 && height > 0) {
562 width, height, Bitma
777 onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) argument
787 onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) argument
811 nSetDefaultBufferSize(SurfaceTexture surfaceTexture, int width, int height) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DScrollViewScenario.java37 * specified amount of the screen height.
54 * to the screen height for its desired height.
63 * Partially implement ViewFactory given a height ratio.
64 * A negative height ratio means that WRAP_CONTENT will be used as height
97 * @param heightRatio The view's height will be this * the screen height.
114 * @param heightRatio The view's height will be this * the screen height
[all...]
/frameworks/base/libs/hwui/font/
H A DFont.cpp142 int height = (int) glyph->mBitmapHeight; local
153 if (bounds->top < nPenY + height) {
154 bounds->top = nPenY + height;
164 float height = (float) glyph->mBitmapHeight; local
173 nPenX + width, nPenY - height, u2, v1,
174 nPenX, nPenY - height, u1, v1, glyph->mCacheTexture);
227 const float height = glyph->mBitmapHeight; local
229 vOffset += glyph->mBitmapTop + height;
242 destination[2].set(destination[1].fX + tangent->fY * height,
243 destination[1].fY - tangent->fX * height);
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
H A DRectangle.java31 public Rectangle(float x, float y, float width, float height) { argument
34 new Point(x, y + height),
35 new Point(x + width, y + height));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettingsContainerView.java65 int height = MeasureSpec.getSize(heightMeasureSpec);
84 int newHeightSpec = MeasureSpec.makeMeasureSpec(lp.height, MeasureSpec.EXACTLY);
87 // Save the cell height
95 // Set the measured dimensions. We always fill the tray width, but wrap to the height of
121 final int childHeight = lp.height;
/frameworks/base/tests/BrowserTestPlugin/jni/event/
H A DEventPlugin.cpp50 inst(), bitmap.width, bitmap.height);
55 const int H = obj->window->height;
59 const float zoomFactorH = static_cast<float>(bitmap.height) / H;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextureViewActivity.java101 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
107 previewSize.width, previewSize.height, Gravity.CENTER));
147 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
/frameworks/native/include/gui/
H A DIGraphicBufferProducer.h100 // and height of the window and current transform applied to buffers,
144 *outHeight = height;
151 height = inHeight;
157 uint32_t height; member in struct:android::IGraphicBufferProducer::QueueBufferOutput
189 // and height of the window and current transform applied to buffers,
/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp152 JNIEXPORT void JNICALL Java_com_android_gl2jni_GL2JNILib_init(JNIEnv * env, jobject obj, jint width, jint height);
156 JNIEXPORT void JNICALL Java_com_android_gl2jni_GL2JNILib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
158 setupGraphics(width, height);
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp152 JNIEXPORT void JNICALL Java_com_android_gldual_GLDualLib_init(JNIEnv * env, jobject obj, jint width, jint height);
156 JNIEXPORT void JNICALL Java_com_android_gldual_GLDualLib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
158 setupGraphics(width, height);
/frameworks/base/libs/hwui/
H A DGradientCache.cpp120 const uint32_t size = texture->width * texture->height * bytesPerPixel();
178 texture->height = 2;
183 const uint32_t size = texture->width * texture->height * bytesPerPixel();
245 uint8_t pixels[rowBytes * texture->height];
294 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16F, width, texture->height, 0,
297 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, texture->height, 0,
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.h54 NativeWindowRenderer(sp<ANativeWindow> nativeWindow, int width, int height);
78 int width, int height);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A Domxtypes.h226 * and height in the y-direction */
231 OMX_INT height; /** Height in the y-direction. */ member in struct:__anon711
248 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon713
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A Domxtypes.h226 * and height in the y-direction */
231 OMX_INT height; /** Height in the y-direction. */ member in struct:__anon755
248 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon757
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
H A Domxtypes.h226 * and height in the y-direction */
231 OMX_INT height; /** Height in the y-direction. */ member in struct:__anon799
248 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon801

Completed in 2144 milliseconds

<<11121314151617181920>>