Searched refs:height (Results 201 - 225 of 757) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/view/
H A DViewStubTest.java82 assertEquals("Both stub and inflated should same height",
83 stub.getLayoutParams().height, swapped.getLayoutParams().height);
/frameworks/base/graphics/java/android/graphics/
H A DPicture.java65 public Canvas beginRecording(int width, int height) { argument
66 int ni = nativeBeginRecording(mNativePicture, width, height);
91 * Get the height of the picture as passed to beginRecording. This
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DFilterGraphEffect.java87 public void apply(int inputTexId, int width, int height, int outputTexId) { argument
93 src.setInputValue("height", height);
/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/native/opengl/tests/testFramerate/src/com/android/testframerate/
H A DTestFramerateView.java83 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
84 GLES20.glViewport(0, 0, width, height);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DBlur25G.java63 int height = mInPixelsAllocation.getType().getY();
67 tb.setY(height);
H A DGrain.java60 int height = mInPixelsAllocation.getType().getY();
63 int noiseH = findHighBit(height);
H A DMandelbrot.java84 int height = mOutPixelsAllocation.getType().getY();
88 mScript.set_gDimY(height);
H A Dthreshold.fs20 int height;
81 if ((y > radius) && (y < (height - radius))) {
88 int validH = rsClamp((int)y + r, (int)0, (int)(height - 1));
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DBlur25G.java59 int height = mInPixelsAllocation.getType().getY();
63 tb.setY(height);
H A DGrain.java55 int height = mInPixelsAllocation.getType().getY();
58 int noiseH = findHighBit(height);
H A DMandelbrot.java78 int height = mOutPixelsAllocation.getType().getY();
82 mScript.set_gDimY(height);
H A Dthreshold.fs20 int height;
81 if ((y > radius) && (y < (height - radius))) {
88 int validH = rsClamp((int)y + r, (int)0, (int)(height - 1));
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DGrain.java60 int height = mInPixelsAllocation.getType().getY();
63 int noiseH = findHighBit(height);
H A DMandelbrot.java84 int height = mOutPixelsAllocation.getType().getY();
88 mScript.set_gDimY(height);
H A Dthreshold.fs20 int height;
81 if ((y > radius) && (y < (height - radius))) {
88 int validH = rsClamp((int)y + r, (int)0, (int)(height - 1));
/frameworks/base/core/java/android/webkit/
H A DAutoCompletePopup.java142 int height = bottom - top;
148 lp = new AbsoluteLayout.LayoutParams(width, height, left, top);
151 || (lp.height != height)) {
156 lp.height = height;
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp75 int width, height; local
85 if (!decoder->buildTileIndex(stream, &width, &height)) {
93 SkBitmapRegionDecoder *bm = new SkBitmapRegionDecoder(decoder, stream, width, height);
184 int start_x, int start_y, int width, int height, jobject options) {
223 region.fBottom = start_y + height;
243 env->SetIntField(options, gOptions_heightFieldID, bitmap->height());
183 nativeDecodeRegion(JNIEnv* env, jobject, SkBitmapRegionDecoder *brd, int start_x, int start_y, int width, int height, jobject options) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DShaderProgram.java184 public void setSourceRect(float x, float y, float width, float height) { argument
185 setSourceRegion(x, y, x + width, y, x, y + height, x + width, y + height);
188 public void setTargetRect(float x, float y, float width, float height) { argument
189 setTargetRegion(x, y, x + width, y, x, y + height, x + width, y + height);
/frameworks/base/services/java/com/android/server/display/
H A DLogicalDisplay.java209 mBaseDisplayInfo.appHeight = deviceInfo.height;
211 mBaseDisplayInfo.logicalHeight = deviceInfo.height;
218 mBaseDisplayInfo.smallestNominalAppHeight = deviceInfo.height;
220 mBaseDisplayInfo.largestNominalAppHeight = deviceInfo.height;
276 int physWidth = rotated ? displayDeviceInfo.height : displayDeviceInfo.width;
277 int physHeight = rotated ? displayDeviceInfo.width : displayDeviceInfo.height;
279 // Determine whether the width or height is more constrained to be scaled.
/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp83 void init_scene(int width, int height) argument
93 float ratio = width / height;
94 glViewport(0, 0, width, height);
138 JNIEXPORT void JNICALL Java_com_android_gljni_GLJNILib_init(JNIEnv * env, jobject obj, jint width, jint height);
143 JNIEXPORT void JNICALL Java_com_android_gljni_GLJNILib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
145 init_scene(width, height);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DIconLoader.java237 int height = data[valueIndex++] & 0xFF;
238 int numOfPixels = width*height;
257 return Bitmap.createBitmap(pixels, width, height, Bitmap.Config.ARGB_8888);
288 int height = data[valueIndex++] & 0xFF;
296 int numOfPixels = width * height;
319 return Bitmap.createBitmap(pixels, width, height,
/frameworks/wilhelm/src/itf/
H A DI3DMacroscopic.c23 SLmillimeter width, SLmillimeter height, SLmillimeter depth)
28 (0 <= height) && (height <= SL_MILLIMETER_MAX) &&
35 thiz->mSize.mHeight = height;
56 SLmillimeter height = thiz->mSize.mHeight; local
60 *pHeight = height;
22 I3DMacroscopic_SetSize(SL3DMacroscopicItf self, SLmillimeter width, SLmillimeter height, SLmillimeter depth) argument
/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/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java83 * or after it may need to be invalidated. e.g. if the item's height or the number
138 public int height; field in class:StaggeredGridView.LayoutRecord
182 String result = "LayoutRecord{c=" + column + ", id=" + id + " h=" + height +
468 final int height = getHeight();
470 final int clearBelow = height + mItemMargin;
626 Log.e(TAG, "onMeasure: must have an exact height or match_parent! " +
650 final int height = b - t;
651 mTopEdge.setSize(width, height);
652 mBottomEdge.setSize(width, height);
781 if (lp.height
1415 LayoutParams(int height) argument
[all...]

Completed in 672 milliseconds

1234567891011>>