/frameworks/support/compat/java/android/support/v4/widget/ |
D | ImageViewCompat.java | 34 void setImageTintList(ImageView view, ColorStateList tintList); in setImageTintList() argument 50 public void setImageTintList(ImageView view, ColorStateList tintList) { in setImageTintList() argument 52 ((TintableImageSourceView) view).setSupportImageTintList(tintList); in setImageTintList() 79 public void setImageTintList(ImageView view, ColorStateList tintList) { in setImageTintList() argument 80 view.setImageTintList(tintList); in setImageTintList() 141 public static void setImageTintList(ImageView view, ColorStateList tintList) { in setImageTintList() argument 142 IMPL.setImageTintList(view, tintList); in setImageTintList()
|
/frameworks/support/compat/ics/android/support/v4/graphics/drawable/ |
D | DrawableWrapperApi14.java | 140 final ColorStateList tintList = (isCompatTintEnabled() && mState != null) in isStateful() local 143 return (tintList != null && tintList.isStateful()) || mDrawable.isStateful(); in isStateful() 293 final ColorStateList tintList = mState.mTint; in updateTint() local 296 if (tintList != null && tintMode != null) { in updateTint() 297 final int color = tintList.getColorForState(state, tintList.getDefaultColor()); in updateTint()
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
D | AppCompatBackgroundHelper.java | 178 final ColorStateList tintList = ViewCompat.getBackgroundTintList(mView); in applyFrameworkTintUsingColorFilter() local 179 if (tintList != null) { in applyFrameworkTintUsingColorFilter() 181 info.mTintList = tintList; in applyFrameworkTintUsingColorFilter()
|
D | AppCompatImageHelper.java | 201 final ColorStateList tintList = ImageViewCompat.getImageTintList(mView); in applyFrameworkTintUsingColorFilter() local 202 if (tintList != null) { in applyFrameworkTintUsingColorFilter() 204 info.mTintList = tintList; in applyFrameworkTintUsingColorFilter()
|
D | AppCompatTextHelper.java | 272 final ColorStateList tintList = drawableManager.getTintList(context, drawableId); in createTintInfo() local 273 if (tintList != null) { in createTintInfo() 276 tintInfo.mTintList = tintList; in createTintInfo()
|
D | AppCompatDrawableManager.java | 262 final ColorStateList tintList = getTintList(context, resId); in tintDrawable() local 263 if (tintList != null) { in tintDrawable() 269 DrawableCompat.setTintList(drawable, tintList); in tintDrawable() 570 @NonNull ColorStateList tintList) { in addTintListToCache() argument 579 themeTints.append(resId, tintList); in addTintListToCache()
|
/frameworks/support/design/src/android/support/design/internal/ |
D | NavigationMenuItemView.java | 251 void setIconTintList(ColorStateList tintList) { in setIconTintList() argument 252 mIconTintList = tintList; in setIconTintList()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawable/ |
D | UserIconDrawable.java | 266 public void setTintList(ColorStateList tintList) { in setTintList() argument 267 mTintColor = tintList; in setTintList()
|
/frameworks/support/compat/java/android/support/v4/view/ |
D | ViewCompat.java | 797 public void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument 799 ((TintableBackgroundView) view).setSupportBackgroundTintList(tintList); in setBackgroundTintList() 1320 public void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument 1321 view.setBackgroundTintList(tintList); in setBackgroundTintList() 2983 public static void setBackgroundTintList(View view, ColorStateList tintList) { in setBackgroundTintList() argument 2984 IMPL.setBackgroundTintList(view, tintList); in setBackgroundTintList()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | Icon.java | 641 public Icon setTintList(ColorStateList tintList) { in setTintList() argument 642 mTintList = tintList; in setTintList()
|
/frameworks/support/design/src/android/support/design/widget/ |
D | TextInputLayout.java | 1295 public void setPasswordVisibilityToggleTintList(@Nullable ColorStateList tintList) { in setPasswordVisibilityToggleTintList() argument 1296 mPasswordToggleTintList = tintList; in setPasswordVisibilityToggleTintList()
|
/frameworks/base/core/java/android/widget/ |
D | TextView.java | 3288 final ColorStateList tintList = mDrawables.mTintList; 3309 dr.setTintList(tintList);
|