Searched defs:outInsets (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java309 public void onComputeInsets(Insets outInsets) { argument
310 super.onComputeInsets(outInsets);
312 outInsets.contentInsets.top = mBottomContent.getTop();
313 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_CONTENT;
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java1077 * @param outInsets Fill in with the current UI insets.
1079 public void onComputeInsets(Insets outInsets) { argument
1090 outInsets.contentTopInsets = decor.getHeight();
1092 outInsets.contentTopInsets = loc[1];
1097 outInsets.visibleTopInsets = loc[1];
1098 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_VISIBLE;
1099 outInsets.touchableRegion.setEmpty();
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java1414 * sets {@link Insets#contentInsets outInsets.contentInsets.top} to the height
1419 * @param outInsets Fill in with the current UI insets.
1421 public void onComputeInsets(Insets outInsets) { argument
1422 outInsets.contentInsets.left = 0;
1423 outInsets.contentInsets.bottom = 0;
1424 outInsets.contentInsets.right = 0;
1426 outInsets.contentInsets.top = decor.getHeight();
1427 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_FRAME;
1428 outInsets.touchableRegion.setEmpty();
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java964 * @param outInsets Rect to populate with optical insets
967 public void getOpticalInsets(@NonNull Rect outInsets) { argument
969 outInsets.setEmpty();
971 outInsets.set(mNinePatchInsets.opticalRect);

Completed in 88 milliseconds