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 134 private WindowInsetsCompat mLastInsets;
549 return mLastInsets != null ? mLastInsets.getSystemWindowInsetTop() : 0;
561 if (newInsets != mLastInsets) {
562 mLastInsets = newInsets;
    [all...]
CollapsingToolbarLayout.java 128 private WindowInsetsCompat mLastInsets;
254 if (mLastInsets != insets) {
255 mLastInsets = insets;
280 final int topInset = mLastInsets != null ? mLastInsets.getSystemWindowInsetTop() : 0;
434 if (mLastInsets != null && !ViewCompat.getFitsSystemWindows(child)) {
435 final int insetTop = mLastInsets.getSystemWindowInsetTop();
    [all...]
CoordinatorLayout.java 165 private WindowInsetsCompat mLastInsets;
224 if (mLastInsets == null && ViewCompat.getFitsSystemWindows(this)) {
335 if (mLastInsets != insets) {
336 mLastInsets = insets;
348 return mLastInsets;
699 final boolean applyInsets = mLastInsets != null && ViewCompat.getFitsSystemWindows(this);
726 final int horizInsets = mLastInsets.getSystemWindowInsetLeft()
727 + mLastInsets.getSystemWindowInsetRight();
728 final int vertInsets = mLastInsets.getSystemWindowInsetTop()
729 + mLastInsets.getSystemWindowInsetBottom()
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
DrawerLayout.java 227 private Object mLastInsets;
442 mLastInsets = insets;
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 

Completed in 68 milliseconds