Home
last modified time | relevance | path

Searched refs:currentHeight (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
DCamera2SurfaceViewActivity.java38 private int currentHeight = 0; field in Camera2SurfaceViewActivity
67 if (expectWidth == currentWidth && expectHeight == currentHeight) { in waitForSurfaceSizeChanged()
83 if (currentWidth == expectWidth && currentHeight == expectHeight) { in waitForSurfaceSizeChanged()
106 currentHeight = height; in surfaceChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DExpandHelper.java562 float currentHeight = mScaler.getHeight(); in finishExpanding() local
567 nowExpanded = currentHeight > mOldHeight && velocity >= 0; in finishExpanding()
569 nowExpanded = currentHeight >= mOldHeight || velocity > 0; in finishExpanding()
581 if (targetHeight != currentHeight && mEnabled && allowAnimation) { in finishExpanding()
609 mFlingAnimationUtils.apply(mScaleAnimation, currentHeight, targetHeight, velocity); in finishExpanding()
612 if (targetHeight != currentHeight) { in finishExpanding()
624 if (DEBUG) Log.d(TAG, "currentHeight is: " + currentHeight); in finishExpanding()
/frameworks/native/libs/gui/
DGLConsumer.cpp890 uint32_t currentHeight = static_cast<uint32_t>(crop.height()); in scaleDownCrop() local
900 } else if (newHeight < currentHeight) { in scaleDownCrop()
901 uint32_t dh = currentHeight - newHeight; in scaleDownCrop()
/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java1282 final int currentHeight = mWindow.getWindow().getAttributes().height; in onConfigureWindow() local
1284 if (mIsInputViewShown && currentHeight != newHeight) { in onConfigureWindow()
1287 + "window: " + currentHeight + " -> " + newHeight); in onConfigureWindow()