HomeSort by relevance Sort by last modified time
    Searched defs:mLastInsets (Results 1 - 8 of 8) sorted by null

  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
StatusBarBackgroundLayout.java 44 private Object mLastInsets; // Use generic Object type for compatibility
75 if (mLastInsets == null) {
85 if (mLastInsets != null) {
86 final int insetTop = ((WindowInsets) mLastInsets).getSystemWindowInsetTop();
110 mLastInsets = insets;
  /frameworks/support/design/src/android/support/design/widget/
AppBarLayout.java 137 private WindowInsetsCompat mLastInsets;
566 return mLastInsets != null ? mLastInsets.getSystemWindowInsetTop() : 0;
578 if (!objectEquals(mLastInsets, newInsets)) {
579 mLastInsets = newInsets;
    [all...]
CollapsingToolbarLayout.java 133 private WindowInsetsCompat mLastInsets;
270 if (!objectEquals(mLastInsets, newInsets)) {
271 mLastInsets = newInsets;
297 final int topInset = mLastInsets != null ? mLastInsets.getSystemWindowInsetTop() : 0;
416 if (mLastInsets != null && !ViewCompat.getFitsSystemWindows(child)) {
417 final int insetTop = mLastInsets.getSystemWindowInsetTop();
    [all...]
CoordinatorLayout.java 171 private WindowInsetsCompat mLastInsets;
229 if (mLastInsets == null && ViewCompat.getFitsSystemWindows(this)) {
340 if (!objectEquals(mLastInsets, insets)) {
341 mLastInsets = insets;
353 return mLastInsets;
726 final boolean applyInsets = mLastInsets != null && ViewCompat.getFitsSystemWindows(this);
753 final int horizInsets = mLastInsets.getSystemWindowInsetLeft()
754 + mLastInsets.getSystemWindowInsetRight();
755 final int vertInsets = mLastInsets.getSystemWindowInsetTop()
756 + mLastInsets.getSystemWindowInsetBottom()
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/widget/
DrawerLayout.java 226 private Object mLastInsets;
449 mLastInsets = insets;
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 

Completed in 96 milliseconds