Searched refs:outInsets (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java326 public void onComputeInsets(Insets outInsets) { argument
327 super.onComputeInsets(outInsets);
329 outInsets.contentInsets.top = mBottomContent.getTop();
330 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_CONTENT;
332 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_CONTENT;
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java1587 * sets {@link Insets#contentInsets outInsets.contentInsets.top} to the height
1592 * @param outInsets Fill in with the current UI insets.
1594 public void onComputeInsets(Insets outInsets) { argument
1595 outInsets.contentInsets.left = 0;
1596 outInsets.contentInsets.bottom = 0;
1597 outInsets.contentInsets.right = 0;
1599 outInsets.contentInsets.top = decor.getHeight();
1600 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_FRAME;
1601 outInsets.touchableRegion.setEmpty();
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl361 void getStableInsets(int displayId, out Rect outInsets);
H A DWindowManagerPolicy.java1658 * @param outInsets the insets to return
1661 Rect outInsets);
1676 * @param outInsets the insets to return
1679 Rect outInsets);
1660 getStableInsetsLw(int displayRotation, int displayWidth, int displayHeight, Rect outInsets) argument
1678 getNonDecorInsetsLw(int displayRotation, int displayWidth, int displayHeight, Rect outInsets) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTestWindowManagerPolicy.java602 Rect outInsets) {
613 Rect outInsets) {
601 getStableInsetsLw(int displayRotation, int displayWidth, int displayHeight, Rect outInsets) argument
612 getNonDecorInsetsLw(int displayRotation, int displayWidth, int displayHeight, Rect outInsets) argument
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java1222 * @param outInsets Fill in with the current UI insets.
1224 public void onComputeInsets(Insets outInsets) { argument
1235 outInsets.contentTopInsets = decor.getHeight();
1237 outInsets.contentTopInsets = loc[1];
1242 outInsets.visibleTopInsets = loc[1];
1243 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_VISIBLE;
1244 outInsets.touchableRegion.setEmpty();
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java501 public void getStableInsets(int displayId, Rect outInsets) throws RemoteException { argument
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java1171 * @param outInsets Rect to populate with optical insets
1174 public void getOpticalInsets(@NonNull Rect outInsets) { argument
1176 outInsets.setEmpty();
1178 outInsets.set(mNinePatchInsets.opticalRect);
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java6919 Rect outInsets) {
6920 outInsets.setEmpty();
6923 getNonDecorInsetsLw(displayRotation, displayWidth, displayHeight, outInsets);
6924 outInsets.top = mStatusBarHeight;
6929 Rect outInsets) {
6930 outInsets.setEmpty();
6936 outInsets.bottom = getNavigationBarHeight(displayRotation, mUiMode);
6938 outInsets.right = getNavigationBarWidth(displayRotation, mUiMode);
6940 outInsets.left = getNavigationBarWidth(displayRotation, mUiMode);
6918 getStableInsetsLw(int displayRotation, int displayWidth, int displayHeight, Rect outInsets) argument
6928 getNonDecorInsetsLw(int displayRotation, int displayWidth, int displayHeight, Rect outInsets) argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java7045 public void getStableInsets(int displayId, Rect outInsets) throws RemoteException { argument
7047 getStableInsetsLocked(displayId, outInsets);
7051 void getStableInsetsLocked(int displayId, Rect outInsets) { argument
7052 outInsets.setEmpty();
7056 mPolicy.getStableInsetsLw(di.rotation, di.logicalWidth, di.logicalHeight, outInsets);

Completed in 2809 milliseconds