/frameworks/base/media/jni/ |
android_media_ImageReader.cpp | 98 void setBufferHeight(int height) { mHeight = height; } 99 int getBufferHeight() { return mHeight; } 112 int mHeight;
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/ |
MediaEncoderFilter.java | 119 private int mHeight = 0; 250 if (mWidth > 0 && mHeight > 0) { 251 mMediaRecorder.setVideoSize(mWidth, mHeight); 256 mMediaRecorder.setVideoSize(mWidth, mHeight); 306 boolean widthHeightSpecified = mWidth > 0 && mHeight > 0; 314 height = mHeight;
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/ |
MediaSource.java | 110 private int mWidth, mHeight; 421 mOutputFormat.setDimensions(mWidth, mHeight); 423 mOutputFormat.setDimensions(mHeight, mWidth); 530 mHeight = height;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
DessertCaseView.java | 123 private int mWidth, mHeight; 231 if (mWidth == w && mHeight == h) return; 239 mHeight = h; 245 mRows = mHeight / mCellSize; 255 setTranslationY(0.5f * (mHeight - mCellSize * mRows) * SCALE);
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/ |
BitmapRegionTileSource.java | 367 int mHeight; 384 mHeight = mDecoder.getHeight(); 402 mWidth, mHeight, 421 return mHeight; 471 mOverlapRegion.set(0, 0, mWidth, mHeight);
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/ |
BlockingGLTextureView.java | 320 private int mWidth, mHeight; 357 mHeight = height; 404 mRenderer.onSurfaceChanged(mGL, mWidth, mHeight);
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/ |
TestAppRS.java | 43 int mHeight; 99 mHeight = height; 105 mSceneManager.initRS(mRS, mRes, mWidth, mHeight); 110 FullscreenBlur.createRenderTargets(mRS, mWidth, mHeight);
|
/frameworks/rs/ |
rsContext.h | 187 uint32_t getHeight() const {return mHeight;} 255 uint32_t mHeight;
|
/hardware/libhardware/tests/camera2/ |
CameraBurstTests.cpp | 228 dout << "Buffer dimensions " << mWidth << "x" << mHeight << std::endl; 250 (mWidth * mHeight - (underexposed + overexposed)); 382 dout << "Stream size is " << mWidth << " x " << mHeight << std::endl; 430 availableProcessedSizes.data.i32[i+1] == mHeight) { 436 "available sizes: " << mWidth << ", " << mHeight; 664 int numValidPixels = mWidth * mHeight - (underexposed + overexposed);
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleWeekView.java | 136 protected int mHeight = DEFAULT_HEIGHT; 220 mHeight = params.get(VIEW_PARAMS_HEIGHT); 221 if (mHeight < MIN_HEIGHT) { 222 mHeight = MIN_HEIGHT; 414 r.bottom = mHeight - 1; 430 int y = ((mHeight + MINI_DAY_NUMBER_TEXT_SIZE) / 2) - DAY_SEPARATOR_WIDTH; 476 r.bottom = mHeight - 1; 489 canvas.drawLine(x, 0, x, mHeight, p); 520 setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), mHeight);
|
/packages/apps/Camera/src/com/android/camera/ |
MosaicPreviewRenderer.java | 44 private int mHeight; // height of the view in UI 157 MosaicRenderer.reset(mWidth, mHeight, mIsLandscape); 192 mHeight = h;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
CachingPipeline.java | 62 private volatile int mHeight = 0; 138 mHeight = 0; 448 bitmap.getWidth() != mWidth || bitmap.getHeight() != mHeight) { 464 || bitmap.getHeight() != mHeight) { 466 mHeight = bitmap.getHeight();
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
TiledTexture.java | 62 private final int mHeight; 125 mHeight = height + 2 * BORDER_SIZE; 204 mHeight = bitmap.getHeight(); 208 for (int y = 0, h = mHeight; y < h; y += CONTENT_SIZE) { 215 Math.min(CONTENT_SIZE, mHeight - y)); 281 float scaleY = (float) height / mHeight; 300 float scaleY = (float) height / mHeight; 344 return mHeight; 349 draw(canvas, x, y, mWidth, mHeight);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
EdgeEffect.java | 87 private int mHeight; 152 mHeight = height;
|
/packages/apps/Gallery2/src/com/android/photos/views/ |
BlockingGLTextureView.java | 320 private int mWidth, mHeight; 357 mHeight = height; 404 mRenderer.onSurfaceChanged(mGL, mWidth, mHeight);
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/ |
BitmapRegionTileSource.java | 371 int mHeight; 388 mHeight = mDecoder.getHeight(); 406 mWidth, mHeight, 425 return mHeight; 475 mOverlapRegion.set(0, 0, mWidth, mHeight);
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/ |
BlockingGLTextureView.java | 320 private int mWidth, mHeight; 357 mHeight = height; 404 mRenderer.onSurfaceChanged(mGL, mWidth, mHeight);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
UriImage.java | 65 private int mHeight; 86 " mHeight: " + mHeight); 197 mHeight = opt.outHeight; 230 return mHeight; 246 byte[] data = getResizedImageData(mWidth, mHeight,
|
/packages/apps/Music/src/com/android/music/ |
TouchInterceptor.java | 64 private int mHeight; 139 mHeight = getHeight(); 141 mUpperBound = Math.min(y - touchSlop, mHeight / 3); 142 mLowerBound = Math.max(y + touchSlop, mHeight * 2 /3); 195 if (y >= mHeight / 3) { 196 mUpperBound = mHeight / 3; 198 if (y <= mHeight * 2 / 3) { 199 mLowerBound = mHeight * 2 / 3; 342 speed = y > (mHeight + mLowerBound) / 2 ? 16 : 4;
|
/packages/apps/Settings/src/com/android/settings/ |
ActivityPicker.java | 435 private final int mHeight; 439 mHeight = height; 449 return mHeight; 459 return mHeight;
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
DividedImageCanvas.java | 56 private int mHeight; 105 sb.append(" mHeight="); 106 sb.append(mHeight); 188 h = mHeight; 193 h = mHeight; 200 h = mHeight; 205 h = mHeight / 2; 211 h = mHeight / 2; 248 final int height = mHeight; 413 if (mWidth == width && mHeight == height) [all...] |
LeaveBehindItem.java | 55 private int mHeight; 118 mHeight = height; 162 return new LeaveBehindData(getData(), mUndoOp, mHeight); 175 final ObjectAnimator height = ObjectAnimator.ofInt(this, "animatedHeight", mHeight, 0); 176 setMinimumHeight(mHeight); 285 MeasureSpec.makeMeasureSpec(mHeight, MeasureSpec.EXACTLY));
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
BalloonHint.java | 281 private int mHeight; 293 mHeight = height; 330 + mParentLocationInWindow[1], mWidth, mHeight);
|
/packages/screensavers/Basic/src/com/android/dreams/basic/ |
ColorsGLRenderer.java | 59 private int mHeight; 76 mHeight = height; 98 mHeight = height; 116 glViewport(0, 0, mWidth, mHeight);
|
/packages/wallpapers/Galaxy4/src/com/android/galaxy4/ |
GalaxyRS.java | 41 private int mHeight; 61 mHeight = height; 149 mHeight = h; 151 proj.loadOrthoWindow(mWidth, mHeight); 152 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight); 164 proj.loadOrthoWindow(mWidth, mHeight); 171 updateProjectionMatrices(mWidth, mHeight); 270 mHeight = height;
|