Searched defs:newHeight (Results 1 - 9 of 9) 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/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp390 uint32_t newHeight = video_def->nFrameHeight; local
391 if (newWidth != oldWidth || newHeight != oldHeight) {
396 mHeight = newHeight;
406 def->format.video.nFrameHeight = newHeight;
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp403 void DisplayDevice::setDisplaySize(const int newWidth, const int newHeight) { argument
411 mDisplaySurface->resizeBuffers(newWidth, newHeight);
420 LOG_FATAL_IF(mDisplayHeight != newHeight,
421 "Unable to set new height to %d", newHeight);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java613 final void resize(int newWidth, int newHeight) { argument
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp527 int32_t newHeight = getWindowProp(code->nativeWindow.get(), local
530 || newHeight != code->lastWindowHeight) {
/frameworks/native/libs/gui/
H A DGLConsumer.cpp876 int32_t newHeight = mCurrentCrop.height(); local
878 if (newWidth * mDefaultHeight > newHeight * mDefaultWidth) {
879 newWidth = newHeight * mDefaultWidth / mDefaultHeight;
881 } else if (newWidth * mDefaultHeight < newHeight * mDefaultWidth) {
882 newHeight = newWidth * mDefaultHeight / mDefaultWidth;
883 ST_LOGV("too tall: newHeight = %d", newHeight);
892 } else if (newHeight < mCurrentCrop.height()) {
893 int32_t dh = (newHeight - mCurrentCrop.height())/2;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp85 int newHeight = availablePreviewSizes[i].height; local
86 if (newWidth >= previewWidth && newHeight >= previewHeight &&
88 newHeight <= MAX_INITIAL_PREVIEW_HEIGHT) {
91 availableVideoSizes[j].height == newHeight) {
93 previewHeight = newHeight;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java332 private void startQsSizeChangeAnimation(int oldHeight, final int newHeight) { argument
337 mQsSizeChangeAnimator = ValueAnimator.ofInt(oldHeight, newHeight);
/frameworks/base/core/java/android/view/
H A DView.java15735 int newHeight = bottom - top;
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);
15789 mOverlay.getOverlayView().setBottom(newHeight);

Completed in 5319 milliseconds