Home
last modified time | relevance | path

Searched refs:mTmpInsets (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java444 final Insets mTmpInsets = new Insets(); field in InputMethodService
473 onComputeInsets(mTmpInsets);
476 mTmpInsets.visibleTopInsets = 0;
486 info.contentInsets.top = mTmpInsets.contentTopInsets;
487 info.visibleInsets.top = mTmpInsets.visibleTopInsets;
488 info.touchableRegion.set(mTmpInsets.touchableRegion);
489 info.setTouchableInsets(mTmpInsets.touchableInsets);
493 setImeExclusionRect(mTmpInsets.visibleTopInsets);
3333 p.println(" contentTopInsets=" + mTmpInsets.contentTopInsets in dump()
3334 + " visibleTopInsets=" + mTmpInsets.visibleTopInsets in dump()
[all …]
/frameworks/base/core/java/android/service/voice/
DVoiceInteractionSession.java170 final Insets mTmpInsets = new Insets(); field in VoiceInteractionSession
998 onComputeInsets(mTmpInsets);
999 info.contentInsets.set(mTmpInsets.contentInsets);
1000 info.visibleInsets.set(mTmpInsets.contentInsets);
1001 info.touchableRegion.set(mTmpInsets.touchableRegion);
1002 info.setTouchableInsets(mTmpInsets.touchableInsets);
/frameworks/base/services/core/java/com/android/server/wm/
DTask.java313 private final Rect mTmpInsets = new Rect(); field in Task
2190 displayInfo.logicalHeight, displayInfo.displayCutout, mTmpInsets); in calculateInsetFrames()
2191 intersectWithInsetsIfFits(outNonDecorBounds, mTmpBounds, mTmpInsets); in calculateInsetFrames()
2193 policy.convertNonDecorInsetsToStableInsets(mTmpInsets, displayInfo.rotation); in calculateInsetFrames()
2194 intersectWithInsetsIfFits(outStableBounds, mTmpBounds, mTmpInsets); in calculateInsetFrames()