Searched defs:oldHeight (Results 1 - 6 of 6) 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);
/frameworks/base/libs/hwui/
H A DLayer.cpp135 uint32_t oldHeight = getHeight(); local
145 setSize(oldWidth, oldHeight);
155 setSize(oldWidth, oldHeight);
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp388 uint32_t oldHeight = def->format.video.nFrameHeight; local
391 if (newWidth != oldWidth || newHeight != oldHeight) {
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp473 const uint32_t oldHeight = mHeight; local
475 if (mWidth != oldWidth || mHeight != oldHeight) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java229 final int oldHeight = oldBottom - oldTop;
230 if (height != oldHeight) {
332 private void startQsSizeChangeAnimation(int oldHeight, final int newHeight) { argument
334 oldHeight = (int) mQsSizeChangeAnimator.getAnimatedValue();
337 mQsSizeChangeAnimator = ValueAnimator.ofInt(oldHeight, newHeight);
928 int oldHeight = oldBottom - oldTop;
930 if (height != oldHeight && mQsContainerAnimator != null) {
/frameworks/base/core/java/android/view/
H A DView.java10677 int oldHeight = mBottom - mTop;
10682 sizeChange(width, mBottom - mTop, width, oldHeight);
10742 int oldHeight = mBottom - mTop;
10747 sizeChange(width, mBottom - mTop, width, oldHeight);
15733 int oldHeight = mBottom - mTop;
15736 boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight);
15751 sizeChange(newWidth, newHeight, oldWidth, oldHeight);
15785 private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument
15786 onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);

Completed in 658 milliseconds