Searched defs:mHeight (Results 126 - 129 of 129) sorted by relevance

123456

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java148 private int mHeight; field in class:GLES20Canvas
348 mHeight = height;
349 GLES20.glViewport(0, 0, mWidth, mHeight);
986 GLES20.glViewport(0, 0, mWidth, mHeight);
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp415 uint32_t mHeight; member in class:InputStripSource
427 mWidth(width), mHeight(height), mPixStride(pixStride), mRowStride(rowStride),
435 uint32_t fullSize = mWidth * mHeight * mBytesPerSample * mSamplesPerPixel;
474 for (uint32_t i = 0; i < mHeight; ++i) {
550 uint32_t mHeight; member in class:DirectStripSource
562 mPixelBytes(pixelBytes), mWidth(width), mHeight(height), mPixStride(pixStride),
569 uint32_t fullSize = mWidth * mHeight * mBytesPerSample * mSamplesPerPixel;
591 for (size_t i = 0; i < mHeight; ++i) {
/frameworks/wilhelm/src/
H A Ditfstruct.h154 SLmillimeter mHeight; member in struct:__anon1605::__anon1606
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java186 int mHeight; field in class:ViewRootImpl
365 mHeight = -1;
886 mDirty.set(0, 0, mWidth, mHeight);
945 (int) (mWidth * appScale + 0.5f), (int) (mHeight * appScale + 0.5f));
977 return r.intersect(0, 0, mWidth, mHeight);
1174 if (mWidth != host.getMeasuredWidth() || mHeight != host.getMeasuredHeight()) {
1307 if (desiredWindowWidth != mWidth || desiredWindowHeight != mHeight) {
1449 && ((mWidth != host.getMeasuredWidth() || mHeight != host.getMeasuredHeight())
1453 frame.height() < desiredWindowHeight && frame.height() != mHeight));
1503 mDirty.set(0, 0, mWidth, mHeight);
[all...]

Completed in 174 milliseconds

123456