Searched refs:height (Results 276 - 300 of 685) sorted by relevance

<<11121314151617181920>>

/frameworks/base/libs/hwui/
H A DPatchCache.h53 const uint32_t width, const uint32_t height, const int8_t numColors);
H A DSnapshot.h172 int height; member in class:android::uirenderer::Snapshot
/frameworks/base/services/java/com/android/server/display/
H A DHeadlessDisplayAdapter.java59 mInfo.height = 480;
H A DWifiDisplayAdapter.java276 Surface surface, int width, int height, int flags) {
299 mDisplayDevice = new WifiDisplayDevice(displayToken, name, width, height,
483 int width, int height, int flags) {
486 handleConnectLocked(display, surface, width, height, flags);
526 int width, int height, float refreshRate, int flags, String address,
531 mHeight = height;
559 mInfo.height = mHeight;
275 handleConnectLocked(WifiDisplay display, Surface surface, int width, int height, int flags) argument
525 WifiDisplayDevice(IBinder displayToken, String name, int width, int height, float refreshRate, int flags, String address, Surface surface) argument
/frameworks/base/tests/RenderScriptTests/Fountain_v11/src/com/android/fountain/
H A DFountainRS.java33 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DSurfaceView.java68 public void setFixedSize(int width, int height) {
/frameworks/native/opengl/tests/testViewport/src/com/android/test/
H A DTestView.java236 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
237 gl.glViewport(0, 0, width, height);
240 gl.glOrthof(0, width, height, 0, -1, 1);
242 createGrid(gl, width, height);
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTabStrip.java259 final int height = getHeight();
260 final int bottom = height;
270 canvas.drawRect(getPaddingLeft(), height - mFullUnderlineHeight,
271 getWidth() - getPaddingRight(), height, mTabPaint);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DAutoFixFilter.java272 private void createHistogramFrame(FilterContext context, int width, int height, int[] data) { argument
277 int y_border_thickness = (int) (height * border_thickness_ratio);
279 int pixels = (width - 2 * x_border_thickness) * (height - 2 * y_border_thickness);
282 for (int y = y_border_thickness; y < height - y_border_thickness; ++y) {
/frameworks/base/media/tests/omxjpegdecoder/
H A Domx_jpeg_decoder.h55 int height);
/frameworks/base/core/java/android/widget/
H A DVideoView.java113 int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
115 if ( mVideoWidth * height > width * mVideoHeight ) {
117 height = width * mVideoHeight / mVideoWidth;
118 } else if ( mVideoWidth * height < width * mVideoHeight ) {
120 width = height * mVideoWidth / mVideoHeight;
123 //width+"/"+height+"="+
127 //Log.i("@@@@@@@@@@", "setting size: " + width + 'x' + height);
128 setMeasuredDimension(width, height);
282 public void onVideoSizeChanged(MediaPlayer mp, int width, int height) {
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java168 int internalformat, int width, int height, int border,
172 height, border, imageSize, data);
177 int yoffset, int width, int height, int format, int imageSize,
181 height, format, imageSize, data);
186 int x, int y, int width, int height, int border) {
189 height, border);
194 int yoffset, int x, int y, int width, int height) {
197 height);
663 public void glReadPixels(int x, int y, int width, int height, int format, argument
666 mgl.glReadPixels(x, y, width, height, forma
167 glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, int imageSize, Buffer data) argument
176 glCompressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, Buffer data) argument
185 glCopyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border) argument
193 glCopyTexSubImage2D(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height) argument
706 glScissor(int x, int y, int width, int height) argument
779 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
812 glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, Buffer pixels) argument
840 glViewport(int x, int y, int width, int height) argument
872 glDrawTexfOES(float x, float y, float z, float width, float height) argument
891 glDrawTexiOES(int x, int y, int z, int width, int height) argument
909 glDrawTexsOES(short x, short y, short z, short width, short height) argument
928 glDrawTexxOES(int x, int y, int z, int width, int height) argument
1594 glRenderbufferStorageOES(int target, int internalformat, int width, int height) argument
[all...]
H A DGLES10.java414 // C function void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data )
421 int height,
427 // C function void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data )
435 int height,
441 // C function void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
450 int height,
454 // C function void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
464 int height
1055 // C function void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
1061 int height,
416 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
429 glCompressedTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, java.nio.Buffer data ) argument
443 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
1057 glReadPixels( int x, int y, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
1239 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
1269 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES11Ext.spec4 void glDrawTexsOES ( GLshort x, GLshort y, GLshort z, GLshort width, GLshort height )
5 void glDrawTexiOES ( GLint x, GLint y, GLint z, GLint width, GLint height )
6 void glDrawTexxOES ( GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height )
10 void glDrawTexfOES ( GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height )
57 void glRenderbufferStorageOES ( GLenum target, GLenum internalformat, GLsizei width, GLsizei height )
/frameworks/av/libvideoeditor/vss/inc/
H A DM4xVSS_Internal.h111 /*To support ARGB8888 : get the width and height in case of file ARGB888 used in framing
115 M4OSA_UInt32 height; /*height of the ARGB8888 clip . member in struct:__anon270
152 M4OSA_UInt32 height; /**<GIF height, fill during the member in struct:__anon271
164 M4OSA_UInt32 last_height; /**<Last frame height*/
211 /*To support ARGB8888:width and height */
213 M4OSA_UInt32 height; member in struct:__anon272
499 M4OSA_UInt32 width,M4OSA_UInt32 height);
506 M4OSA_UInt32 width,M4OSA_UInt32 height);
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_hor_half.s47 height RN 5 label
104 LDR height, [sp,#0x21c] ;// height
105 CMP tmp2, height
111 LDR height, [sp,#0x21c] ;// height
114 STMIB sp, {height, tmp4} ;// sp+4 = height, sp+8 = partWidth+5
/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutTest.java65 * Top and bottom padding are affected, as is the line descent and height.
220 public int scale(float height) { argument
221 int altVal = (int)(height * sMult + sAdd + 0.5);
222 int rndVal = Math.round(height * sMult + sAdd);
312 int top, int ascent, int descent, int height) {
317 assertEquals(info, height, l.getLineBottom(line) - top);
311 assertLineMetrics(Layout l, int line, int top, int ascent, int descent, int height) argument
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardSecurityViewFlipper.java213 int height = heightMode == MeasureSpec.EXACTLY ? heightSize : 0;
219 final int childHeightSpec = makeChildMeasureSpec(maxHeight, lp.height);
224 height = Math.max(height, Math.min(child.getMeasuredHeight(), heightSize - hPadding));
226 setMeasuredDimension(width + wPadding, height + hPadding);
/frameworks/native/opengl/libagl/
H A Degl.cpp55 EGLint left, EGLint top, EGLint width, EGLint height);
231 virtual EGLint getHeight() const { return height; }
246 int height; member in struct:android::egl_window_surface_v2_t
356 nativeWindow->query(nativeWindow, NATIVE_WINDOW_HEIGHT, &height);
391 height = buffer->height;
394 depth.height = height;
396 depth.data = (GGLubyte*)malloc(depth.stride*depth.height*2);
409 buffer, buffer->width, buffer->height);
2150 eglSetSwapRectangleANDROID(EGLDisplay dpy, EGLSurface draw, EGLint left, EGLint top, EGLint width, EGLint height) argument
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java1254 public int height; field in class:MediaArtistNativeHelper.EffectSettings
1636 * Height of the video frames or the height of the still picture in
1640 public int height; field in class:MediaArtistNativeHelper.Properties
1980 effectSettings.height = bitmap.getHeight();
1986 while (tmp < effectSettings.height) {
2018 effectSettings.height = overlay.getResizedRGBSizeHeight();
2019 if(effectSettings.height == 0) {
2020 effectSettings.height = bitmap.getHeight();
2045 //For image get the scaled height. Aspect ratio would remain the same
2660 * Checks for odd size image width and height
3529 findVideoResolution(int aspectRatio, int height) argument
3616 export(String filePath, String projectDir, int height, int bitrate, List<MediaItem> mediaItemsList, List<Transition> mediaTransitionList, List<AudioTrack> mediaBGMList, ExportProgressListener listener) argument
3768 getPixels(String filename, int width, int height, long timeMs, int videoRotation) argument
3796 getPixelsList(String filename, final int width, final int height, long startMs, long endMs, int thumbnailCount, int[] indices, final MediaItem.GetThumbnailListCallback callback, final int videoRotation) argument
3976 nativeGetPixels(String fileName, int[] pixelArray, int width, int height, long timeMS) argument
3979 nativeGetPixelsList(String fileName, int[] pixelArray, int width, int height, int nosofTN, long startTimeMs, long endTimeMs, int[] indices, NativeGetPixelsListCallback callback) argument
[all...]
/frameworks/native/libs/gui/tests/
H A DSurfaceTextureClient_test.cpp185 EXPECT_EQ(1, buf->height);
195 EXPECT_EQ(8, buf->height);
205 EXPECT_EQ(1, buf->height);
215 EXPECT_EQ(8, buf->height);
225 EXPECT_EQ(8, buf->height);
231 EXPECT_EQ(1, buf->height);
241 EXPECT_EQ(1, buf->height);
247 EXPECT_EQ(8, buf->height);
258 EXPECT_EQ(8, buf->height);
277 EXPECT_EQ(8, buf[0]->height);
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java352 int height,
364 int height,
377 int height,
389 int height
796 int height,
842 int height
915 int height,
940 int height,
969 int height
347 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
358 glCompressedTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, java.nio.Buffer data ) argument
370 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
792 glReadPixels( int x, int y, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
910 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
934 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java148 lp.height = (int)h;
153 int height = mView.getLayoutParams().height;
154 if (height < 0) {
155 height = mView.getMeasuredHeight();
157 return height;
163 int oldHeight = lp.height;
164 lp.height = ViewGroup.LayoutParams.WRAP_CONTENT;
171 lp.height = oldHeight;
194 mScaleAnimation = ObjectAnimator.ofFloat(mScaler, "height",
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManager.java1111 * The vertical margin, as a percentage of the container's height,
1341 out.writeInt(height);
1382 height = in.readInt();
1447 if (height != o.height) {
1448 height = o.height;
1586 sb.append((height== MATCH_PARENT ?"fill":(height==WRAP_CONTENT?"wrap":height)));
[all...]
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp668 const int h = bitmap.height();
716 const int h = bitmap.height();
880 jint width, jint height) {
881 return etc1_get_encoded_data_size(width, height);
891 jobject in, jint width, jint height,
900 jint imageSize = stride * height;
901 jint encodedImageSize = etc1_get_encoded_data_size(width, height);
908 width, height, pixelSize,
924 jint width, jint height,
933 jint imageSize = stride * height;
879 etc1_getEncodedDataSize(JNIEnv *env, jclass clazz, jint width, jint height) argument
890 etc1_encodeImage(JNIEnv *env, jclass clazz, jobject in, jint width, jint height, jint pixelSize, jint stride, jobject out) argument
922 etc1_decodeImage(JNIEnv *env, jclass clazz, jobject in, jobject out, jint width, jint height, jint pixelSize, jint stride) argument
951 etc1_formatHeader(JNIEnv *env, jclass clazz, jobject header, jint width, jint height) argument
[all...]

Completed in 2417 milliseconds

<<11121314151617181920>>