Home
last modified time | relevance | path

Searched refs:mImeScreenshot (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplayContent.java657 SurfaceControl mImeScreenshot; field in DisplayContent
4030 final boolean renewImeSurface = mImeScreenshot == null in attachAndShowImeScreenshotOnTarget()
4031 || mImeScreenshot.getWidth() != mInputMethodWindow.getFrame().width() in attachAndShowImeScreenshotOnTarget()
4032 || mImeScreenshot.getHeight() != mInputMethodWindow.getFrame().height(); in attachAndShowImeScreenshotOnTarget()
4040 mImeScreenshot = createImeSurface(imeBuffer, t); in attachAndShowImeScreenshotOnTarget()
4045 final boolean isValidSnapshot = mImeScreenshot != null && mImeScreenshot.isValid(); in attachAndShowImeScreenshotOnTarget()
4053 t.show(mImeScreenshot); in attachAndShowImeScreenshotOnTarget()
4113 if (mImeScreenshot != null) { in removeImeSurfaceImmediately()
4115 getSyncTransaction().remove(mImeScreenshot); in removeImeSurfaceImmediately()
4116 mImeScreenshot = null; in removeImeSurfaceImmediately()
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DDisplayContentTests.java1962 assertNotNull(mDisplayContent.mImeScreenshot); in testAttachAndShowImeScreenshotOnTarget()
1963 verify(t).show(mDisplayContent.mImeScreenshot); in testAttachAndShowImeScreenshotOnTarget()