Searched refs:oldWidth (Results 1 - 15 of 15) 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.cpp116 uint32_t oldWidth = getWidth(); local
127 setSize(oldWidth, oldHeight);
137 setSize(oldWidth, oldHeight);
/frameworks/base/core/java/android/widget/
H A DImageView.java441 final int oldWidth = mDrawableWidth;
450 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
487 final int oldWidth = mDrawableWidth;
492 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
523 final int oldWidth = mDrawableWidth;
528 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
H A DPopupWindow.java2162 final int oldWidth = p.width;
2181 || oldWidth != p.width || oldHeight != p.height;
H A DLinearLayout.java1414 int oldWidth = lp.width;
1419 lp.width = oldWidth;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java1008 int oldWidth = Integer.MIN_VALUE;
1015 oldWidth = 0;
1027 if (oldWidth != Integer.MIN_VALUE) {
1028 lp.width = oldWidth;
1327 int oldWidth = lp.width;
1332 lp.width = oldWidth;
H A DScrollingTabContainerView.java130 final int oldWidth = getMeasuredWidth();
134 if (lockedExpanded && oldWidth != newWidth) {
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
H A DSoftMPEG2.cpp513 const uint32_t oldWidth = mWidth; local
516 if (mWidth != oldWidth || mHeight != oldHeight) {
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp487 uint32_t oldWidth = def->format.video.nFrameWidth; local
499 if (newWidth != oldWidth || newHeight != oldHeight) {
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java119 final int oldWidth = getMeasuredWidth();
123 if (lockedExpanded && oldWidth != newWidth) {
H A DViewPager.java1463 private void recomputeScrollPosition(int width, int oldWidth, int margin, int oldMargin) { argument
1464 if (oldWidth > 0 && !mItems.isEmpty()) {
1466 final int oldWidthWithMargin = oldWidth - getPaddingLeft() - getPaddingRight()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java352 protected void onSizeChanged(int width, int height, int oldWidth, int oldHeight) { argument
/frameworks/support/core-ui/java/android/support/v4/view/
H A DViewPager.java1678 private void recomputeScrollPosition(int width, int oldWidth, int margin, int oldMargin) { argument
1679 if (oldWidth > 0 && !mItems.isEmpty()) {
1684 final int oldWidthWithMargin = oldWidth - getPaddingLeft() - getPaddingRight()
/frameworks/base/core/java/android/view/
H A DView.java12645 int oldWidth = mRight - mLeft;
12651 sizeChange(mRight - mLeft, height, oldWidth, height);
12704 int oldWidth = mRight - mLeft;
12710 sizeChange(mRight - mLeft, height, oldWidth, height);
17707 int oldWidth = mRight - mLeft;
17711 boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight);
17726 sizeChange(newWidth, newHeight, oldWidth, oldHeight);
17763 private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument
17764 onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStack.java4709 final int oldWidth = oldTaskOverride.screenWidthDp;
4712 if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4713 || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {

Completed in 453 milliseconds