Searched refs:newWidth (Results 1 - 17 of 17) 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);
42 mSizeChangeListener.onSizeChanged(newWidth, newHeight);
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java494 int newWidth, newHeight;
496 newWidth = newShortSize;
499 newWidth = newLongSize;
503 float sw = width/(float)newWidth;
511 outDm.widthPixels = newWidth;
/frameworks/base/core/java/android/widget/
H A DTabWidget.java202 final int newWidth = Math.max(0, childWidth - delta);
203 mImposedTabWidths[i] = newWidth;
205 extraWidth -= childWidth - newWidth; // delta may have been clamped
H A DImageView.java1010 int newWidth = (int)(desiredAspect * (heightSize - ptop - pbottom)) +
1015 widthSize = resolveAdjustedSize(newWidth, mMaxWidth, widthMeasureSpec);
1018 if (newWidth <= widthSize) {
1019 widthSize = newWidth;
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp389 uint32_t newWidth = video_def->nFrameWidth; local
391 if (newWidth != oldWidth || newHeight != oldHeight) {
395 mWidth = newWidth;
405 def->format.video.nFrameWidth = newWidth;
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp409 void DisplayDevice::setDisplaySize(const int newWidth, const int newHeight) { argument
417 mDisplaySurface->resizeBuffers(newWidth, newHeight);
424 LOG_FATAL_IF(mDisplayWidth != newWidth,
425 "Unable to set new width to %d", newWidth);
H A DDisplayDevice.h113 void setDisplaySize(const int newWidth, const int newHeight);
/frameworks/native/libs/gui/
H A DGLConsumer.cpp888 uint32_t newWidth = static_cast<uint32_t>(mCurrentCrop.width()); local
891 if (newWidth * mDefaultHeight > newHeight * mDefaultWidth) {
892 newWidth = newHeight * mDefaultWidth / mDefaultHeight;
893 GLC_LOGV("too wide: newWidth = %d", newWidth);
894 } else if (newWidth * mDefaultHeight < newHeight * mDefaultWidth) {
895 newHeight = newWidth * mDefaultHeight / mDefaultWidth;
903 if (newWidth < currentWidth) {
904 uint32_t dw = currentWidth - newWidth;
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp576 uint32_t newWidth = needSwap ? kFallbackHeight : kFallbackWidth;
578 if (gVideoWidth != newWidth && gVideoHeight != newHeight) {
581 gVideoWidth, gVideoHeight, newWidth, newHeight);
582 gVideoWidth = newWidth;
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java626 final void resize(int newWidth, int newHeight) { argument
640 if (totalGap + totalWidth > newWidth) {
642 float scaleFactor = (float)(newWidth - totalGap) / totalWidth;
651 mTotalWidth = newWidth;
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java121 final int newWidth = getMeasuredWidth();
123 if (lockedExpanded && oldWidth != newWidth) {
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp558 int32_t newWidth = getWindowProp(code->nativeWindow.get(), local
562 if (newWidth != code->lastWindowWidth
/frameworks/base/media/java/android/media/session/
H A DMediaSessionLegacyHelper.java344 int newWidth = Math.round(scale * width);
350 Bitmap outBitmap = Bitmap.createBitmap(newWidth, newHeight, newConfig);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DScrollingTabContainerView.java131 final int newWidth = getMeasuredWidth();
133 if (lockedExpanded && oldWidth != newWidth) {
/frameworks/support/v4/java/android/support/v4/widget/
H A DSlidingPaneLayout.java625 final int newWidth = widthAvailable - horizontalMargin;
627 newWidth, MeasureSpec.EXACTLY);
628 if (measuredWidth != newWidth) {
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp98 int newWidth = availablePreviewSizes[i].width; local
100 if (newWidth >= previewWidth && newHeight >= previewHeight &&
101 newWidth <= MAX_INITIAL_PREVIEW_WIDTH &&
104 if (availableVideoSizes[j].width == newWidth &&
106 previewWidth = newWidth;
/frameworks/base/core/java/android/view/
H A DView.java16693 int newWidth = right - left;
16695 boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight);
16710 sizeChange(newWidth, newHeight, oldWidth, oldHeight);
16747 private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument
16748 onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
16750 mOverlay.getOverlayView().setRight(newWidth);

Completed in 635 milliseconds