Searched defs:height (Results 76 - 100 of 393) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java79 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
80 GLES20.glViewport(0, 0, width, height);
/frameworks/support/v4/java/android/support/v4/widget/
H A DEdgeEffectCompat.java46 public void setSize(Object edgeEffect, int width, int height); argument
63 public void setSize(Object edgeEffect, int width, int height) { argument
95 public void setSize(Object edgeEffect, int width, int height) { argument
96 EdgeEffectCompatIcs.setSize(edgeEffect, width, height);
140 * @param height Effect height in pixels
142 public void setSize(int width, int height) { argument
143 IMPL.setSize(mEdgeEffect, width, height);
211 * 1.f of height.
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dchvr_filter.cpp26 int height,
51 /* Calculate the width and height of the area in blocks (divide by 8) */
53 pp_h = (height >> 3);
23 CombinedHorzVertRingFilter( uint8 *rec, int width, int height, int16 *QP_store, int chr, uint8 *pp_mod) argument
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;
H A Dpost_filter.cpp43 int width, height; local
51 height = video->height;
52 size = (int32)width * height;
75 CombinedHorzVertRingFilter(output, width, height, QP_store, 0, pp_mod);
83 CombinedHorzVertFilter(output, width, height,
88 CombinedHorzVertFilter_NoSoftDeblocking(output, width, height,
94 Deringing_Luma(output, width, height, QP_store,
107 CombinedHorzVertRingFilter(output, (int)(width >> 1), (int)(height >> 1), QP_store, (int) 1, pp_mod);
116 (int)(height >>
176 H263_Deblock(uint8 *rec, int width, int height, int16 *QP_store, uint8 *mode, int chr, int annex_T) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_chroma_hor.s48 height RN 5 label
83 ;// u32 height, : 0xfc
105 LDR height, [sp, #0xfc] ;// height
107 CMP tmp6, height
112 LDR height, [sp, #0xfc] ;// height
115 STMIA sp,{width,height,tmp8,chrPH,tmp2}
122 STMIA sp,{width,height,tmp8,chrPH,tmp2}
124 MLA ref, height, widt
[all...]
H A Dh264bsd_interpolate_chroma_hor_ver.s50 height RN 5 label
84 ;// u32 height, : 0xfc
108 LDR height, [sp, #0xfc] ;// height
111 CMP tmp1, height
116 LDR height, [sp, #0xfc] ;// height
120 STMIA sp,{width,height,tmp1,tmp2,tmp3}
127 STMIA sp,{width,height,tmp1,tmp2,tmp3}
129 MLA ref, height, widt
[all...]
H A Dh264bsd_interpolate_chroma_ver.s47 height RN 5 label
82 ;// u32 height, : 0xfc
103 LDR height, [sp, #0xfc] ;// height
106 CMP tmp1, height
111 LDR height, [sp, #0xfc] ;// height
114 STMIA sp,{width,height,chrPW,tmp1,tmp2}
121 STMIA sp,{width,height,chrPW,tmp1,tmp2}
123 MLA ref, height, widt
[all...]
H A Dh264bsd_interpolate_hor_ver_quarter.s49 height RN 5 label
110 LDR height, [sp,#0x21c] ;// height
113 CMP tmp5, height
120 LDR height, [sp,#0x21c] ;// height
123 STMIB sp, {height, tmpa} ;// sp+4 = height, sp+8 = partWidth+5
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_conceal.c130 u32 width, height; local
143 height = currImage->height;
176 H264SwDecMemset(currImage->data, 128, width*height*384);
178 H264SwDecMemcpy(currImage->data, refData, width*height*384);
225 for (i = row + 1; i < height; i++)
262 u32 width, height; local
282 ASSERT(row < currImage->height);
288 height = currImage->height;
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h77 int height; member in struct:android::BootAnimation::Animation
/frameworks/base/core/java/android/gesture/
H A DGesture.java142 public Path toPath(int width, int height, int edge, int numSample) { argument
143 return toPath(null, width, height, edge, numSample);
146 public Path toPath(Path path, int width, int height, int edge, int numSample) { argument
153 path.addPath(strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample));
179 * @param height height of the target bitmap
185 public Bitmap toBitmap(int width, int height, int edge, int numSample, int color) { argument
186 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
204 Path path = strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample);
215 * @param height
220 toBitmap(int width, int height, int inset, int color) argument
[all...]
H A DGestureStroke.java156 * @param height the height of the bounding box of the target path
161 public Path toPath(float width, float height, int numSample) { argument
168 float sy = height / rect.height();
/frameworks/base/core/java/android/view/
H A DHardwareLayer.java34 * Indicates an unknown dimension (width or height.)
56 * @param height The minimum height of the layer
59 HardwareLayer(int width, int height, boolean isOpaque) { argument
61 mHeight = height;
83 * Returns the minimum height of the layer.
85 * @return The minimum desired height of the hardware layer
137 * @param height The new desired minimum height for this layer
140 abstract boolean resize(int width, int height); argument
186 update(int width, int height, boolean isOpaque) argument
[all...]
H A DSurfaceHolder.java90 * @param height The new height of the surface.
93 int height);
162 * @param height The surface's height.
164 public void setFixedSize(int width, int height); argument
92 surfaceChanged(SurfaceHolder holder, int format, int width, int height) argument
/frameworks/base/core/java/android/view/animation/
H A DRotateAnimation.java178 public void initialize(int width, int height, int parentWidth, int parentHeight) { argument
179 super.initialize(width, height, parentWidth, parentHeight);
181 mPivotY = resolveSize(mPivotYType, mPivotYValue, height, parentHeight);
H A DTranslateAnimation.java163 public void initialize(int width, int height, int parentWidth, int parentHeight) { argument
164 super.initialize(width, height, parentWidth, parentHeight);
167 mFromYDelta = resolveSize(mFromYType, mFromYValue, height, parentHeight);
168 mToYDelta = resolveSize(mToYType, mToYValue, height, parentHeight);
/frameworks/base/core/java/android/webkit/
H A DViewManager.java43 int height; field in class:ViewManager.ChildView
49 void setBounds(int x, int y, int width, int height) { argument
53 this.height = height;
56 void attachView(int x, int y, int width, int height) { argument
60 setBounds(x, y, width, height);
123 int height = mWebView.contentToViewDimension(v.height);
133 lp.height = height;
[all...]
/frameworks/base/core/java/android/widget/
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/base/graphics/java/android/graphics/
H A DBitmapRegionDecoder.java203 /** Returns the original image's height */
260 int start_x, int start_y, int width, int height,
259 nativeDecodeRegion(int lbm, int start_x, int start_y, int width, int height, BitmapFactory.Options options) argument
H A DYuvImage.java28 * region by left, top, width and height.
61 * The height of the the image.
72 * @param height The height of the YuvImage.
76 * @throws IllegalArgumentException if format is not support; width or height <= 0; or yuv is
79 public YuvImage(byte[] yuv, int format, int width, int height, int[] strides) { argument
87 if (width <= 0 || height <= 0) {
89 "width and height must large than 0");
105 mHeight = height;
142 rectangle.height(), offset
237 nativeCompressToJpeg(byte[] oriYuv, int format, int width, int height, int[] offsets, int[] strides, int quality, OutputStream stream, byte[] tempStorage) argument
[all...]
/frameworks/base/libs/hwui/
H A DFontRenderer.h68 width(dropShadow.width), height(dropShadow.height),
74 uint32_t height; member in struct:android::uirenderer::FontRenderer::DropShadow
113 CacheTexture* createCacheTexture(int width, int height, bool allocate);
180 int32_t width, int32_t height);
182 int32_t width, int32_t height);
183 static void blurImage(uint8_t* image, int32_t width, int32_t height, int32_t radius);
H A DRect.h58 inline Rect(float width, float height): argument
62 bottom(height) {
H A DShapeCache.cpp32 PathTexture* RoundRectShapeCache::getRoundRect(float width, float height, argument
34 RoundRectShapeCacheEntry entry(width, height, rx, ry, paint);
40 r.set(0.0f, 0.0f, width, height);
79 PathTexture* OvalShapeCache::getOval(float width, float height, SkPaint* paint) { argument
80 OvalShapeCacheEntry entry(width, height, paint);
86 r.set(0.0f, 0.0f, width, height);
103 PathTexture* RectShapeCache::getRect(float width, float height, SkPaint* paint) { argument
104 RectShapeCacheEntry entry(width, height, paint);
109 bounds.set(0.0f, 0.0f, width, height);
144 PathTexture* ArcShapeCache::getArc(float width, float height, argument
[all...]
H A DTexture.h114 uint32_t height; member in struct:android::uirenderer::Texture

Completed in 6616 milliseconds

1234567891011>>