Searched defs:insetTop (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DDrawableLayoutDirectionHelper.java37 int insetStart, int insetTop, int insetEnd, int insetBottom, View view) {
40 return createRelativeInsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom,
50 int insetStart, int insetTop, int insetEnd, int insetBottom, Context context) {
57 return createRelativeInsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom,
68 int insetStart, int insetTop, int insetEnd, int insetBottom, int layoutDirection) {
69 return createRelativeInsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom,
74 int insetStart, int insetTop, int insetEnd, int insetBottom, boolean isRtl) {
76 return new InsetDrawable(drawable, insetEnd, insetTop, insetStart, insetBottom);
78 return new InsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom);
36 createRelativeInsetDrawable(Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, View view) argument
49 createRelativeInsetDrawable(Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, Context context) argument
67 createRelativeInsetDrawable(Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, int layoutDirection) argument
73 createRelativeInsetDrawable(Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, boolean isRtl) argument
/frameworks/base/graphics/java/android/graphics/drawable/
H A DInsetDrawable.java94 * @param insetTop Top inset in pixels.
98 public InsetDrawable(@Nullable Drawable drawable, int insetLeft, int insetTop, argument
103 mState.mInsetTop = new InsetValue(0f, insetTop);

Completed in 411 milliseconds