Home
last modified time | relevance | path

Searched refs:compoundDrawables (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/view/
DNavigationBarButton.java97 Drawable[] compoundDrawables = getCompoundDrawables(); in getAllCompoundDrawables() local
98 drawables[0] = compoundDrawables[0]; // left in getAllCompoundDrawables()
99 drawables[1] = compoundDrawables[1]; // top in getAllCompoundDrawables()
100 drawables[2] = compoundDrawables[2]; // right in getAllCompoundDrawables()
101 drawables[3] = compoundDrawables[3]; // bottom in getAllCompoundDrawables()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DAppCompatTextHelperV17.java61 final Drawable[] compoundDrawables = mView.getCompoundDrawablesRelative(); in applyCompoundDrawablesTints() local
62 applyCompoundDrawableTint(compoundDrawables[0], mDrawableStartTint); in applyCompoundDrawablesTints()
63 applyCompoundDrawableTint(compoundDrawables[2], mDrawableEndTint); in applyCompoundDrawablesTints()
DAppCompatTextHelper.java256 final Drawable[] compoundDrawables = mView.getCompoundDrawables(); in applyCompoundDrawablesTints() local
257 applyCompoundDrawableTint(compoundDrawables[0], mDrawableLeftTint); in applyCompoundDrawablesTints()
258 applyCompoundDrawableTint(compoundDrawables[1], mDrawableTopTint); in applyCompoundDrawablesTints()
259 applyCompoundDrawableTint(compoundDrawables[2], mDrawableRightTint); in applyCompoundDrawablesTints()
260 applyCompoundDrawableTint(compoundDrawables[3], mDrawableBottomTint); in applyCompoundDrawablesTints()
/frameworks/support/design/tests/src/android/support/design/widget/
DTextInputLayoutTest.java397 final Drawable[] compoundDrawables = editText.getCompoundDrawables(); in testMaintainsLeftRightCompoundDrawables() local
398 assertSame(left, compoundDrawables[0]); in testMaintainsLeftRightCompoundDrawables()
399 assertSame(top, compoundDrawables[1]); in testMaintainsLeftRightCompoundDrawables()
400 assertSame(right, compoundDrawables[2]); in testMaintainsLeftRightCompoundDrawables()
401 assertSame(bottom, compoundDrawables[3]); in testMaintainsLeftRightCompoundDrawables()
424 final Drawable[] compoundDrawables = TextViewCompat.getCompoundDrawablesRelative(editText); in testMaintainsStartEndCompoundDrawables() local
425 assertSame(start, compoundDrawables[0]); in testMaintainsStartEndCompoundDrawables()
426 assertSame(top, compoundDrawables[1]); in testMaintainsStartEndCompoundDrawables()
427 assertSame(end, compoundDrawables[2]); in testMaintainsStartEndCompoundDrawables()
428 assertSame(bottom, compoundDrawables[3]); in testMaintainsStartEndCompoundDrawables()
/frameworks/support/design/tests/src/android/support/design/testutils/
DTestUtilsMatchers.java180 final Drawable[] compoundDrawables = view.getCompoundDrawables();
183 final Drawable startDrawable = isRtl ? compoundDrawables[2] : compoundDrawables[0];