Home
last modified time | relevance | path

Searched refs:oldHeight (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
DEmbeddedContentContainer.java39 protected void onSizeChanged(int newWidth, int newHeight, int oldWidth, int oldHeight) { in onSizeChanged() argument
40 super.onSizeChanged(newWidth, newHeight, oldWidth, oldHeight); in onSizeChanged()
/frameworks/base/core/java/android/widget/
DImageView.java496 final int oldHeight = mDrawableHeight;
504 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
555 final int oldHeight = mDrawableHeight;
559 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
592 final int oldHeight = mDrawableHeight;
596 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
DPopupWindow.java2406 final int oldHeight = p.height;
2424 || oldWidth != p.width || oldHeight != p.height;
DLinearLayout.java1080 int oldHeight = lp.height; in forceUniformWidth() local
1085 lp.height = oldHeight; in forceUniformWidth()
DListView.java2863 int oldHeight = child.getHeight(); in measureAndAdjustDown() local
2865 if (child.getMeasuredHeight() != oldHeight) { in measureAndAdjustDown()
2870 final int heightDelta = child.getMeasuredHeight() - oldHeight; in measureAndAdjustDown()
/frameworks/base/core/java/com/android/internal/widget/
DAlertDialogLayout.java237 final int oldHeight = lp.height; in forceUniformWidth() local
242 lp.height = oldHeight; in forceUniformWidth()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DHardwareUiLayout.java408 private void animateChild(int oldHeight, int newHeight) { in animateChild() argument
423 int toTop = fromTop - ((newHeight - oldHeight) / 2); in animateChild()
424 int toBottom = fromBottom + ((newHeight - oldHeight) / 2); in animateChild()
/frameworks/native/services/surfaceflinger/tests/unittests/
DDisplayTransactionTest.cpp2138 constexpr int oldHeight = 10; in TEST_F() local
2155 .WillOnce(DoAll(SetArgPointee<1>(oldHeight), Return(0))); in TEST_F()
2164 display.mutableDrawingDisplayState().height = oldHeight; in TEST_F()
2166 display.mutableCurrentDisplayState().height = oldHeight; in TEST_F()
2171 EXPECT_CALL(*displaySurface, resizeBuffers(newWidth, oldHeight)).Times(1); in TEST_F()
2183 constexpr int oldHeight = 10; in TEST_F() local
2200 .WillOnce(DoAll(SetArgPointee<1>(oldHeight), Return(0))); in TEST_F()
2209 display.mutableDrawingDisplayState().height = oldHeight; in TEST_F()
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
DSoftMPEG2.cpp508 const uint32_t oldHeight = mHeight; in internalSetParameter() local
510 if (mWidth != oldWidth || mHeight != oldHeight) { in internalSetParameter()
/frameworks/av/media/libstagefright/omx/
DSoftVideoDecoderOMXComponent.cpp498 uint32_t oldHeight = def->format.video.nFrameHeight; in internalSetParameter() local
510 if (newWidth != oldWidth || newHeight != oldHeight) { in internalSetParameter()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationPanelView.java771 private void startQsSizeChangeAnimation(int oldHeight, final int newHeight) { in startQsSizeChangeAnimation() argument
773 oldHeight = (int) mQsSizeChangeAnimator.getAnimatedValue(); in startQsSizeChangeAnimation()
776 mQsSizeChangeAnimator = ValueAnimator.ofInt(oldHeight, newHeight); in startQsSizeChangeAnimation()
3219 final int oldHeight = oldBottom - oldTop;
3220 if (height != oldHeight) {
/frameworks/base/core/java/android/view/
DView.java16869 int oldHeight = mBottom - mTop; in setTop() local
16874 sizeChange(width, mBottom - mTop, width, oldHeight); in setTop()
16938 int oldHeight = mBottom - mTop; in setBottom() local
16943 sizeChange(width, mBottom - mTop, width, oldHeight); in setBottom()
22592 int oldHeight = mBottom - mTop; in setFrame() local
22595 boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight); in setFrame()
22610 sizeChange(newWidth, newHeight, oldWidth, oldHeight); in setFrame()
22657 private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) { in sizeChange() argument
22658 onSizeChanged(newWidth, newHeight, oldWidth, oldHeight); in sizeChange()
22676 } else if (oldWidth <= 0 || oldHeight <= 0) { in sizeChange()
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java3990 protected void onSizeChanged(int width, int height, int oldWidth, int oldHeight) {
3991 super.onSizeChanged(width, height, oldWidth, oldHeight);