Searched refs:insetTop (Results 1 - 7 of 7) sorted by relevance

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DDrawableLayoutDirectionHelper.java35 int insetStart, int insetTop, int insetEnd, int insetBottom, View view) {
38 return createRelativeInsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom,
47 int insetStart, int insetTop, int insetEnd, int insetBottom, Context context) {
54 return createRelativeInsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom,
63 int insetStart, int insetTop, int insetEnd, int insetBottom, int layoutDirection) {
65 return createRelativeInsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom,
70 int insetStart, int insetTop, int insetEnd, int insetBottom, boolean isRtl) {
72 return new InsetDrawable(drawable, insetEnd, insetTop, insetStart, insetBottom);
74 return new InsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom);
34 createRelativeInsetDrawable(Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, View view) argument
46 createRelativeInsetDrawable(Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, Context context) argument
62 createRelativeInsetDrawable(Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, int layoutDirection) argument
69 createRelativeInsetDrawable(Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, boolean isRtl) argument
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
H A DStatusBarBackgroundLayout.java86 final int insetTop = ((WindowInsets) mLastInsets).getSystemWindowInsetTop();
87 if (insetTop > 0) {
88 mStatusBarBackground.setBounds(0, 0, getWidth(), insetTop);
/frameworks/support/design/src/android/support/design/widget/
H A DCollapsingToolbarLayout.java418 final int insetTop = mLastInsets.getSystemWindowInsetTop();
422 if (child.getTop() < insetTop) {
425 ViewCompat.offsetTopAndBottom(child, insetTop);
1071 final int insetTop = mLastInsets != null ? mLastInsets.getSystemWindowInsetTop() : 0;
1076 return Math.min((minHeight * 2) + insetTop, getHeight());
1261 final int insetTop = mLastInsets != null ? mLastInsets.getSystemWindowInsetTop() : 0;
1283 if (mStatusBarScrim != null && insetTop > 0) {
1289 CollapsingToolbarLayout.this) - insetTop;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DInsetDrawable.java82 * @param insetTop Top inset in pixels.
86 public InsetDrawable(@Nullable Drawable drawable, int insetLeft, int insetTop, argument
91 mState.mInsetTop = insetTop;
H A DVectorDrawable.java717 final int insetTop = a.getDimensionPixelOffset(
723 state.mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom);
1031 final int insetTop = Drawable.scaleFromDensity(
1037 mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom);
H A DGradientDrawable.java1303 final int insetTop = a.getDimensionPixelSize(
1309 state.mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDelegateImplV9.java1645 * @param insetTop the current top system window inset
1648 int updateStatusGuard(int insetTop) { argument
1664 insets.set(0, insetTop, 0, 0);
1667 final int newMargin = localInsets.top == 0 ? insetTop : 0;
1670 mlp.topMargin = insetTop;
1678 insetTop));
1681 if (lp.height != insetTop) {
1682 lp.height = insetTop;
1697 insetTop = 0;
1715 return insetTop;
[all...]

Completed in 172 milliseconds