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.cpp416 uint32_t newHeight = video_def->nFrameHeight; local
420 if (newWidth > 32768 || newHeight > 32768
425 if (newWidth != oldWidth || newHeight != oldHeight) {
430 mHeight = newHeight;
440 def->format.video.nFrameHeight = newHeight;
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp469 void DisplayDevice::setDisplaySize(const int newWidth, const int newHeight) { argument
477 mDisplaySurface->resizeBuffers(newWidth, newHeight);
486 LOG_FATAL_IF(mDisplayHeight != newHeight,
487 "Unable to set new height to %d", newHeight);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java626 final void resize(int newWidth, int newHeight) { argument
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp562 int32_t newHeight = getWindowProp(code->nativeWindow.get(), local
565 || newHeight != code->lastWindowHeight) {
/frameworks/native/libs/gui/
H A DGLConsumer.cpp931 uint32_t newHeight = static_cast<uint32_t>(mCurrentCrop.height()); local
933 if (newWidth * mDefaultHeight > newHeight * mDefaultWidth) {
934 newWidth = newHeight * mDefaultWidth / mDefaultHeight;
936 } else if (newWidth * mDefaultHeight < newHeight * mDefaultWidth) {
937 newHeight = newWidth * mDefaultHeight / mDefaultWidth;
938 GLC_LOGV("too tall: newHeight = %d", newHeight);
952 } else if (newHeight < currentHeight) {
953 uint32_t dh = currentHeight - newHeight;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp100 int newHeight = availablePreviewSizes[i].height; local
101 if (newWidth >= previewWidth && newHeight >= previewHeight &&
103 newHeight <= MAX_INITIAL_PREVIEW_HEIGHT) {
106 availableVideoSizes[j].height == newHeight) {
108 previewHeight = newHeight;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java342 private void startQsSizeChangeAnimation(int oldHeight, final int newHeight) { argument
347 mQsSizeChangeAnimator = ValueAnimator.ofInt(oldHeight, newHeight);
/frameworks/base/core/java/android/view/
H A DView.java17583 int newHeight = bottom - top;
17584 boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight);
17599 sizeChange(newWidth, newHeight, oldWidth, oldHeight);
17636 private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) { argument
17637 onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
17640 mOverlay.getOverlayView().setBottom(newHeight);

Completed in 1439 milliseconds