Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/service/voice/
DVoiceInteractionSession.java86 final Insets mTmpInsets = new Insets(); field in VoiceInteractionSession
411 onComputeInsets(mTmpInsets);
412 info.contentInsets.set(mTmpInsets.contentInsets);
413 info.visibleInsets.set(mTmpInsets.contentInsets);
414 info.touchableRegion.set(mTmpInsets.touchableRegion);
415 info.setTouchableInsets(mTmpInsets.touchableInsets);
/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java308 final Insets mTmpInsets = new Insets(); field in InputMethodService
323 onComputeInsets(mTmpInsets);
324 info.contentInsets.top = mTmpInsets.contentTopInsets;
325 info.visibleInsets.top = mTmpInsets.visibleTopInsets;
326 info.touchableRegion.set(mTmpInsets.touchableRegion);
327 info.setTouchableInsets(mTmpInsets.touchableInsets);
2421 p.println(" contentTopInsets=" + mTmpInsets.contentTopInsets in dump()
2422 + " visibleTopInsets=" + mTmpInsets.visibleTopInsets in dump()
2423 + " touchableInsets=" + mTmpInsets.touchableInsets in dump()
2424 + " touchableRegion=" + mTmpInsets.touchableRegion); in dump()