HomeSort by relevance Sort by last modified time
    Searched refs:mHeight (Results 1 - 25 of 687) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
ListItemObject.java 27 private int mHeight;
33 mHeight = height;
45 return mHeight;
  /frameworks/base/core/java/android/hardware/camera2/params/
InputConfiguration.java 31 private final int mHeight;
51 mHeight = height;
70 return mHeight;
101 otherInputConfig.getHeight() == mHeight &&
113 return HashCodeHelpers.hashCode(mWidth, mHeight, mFormat);
126 return String.format("InputConfiguration(w:%d, h:%d, format:%d)", mWidth, mHeight, mFormat);
HighSpeedVideoConfiguration.java 60 mHeight = checkArgumentPositive(height, "height must be positive");
62 mSize = new Size(mWidth, mHeight);
82 return mHeight;
149 mHeight == other.mHeight &&
162 return HashCodeHelpers.hashCode(mWidth, mHeight, mFpsMin, mFpsMax);
166 private final int mHeight;
StreamConfiguration.java 64 mHeight = checkArgumentPositive(height, "height must be positive");
96 return mHeight;
105 return new Size(mWidth, mHeight);
153 mHeight == other.mHeight &&
164 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0);
169 private final int mHeight;
StreamConfigurationDuration.java 59 mHeight = checkArgumentPositive(height, "height must be positive");
91 return mHeight;
100 return new Size(mWidth, mHeight);
132 mHeight == other.mHeight &&
143 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight,
149 private final int mHeight;
MeteringRectangle.java 77 private final int mHeight;
95 mHeight = checkArgumentNonnegative(height, "height must be nonnegative");
119 mHeight = checkArgumentNonnegative(dimensions.getHeight(), "height must be nonnegative");
140 mHeight = checkArgumentNonnegative(rect.height(), "rect.height must be nonnegative");
177 return mHeight;
206 return new Size(mWidth, mHeight);
217 return new Rect(mX, mY, mX + mWidth, mY + mHeight);
246 && mHeight == other.mHeight
255 return HashCodeHelpers.hashCode(mX, mY, mWidth, mHeight, mWeight)
    [all...]
  /frameworks/support/design/tests/src/android/support/design/testutils/
TestDrawable.java 32 private int mHeight;
37 mHeight = height;
47 return mHeight;
  /packages/apps/Camera2/src/com/android/camera/util/
AspectRatio.java 37 private final int mHeight;
45 mHeight = height;
68 return mHeight;
76 return (float) mWidth / (float) mHeight;
88 if (mHeight != that.mHeight)
98 return Objects.hashCode(mWidth, mHeight);
110 return of(mHeight, mWidth);
153 // this.mHeight other.mHeight
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ColorTexture.java 26 private int mHeight;
31 mHeight = 1;
36 draw(canvas, x, y, mWidth, mHeight);
51 mHeight = height;
61 return mHeight;
FadeTexture.java 32 private final int mHeight;
38 mHeight = height;
46 draw(canvas, x, y, mWidth, mHeight);
61 return mHeight;
  /frameworks/base/core/java/android/util/
Size.java 33 mHeight = height;
49 return mHeight;
74 return mWidth == other.mWidth && mHeight == other.mHeight;
86 return mWidth + "x" + mHeight;
147 return mHeight ^ ((mWidth << (Integer.SIZE / 2)) | (mWidth >>> (Integer.SIZE / 2)));
151 private final int mHeight;
SizeF.java 44 mHeight = checkArgumentFinite(height, "height");
60 return mHeight;
84 return mWidth == other.mWidth && mHeight == other.mHeight;
96 return mWidth + "x" + mHeight;
159 return Float.floatToIntBits(mWidth) ^ Float.floatToIntBits(mHeight);
163 private final float mHeight;
  /frameworks/base/libs/hwui/
RenderBuffer.h 36 mFormat(format), mWidth(width), mHeight(height), mAllocated(false) {
82 glRenderbufferStorage(GL_RENDERBUFFER, mFormat, mWidth, mHeight);
93 if (isAllocated() && (width != mWidth || height != mHeight)) {
98 mHeight = height;
112 return mHeight;
120 return (uint32_t) ((mWidth * mHeight * formatSize(mFormat)) / 8.0f + 0.5f);
184 uint32_t mHeight;
VkLayer.h 34 , mHeight(layerHeight)
44 return mHeight;
49 mHeight = height;
72 int mHeight;
  /packages/apps/Launcher2/src/com/android/launcher2/
FastBitmapDrawable.java 31 private int mHeight;
39 mHeight = mBitmap.getHeight();
41 mWidth = mHeight = 0;
83 return mHeight;
93 return mHeight;
100 mHeight = mBitmap.getHeight();
102 mWidth = mHeight = 0;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/PoseProvider/
Intrinsics.java 37 private int mHeight;
49 mHeight = height;
59 return mHeight;
  /frameworks/base/libs/hwui/renderthread/
Frame.h 32 , mHeight(height)
36 int32_t height() const { return mHeight; }
47 int32_t mHeight;
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
Shape.java 36 private float mHeight;
49 return mHeight;
77 if (mWidth != width || mHeight != height) {
79 mHeight = height;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
StraightenFilter.java 48 private int mHeight = 0;
97 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
99 mHeight = inputFormat.getHeight();
123 Point p0 = new Point(-cosTheta * mWidth + sinTheta * mHeight,
124 -sinTheta * mWidth - cosTheta * mHeight);
126 Point p1 = new Point(cosTheta * mWidth + sinTheta * mHeight,
127 sinTheta * mWidth - cosTheta * mHeight);
129 Point p2 = new Point(-cosTheta * mWidth - sinTheta * mHeight,
130 -sinTheta * mWidth + cosTheta * mHeight);
132 Point p3 = new Point(cosTheta * mWidth - sinTheta * mHeight,
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
Texture.cpp 25 mWidth(0), mHeight(0), mFiltering(false) {
30 mWidth(0), mHeight(0), mFiltering(false) {
52 mHeight = height;
76 return mHeight;
  /packages/services/BuiltInPrintService/src/com/android/bips/jni/
SizeD.java 28 private final double mHeight;
34 mHeight = height;
53 return mHeight;
64 out.writeDouble(mHeight);
  /frameworks/av/camera/include/camera/camera2/
OutputConfiguration.h 74 mHeight == other.mHeight &&
93 if (mHeight != other.mHeight) {
94 return mHeight < other.mHeight;
119 int mHeight;
  /frameworks/base/packages/Osu/src/com/android/anqp/
IconInfo.java 18 private final int mHeight;
29 mHeight = payload.getShort() & SHORT_MASK;
41 return mHeight;
66 return mHeight == that.mHeight &&
76 result = 31 * result + mHeight;
87 ", Height=" + mHeight +
96 mHeight = in.readInt();
104 out.writeInt(mHeight);
  /frameworks/av/cmds/screenrecord/
EglWindow.h 40 mHeight(0)
52 int getHeight() const { return mHeight; }
82 int mHeight;
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Mirror.java 32 private int mHeight;
38 mHeight = mInPixelsAllocation.getType().getY();
42 mScript.set_gHeight(mHeight);

Completed in 598 milliseconds

1 2 3 4 5 6 7 8 91011>>