Searched refs:newHeight (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DEmbeddedContentContainer.java39 protected void onSizeChanged(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument
40 super.onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
42 mSizeChangeListener.onSizeChanged(newWidth, newHeight);
/frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
H A DImfBaseTestCase.java125 int newHeight;
133 newHeight = rootView.getHeight();
135 while (Math.abs(newHeight - origHeight) < IME_MIN_HEIGHT && SystemClock.uptimeMillis() < timeoutTime) {
136 newHeight = rootView.getHeight();
139 return (Math.abs(origHeight - newHeight) >= IME_MIN_HEIGHT);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackScrollState.java107 int newHeight = state.height;
151 if (height != newHeight) {
152 child.setActualHeight(newHeight, false /* notifyListeners */);
173 updateChildClip(child, newHeight, state.topOverLap);
H A DStackScrollAlgorithm.java199 float newHeight = state.height * state.scale;
201 float newNotificationEnd = newYTranslation + newHeight;
210 ? newHeight
213 updateChildClippingAndBackground(state, newHeight, clipHeight,
214 newHeight - (previousNotificationStart - newYTranslation));
492 int newHeight = childHeight;
494 newHeight = (int) Math.max(Math.min(transitioningPositionStart + offset -
496 childViewState.height = newHeight;
498 childViewState.yTranslation = transitioningPositionStart + offset - newHeight
502 clampPositionToTopStackEnd(childViewState, newHeight);
[all...]
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp365 uint32_t newHeight = video_def->nFrameHeight; local
366 if (newWidth != oldWidth || newHeight != oldHeight) {
371 (mIsAdaptive && outputPort) ? mAdaptiveMaxHeight : newHeight;
378 mHeight = newHeight;
382 mCropHeight = newHeight;
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java494 int newWidth, newHeight;
497 newHeight = newLongSize;
500 newHeight = newShortSize;
504 float sh = height/(float)newHeight;
512 outDm.heightPixels = newHeight;
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp403 void DisplayDevice::setDisplaySize(const int newWidth, const int newHeight) { argument
411 mDisplaySurface->resizeBuffers(newWidth, newHeight);
420 LOG_FATAL_IF(mDisplayHeight != newHeight,
421 "Unable to set new height to %d", newHeight);
H A DDisplayDevice.h113 void setDisplaySize(const int newWidth, const int newHeight);
/frameworks/native/libs/gui/
H A DGLConsumer.cpp876 int32_t newHeight = mCurrentCrop.height(); local
878 if (newWidth * mDefaultHeight > newHeight * mDefaultWidth) {
879 newWidth = newHeight * mDefaultWidth / mDefaultHeight;
881 } else if (newWidth * mDefaultHeight < newHeight * mDefaultWidth) {
882 newHeight = newWidth * mDefaultHeight / mDefaultWidth;
883 ST_LOGV("too tall: newHeight = %d", newHeight);
892 } else if (newHeight < mCurrentCrop.height()) {
893 int32_t dh = (newHeight - mCurrentCrop.height())/2;
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp574 uint32_t newHeight = needSwap ? kFallbackWidth : kFallbackHeight;
575 if (gVideoWidth != newWidth && gVideoHeight != newHeight) {
578 gVideoWidth, gVideoHeight, newWidth, newHeight);
580 gVideoHeight = newHeight;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java199 float newHeight = clamp(target);
200 mScaler.setHeight(newHeight);
435 final float newHeight = clamp(rawHeight);
452 mScaler.setHeight(newHeight);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java304 final float newHeight = Math.max(0, h + mInitialOffsetOnTouch);
305 if (newHeight > mPeekHeight) {
315 setExpandedHeightInternal(newHeight);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DListRowPresenter.java403 int newHeight = expanded ? getExpandedRowHeight() : getRowHeight();
404 vh.getGridView().setRowHeight(newHeight);
/frameworks/base/core/java/android/widget/
H A DImageView.java951 int newHeight = (int)((widthSize - pleft - pright) / desiredAspect) +
956 heightSize = resolveAdjustedSize(newHeight, mMaxHeight,
960 if (newHeight <= heightSize) {
961 heightSize = newHeight;
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp527 int32_t newHeight = getWindowProp(code->nativeWindow.get(), local
530 || newHeight != code->lastWindowHeight) {
/frameworks/base/media/java/android/media/session/
H A DMediaSessionLegacyHelper.java344 int newHeight = Math.round(scale * height);
349 Bitmap outBitmap = Bitmap.createBitmap(newWidth, newHeight, newConfig);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java960 final int newHeight = isFullscreen ? MATCH_PARENT : WRAP_CONTENT;
961 if (mIsInputViewShown && currentHeight != newHeight) {
963 + currentHeight + " -> " + newHeight);
965 mWindow.getWindow().setLayout(MATCH_PARENT, newHeight);
H A DKeyboard.java613 final void resize(int newWidth, int newHeight) { argument
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp85 int newHeight = availablePreviewSizes[i].height; local
86 if (newWidth >= previewWidth && newHeight >= previewHeight &&
88 newHeight <= MAX_INITIAL_PREVIEW_HEIGHT) {
91 availableVideoSizes[j].height == newHeight) {
93 previewHeight = newHeight;
/frameworks/base/core/java/android/view/
H A DView.java15660 int newHeight = bottom - top;
15661 boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight);
15676 sizeChange(newWidth, newHeight, oldWidth, oldHeight);
15702 private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument
15703 onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
15706 mOverlay.getOverlayView().setBottom(newHeight);

Completed in 586 milliseconds