Searched refs:insets (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewRoot.java813 if (DEBUG_LAYOUT) Log.v(TAG, "Content insets changing to: "
818 if (DEBUG_LAYOUT) Log.v(TAG, "Visible insets changing to: "
907 // If this window is giving internal insets to the window
910 // insets to cause it to effectively ignore the content of
915 // computed insets.
973 if (DEBUG_LAYOUT) Log.v(TAG, "Content insets changing to: "
978 if (DEBUG_LAYOUT) Log.v(TAG, "Visible insets changing to: "
1193 ViewTreeObserver.InternalInsetsInfo insets = attachInfo.mGivenInternalInsets;
1199 attachInfo.mTreeObserver.dispatchOnComputeInternalInsets(insets);
1200 Rect contentInsets = insets
[all...]
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...]
H A DViewGroup.java3330 protected boolean fitSystemWindows(Rect insets) { argument
3331 boolean done = super.fitSystemWindows(insets);
3336 done = children[i].fitSystemWindows(insets);
/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 241 milliseconds