Searched defs:insets (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewGroup.java3330 protected boolean fitSystemWindows(Rect insets) { argument
3331 boolean done = super.fitSystemWindows(insets);
3336 done = children[i].fitSystemWindows(insets);
H A DView.java3064 * Apply the insets for system windows to this view, if the FITS_SYSTEM_WINDOWS flag
3067 * @param insets Insets for system windows
3069 * @return True if this view applied the insets, false otherwise
3071 protected boolean fitSystemWindows(Rect insets) { argument
3073 mPaddingLeft = insets.left;
3074 mPaddingTop = insets.top;
3075 mPaddingRight = insets.right;
3076 mPaddingBottom = insets.bottom;
4061 * then and covered insets are used for the window to position its content
4082 final Rect insets
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java1918 protected boolean fitSystemWindows(Rect insets) { argument
1919 mFrameOffsets.set(insets);
1923 return super.fitSystemWindows(insets);

Completed in 634 milliseconds