Searched defs:oldHeight (Results 1 - 9 of 9) sorted by relevance
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/ |
H A D | EmbeddedContentContainer.java | 39 protected void onSizeChanged(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument 40 super.onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | HardwareUiLayout.java | 325 private void animateChild(int oldHeight, int newHeight) { argument 340 int toTop = fromTop - ((newHeight - oldHeight) / 2); 341 int toBottom = fromBottom + ((newHeight - oldHeight) / 2);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/ |
H A D | UserGridView.java | 135 private void animateHeightChange(int oldHeight, int newHeight) { argument 138 if (oldHeight == newHeight || newHeight == mTargetHeight) { 148 mHeightAnimator = ValueAnimator.ofInt(oldHeight, mTargetHeight); 177 if (oldHeight < newHeight) {
|
/frameworks/av/media/libstagefright/codecs/mpeg2dec/ |
H A D | SoftMPEG2.cpp | 508 const uint32_t oldHeight = mHeight; local 510 if (mWidth != oldWidth || mHeight != oldHeight) {
|
/frameworks/av/media/libstagefright/omx/ |
H A D | SoftVideoDecoderOMXComponent.cpp | 485 uint32_t oldHeight = def->format.video.nFrameHeight; local 496 if (newWidth != oldWidth || newHeight != oldHeight) {
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
H A D | PagingIndicator.java | 394 protected void onSizeChanged(int width, int height, int oldWidth, int oldHeight) { argument
|
/frameworks/support/wear/src/android/support/wear/widget/ |
H A D | CircledImageView.java | 658 public void onSizeChanged(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument 659 if (newWidth != oldWidth || newHeight != oldHeight) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | NotificationPanelView.java | 417 private void startQsSizeChangeAnimation(int oldHeight, final int newHeight) { argument 419 oldHeight = (int) mQsSizeChangeAnimator.getAnimatedValue(); 422 mQsSizeChangeAnimator = ValueAnimator.ofInt(oldHeight, newHeight); 2557 final int oldHeight = oldBottom - oldTop; 2558 if (height != oldHeight) {
|
/frameworks/base/core/java/android/view/ |
H A D | View.java | 14393 int oldHeight = mBottom - mTop; 14398 sizeChange(width, mBottom - mTop, width, oldHeight); 14462 int oldHeight = mBottom - mTop; 14467 sizeChange(width, mBottom - mTop, width, oldHeight); 19735 int oldHeight = mBottom - mTop; 19738 boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight); 19753 sizeChange(newWidth, newHeight, oldWidth, oldHeight); 19791 private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument 19792 onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
|
Completed in 344 milliseconds