Searched defs:insetBottom (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.java96 * @param insetBottom Bottom inset in pixels.
99 int insetRight, int insetBottom) {
105 mState.mInsetBottom = new InsetValue(0f, insetBottom);
98 InsetDrawable(@ullable Drawable drawable, int insetLeft, int insetTop, int insetRight, int insetBottom) argument

Completed in 1519 milliseconds