Searched refs:oldHeight (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/libs/hwui/
H A DLayer.cpp86 uint32_t oldHeight = getHeight(); local
96 setSize(oldWidth, oldHeight);
106 setSize(oldWidth, oldHeight);
/frameworks/base/core/java/android/widget/
H A DImageView.java365 final int oldHeight = mDrawableHeight;
369 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
397 final int oldHeight = mDrawableHeight;
401 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
419 final int oldHeight = mDrawableHeight;
423 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
H A DLinearLayout.java680 int oldHeight = Integer.MIN_VALUE;
687 oldHeight = 0;
699 if (oldHeight != Integer.MIN_VALUE) {
700 lp.height = oldHeight;
936 int oldHeight = lp.height;
941 lp.height = oldHeight;
H A DListView.java2620 int oldHeight = child.getHeight();
2622 if (child.getMeasuredHeight() != oldHeight) {
2627 final int heightDelta = child.getMeasuredHeight() - oldHeight;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java163 int oldHeight = lp.height;
171 lp.height = oldHeight;
/frameworks/base/core/java/android/view/
H A DView.java9987 int oldHeight = mBottom - mTop;
9994 sizeChange(width, mBottom - mTop, width, oldHeight);
10060 int oldHeight = mBottom - mTop;
10067 sizeChange(width, mBottom - mTop, width, oldHeight);
14879 int oldHeight = mBottom - mTop;
14882 boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight);
14905 sizeChange(newWidth, newHeight, oldWidth, oldHeight);
14931 private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument
14932 onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);

Completed in 1774 milliseconds