HomeSort by relevance Sort by last modified time
    Searched defs:mHeight (Results 76 - 100 of 240) sorted by null

1 2 34 5 6 7 8 910

  /frameworks/base/media/java/android/media/videoeditor/
TransitionAlpha.java 58 private int mHeight;
105 mHeight = dbo.outHeight;
131 while (tmp < mHeight) {
164 return mHeight;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
CropRectFilter.java 56 private int mHeight = 0;
88 updateSourceRect(mWidth, mHeight);
110 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
126 mHeight = height;
129 Log.e("CropFilter", mWidth + ", " + mHeight + ", " +
131 (float) mYorigin / mHeight + ", " +
133 (float) mOutputHeight / mHeight);
137 (float) mYorigin / mHeight,
139 (float) mOutputHeight / mHeight);
FisheyeFilter.java 55 private int mHeight = 0;
121 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
144 mHeight = height;
152 if (mWidth > mHeight) {
154 scale[1] = ((float) mHeight) / mWidth;
156 scale[0] = ((float) mWidth) / mHeight;
RotateFilter.java 50 private int mHeight = 0;
100 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
102 mHeight = inputFormat.getHeight();
104 mOutputHeight = mHeight;
138 mOutputWidth = mHeight;
SharpenFilter.java 44 private int mHeight = 0;
118 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
134 mHeight = height;
138 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
StraightenFilter.java 53 private int mHeight = 0;
102 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
104 mHeight = inputFormat.getHeight();
128 Point p0 = new Point(-cosTheta * mWidth + sinTheta * mHeight,
129 -sinTheta * mWidth - cosTheta * mHeight);
131 Point p1 = new Point(cosTheta * mWidth + sinTheta * mHeight,
132 sinTheta * mWidth - cosTheta * mHeight);
134 Point p2 = new Point(-cosTheta * mWidth - sinTheta * mHeight,
135 -sinTheta * mWidth + cosTheta * mHeight);
137 Point p3 = new Point(cosTheta * mWidth - sinTheta * mHeight,
    [all...]
VignetteFilter.java 42 private int mHeight = 0;
98 if (mWidth > mHeight) {
100 scale[1] = ((float) mHeight) / mWidth;
102 scale[0] = ((float) mWidth) / mHeight;
140 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
142 mHeight = inputFormat.getHeight();
  /frameworks/native/services/surfaceflinger/tests/
Transaction_test.cpp 82 mHeight(h),
87 const uint32_t mHeight;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
GroupTest.java 39 private int mHeight;
49 mHeight = mInPixelsAllocation.getType().getY();
68 tb.setY(mHeight);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
GroupTest.java 32 private int mHeight;
42 mHeight = mInPixelsAllocation.getType().getY();
61 tb.setY(mHeight);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
GroupTest.java 39 private int mHeight;
49 mHeight = mInPixelsAllocation.getType().getY();
68 tb.setY(mHeight);
  /hardware/qcom/camera/QCamera2/HAL/
QCameraMem.h 174 int mWidth, mHeight, mFormat;
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3Channel.h 164 uint32_t mWidth, mHeight;
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 41 private int mHeight;
55 mHeight = 0;
64 mHeight = Math.max(mHeight, drawable.getIntrinsicHeight());
95 setMeasuredDimension(mWidth, mHeight);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
JPEGInputStream.java 33 private int mHeight = 0;
64 return new Point(mWidth, mHeight);
177 mHeight = dimens.y;
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationOverlayItem.java 32 private int mHeight; // in px
87 return mHeight;
98 if (mHeight != h) {
99 mHeight = h;
  /cts/tests/tests/graphics2/src/android/graphics2/cts/
TextureViewCameraActivity.java 46 private int mHeight;
57 mHeight = height;
83 mHeight = height;
96 Assert.assertEquals(mHeight, bitmap.getHeight());
105 transformMatrix.setRotate(mRotation, mWidth/2, mHeight/2);
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererOneColorBufferTest.java 38 private int mHeight;
211 GLES20.glReadPixels(mWidth/2, mHeight/2, 1, 1, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE,
219 Log.i(TAG, "w " + mWidth + " h " + mHeight + " rgba" + r + " " + g + " " + b + " " + a);
233 mHeight = height;
235 GLES20.glViewport(0, 0, mWidth, mHeight);
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
TextureTestRenderer.java 63 private int mHeight;
122 gl.glReadPixels(mWidth / 2, mHeight / 2, 1, 1, GL10.GL_RGBA,
134 mHeight = height;
  /external/replicaisland/src/com/replica/replicaisland/
DrawableBitmap.java 29 private int mHeight;
39 mHeight = height;
112 final float height = mHeight;
163 mHeight = height;
176 return mHeight;
180 mHeight = height;
220 || position.y + mHeight < 0 || position.y > mViewHeight) {
229 vertFlip ? 0 : mHeight,
231 vertFlip ? -mHeight : mHeight);
    [all...]
SpriteComponent.java 30 private int mHeight;
44 mHeight = height;
60 mHeight = 0;
112 bitmap.setHeight(mHeight);
174 return mHeight;
179 mHeight = height;
  /frameworks/av/cmds/stagefright/
recordvideo.cpp 56 mHeight(height),
68 meta->setInt32(kKeyHeight, mHeight);
118 int mWidth, mHeight;
  /frameworks/av/libvideoeditor/lvpp/
NativeWindowRenderer.h 169 int mWidth, mHeight;
  /frameworks/av/services/camera/libcameraservice/device2/
Camera2Device.h 208 uint32_t getHeight() const { return mHeight; }
228 uint32_t mHeight;
293 uint32_t getHeight() const { return mHeight; }
322 uint32_t mHeight;
  /frameworks/base/core/java/android/view/
GraphicBuffer.java 55 private final int mHeight;
92 mHeight = height;
109 return mHeight;
261 dest.writeInt(mHeight);

Completed in 5193 milliseconds

1 2 34 5 6 7 8 910