Searched defs:contentInsets (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java39 public void resized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets, argument
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java399 public Rect getTranslatedContentInsets(Rect contentInsets) { argument
401 mContentInsetsBuffer.set(contentInsets);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java136 public void setInsets(IWindow window, int touchable, Rect contentInsets, argument
/frameworks/base/core/java/android/view/
H A DSurfaceView.java808 public void resized(Rect frame, Rect overscanInsets, Rect contentInsets, argument
H A DViewTreeObserver.java207 public final Rect contentInsets = new Rect(); field in class:ViewTreeObserver.InternalInsetsInfo
258 contentInsets.setEmpty();
265 return contentInsets.isEmpty()
273 int result = contentInsets.hashCode();
287 contentInsets.equals(other.contentInsets) &&
293 contentInsets.set(other.contentInsets);
H A DViewRootImpl.java1397 Rect contentInsets = mDispatchContentInsets;
1402 && (!mPendingContentInsets.equals(contentInsets) ||
1404 contentInsets = mPendingContentInsets;
1409 contentInsets = new Rect(contentInsets.left + outsets.left,
1410 contentInsets.top + outsets.top, contentInsets.right + outsets.right,
1411 contentInsets.bottom + outsets.bottom);
1413 mLastWindowInsets = new WindowInsets(contentInsets,
2124 final Rect contentInsets;
5959 dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw, Configuration newConfig, Rect backDropFrame, boolean forceLayout, boolean alwaysConsumeNavBar) argument
7000 resized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw, Configuration newConfig, Rect backDropFrame, boolean forceLayout, boolean alwaysConsumeNavBar) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java237 Rect contentInsets, Rect visibleInsets, Region touchableArea) {
238 mService.setInsetsWindow(this, window, touchableInsets, contentInsets,
236 setInsets(IWindow window, int touchableInsets, Rect contentInsets, Rect visibleInsets, Region touchableArea) argument
H A DAppTransition.java902 Animation createThumbnailAspectScaleAnimationLocked(Rect appRect, @Nullable Rect contentInsets, argument
962 if (contentInsets != null) {
963 mTmpToClipRect.inset((int) (-contentInsets.left * scaleW),
964 (int) (-contentInsets.top * scaleW),
965 (int) (-contentInsets.right * scaleW),
966 (int) (-contentInsets.bottom * scaleW));
1050 int uiMode, int orientation, int transit, Rect containingFrame, Rect contentInsets,
1086 mTmpFromClipRect.inset(contentInsets);
1087 mNextAppTransitionInsets.set(contentInsets);
1092 (appWidth - contentInsets
1049 createAspectScaledThumbnailEnterExitAnimationLocked(int thumbTransitState, int uiMode, int orientation, int transit, Rect containingFrame, Rect contentInsets, @Nullable Rect surfaceInsets, boolean freeform, int taskId) argument
1348 createRelaunchAnimation(Rect containingFrame, Rect contentInsets) argument
[all...]
H A DWindowState.java2303 final Rect contentInsets = mLastContentInsets;
2315 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets,
2323 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets,
2378 private void dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets, argument
2383 mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets, outsets,
H A DWindowManagerService.java2617 void setInsetsWindow(Session session, IWindow client, int touchableInsets, Rect contentInsets, argument
2624 + ", contentInsets=" + w.mGivenContentInsets + " -> " + contentInsets
2630 w.mGivenContentInsets.set(contentInsets);
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java902 public final Rect contentInsets = new Rect(); field in class:VoiceInteractionSession.Insets
944 info.contentInsets.set(mTmpInsets.contentInsets);
945 info.visibleInsets.set(mTmpInsets.contentInsets);
1488 * sets {@link Insets#contentInsets outInsets.contentInsets.top} to the height
1496 outInsets.contentInsets.left = 0;
1497 outInsets.contentInsets.bottom = 0;
1498 outInsets.contentInsets.right = 0;
1500 outInsets.contentInsets
[all...]

Completed in 2359 milliseconds