Searched refs:oldWidth (Results 1 - 11 of 11) 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.cpp134 uint32_t oldWidth = getWidth(); local
145 setSize(oldWidth, oldHeight);
155 setSize(oldWidth, oldHeight);
/frameworks/base/core/java/android/widget/
H A DImageView.java391 final int oldWidth = mDrawableWidth;
400 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
426 final int oldWidth = mDrawableWidth;
431 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
448 final int oldWidth = mDrawableWidth;
453 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
H A DLinearLayout.java1068 int oldWidth = Integer.MIN_VALUE;
1075 oldWidth = 0;
1087 if (oldWidth != Integer.MIN_VALUE) {
1088 lp.width = oldWidth;
1386 int oldWidth = lp.width;
1391 lp.width = oldWidth;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java1004 int oldWidth = Integer.MIN_VALUE;
1011 oldWidth = 0;
1023 if (oldWidth != Integer.MIN_VALUE) {
1024 lp.width = oldWidth;
1323 int oldWidth = lp.width;
1328 lp.width = oldWidth;
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp387 uint32_t oldWidth = def->format.video.nFrameWidth; local
391 if (newWidth != oldWidth || newHeight != oldHeight) {
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp472 const uint32_t oldWidth = mWidth; local
475 if (mWidth != oldWidth || mHeight != oldHeight) {
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java120 final int oldWidth = getMeasuredWidth();
124 if (lockedExpanded && oldWidth != newWidth) {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DScrollingTabContainerView.java127 final int oldWidth = getMeasuredWidth();
131 if (lockedExpanded && oldWidth != newWidth) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java1472 private void recomputeScrollPosition(int width, int oldWidth, int margin, int oldMargin) { argument
1473 if (oldWidth > 0 && !mItems.isEmpty()) {
1475 final int oldWidthWithMargin = oldWidth - getPaddingLeft() - getPaddingRight()
/frameworks/base/core/java/android/view/
H A DView.java10800 int oldWidth = mRight - mLeft;
10806 sizeChange(mRight - mLeft, height, oldWidth, height);
10856 int oldWidth = mRight - mLeft;
10862 sizeChange(mRight - mLeft, height, oldWidth, height);
15732 int oldWidth = mRight - mLeft;
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 9754 milliseconds