HomeSort by relevance Sort by last modified time
    Searched refs:tint (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/dng_sdk/source/
dng_temperature.h 15 * Representation of color temperature and offset (tint) using black body
49 real64 tint)
52 , fTint (tint )
77 void SetTint (real64 tint)
79 fTint = tint;
82 real64 Tint () const
  /frameworks/support/compat/ics/android/support/v4/graphics/drawable/
TintAwareDrawable.java 34 void setTint(@ColorInt int tint);
35 void setTintList(ColorStateList tint);
  /frameworks/support/compat/java/android/support/v4/view/
TintableBackgroundView.java 30 * Applies a tint to the background drawable. Does not modify the current tint
34 * mutate the drawable and apply the specified tint and tint mode.
36 * @param tint the tint to apply, may be {@code null} to clear tint
40 void setSupportBackgroundTintList(@Nullable ColorStateList tint);
43 * Return the tint applied to the background drawable, if specified.
45 * @return the tint applied to the background drawabl
    [all...]
MenuItemCompat.java 104 void setIconTintList(MenuItem item, ColorStateList tint);
185 public void setIconTintList(MenuItem item, ColorStateList tint) {
252 public void setIconTintList(MenuItem item, ColorStateList tint) {
253 item.setIconTintList(tint);
642 * Applies a tint to the item's icon. Does not modify the
643 * current tint mode of that item, which is {@link PorterDuff.Mode#SRC_IN} by default.
646 * automatically mutate the icon and apply the specified tint and
647 * tint mode.
649 * @param tint the tint to apply, may be {@code null} to clear tin
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AppCompatBackgroundHelper.java 52 ColorStateList tint = mDrawableManager local
54 if (tint != null) {
55 setInternalBackgroundTint(tint);
75 // Update the default background tint
84 // We don't know that this drawable is, so we need to clear the default background tint
89 void setSupportBackgroundTintList(ColorStateList tint) {
93 mBackgroundTint.mTintList = tint;
122 // effect on any widgets using the compat tint on API 21 (EditText)
136 void setInternalBackgroundTint(ColorStateList tint) {
137 if (tint != null)
    [all...]
AppCompatImageHelper.java 108 void setSupportImageTintList(ColorStateList tint) {
112 mImageTint.mTintList = tint;
145 // effect on any widgets using the compat tint on API 21
159 void setInternalImageTint(ColorStateList tint) {
160 if (tint != null) {
164 mInternalImageTint.mTintList = tint;
175 // On API 22+, if we're using an internal compat image source tint, we're also
176 // responsible for applying any custom tint set via the framework impl
184 // API 19 and below doesn't have framework tint
190 * Applies the framework image source tint to a view, but using the compat method (ColorFilter
    [all...]
AppCompatDrawableManager.java 204 // Tint it if needed
264 // First mutate the Drawable, then wrap it and set the tint list
298 // If we didn't tint using a ColorFilter, and we're set to fail if we don't
525 ColorStateList tint = getTintListFromCache(context, resId); local
527 if (tint == null) {
530 tint = getColorStateList(context, R.color.abc_tint_edittext);
532 tint = getColorStateList(context, R.color.abc_tint_switch_track);
534 tint = createSwitchThumbColorStateList(context);
536 tint = createDefaultButtonColorStateList(context);
538 tint = createBorderlessButtonColorStateList(context)
    [all...]
AppCompatImageButton.java 43 * <li>Allows dynamic tint of its background via the background tint methods in
45 * <li>Allows setting of the background tint using {@link R.attr#backgroundTint} and
47 * <li>Allows dynamic tint of its image via the image tint methods in
49 * <li>Allows setting of the image tint using {@link R.attr#tint} and
142 public void setSupportBackgroundTintList(@Nullable ColorStateList tint) {
144 mBackgroundTintHelper.setSupportBackgroundTintList(tint);
197 public void setSupportImageTintList(@Nullable ColorStateList tint) {
    [all...]
AppCompatImageView.java 42 * <li>Allows dynamic tint of its background via the background tint methods in
44 * <li>Allows setting of the background tint using {@link R.attr#backgroundTint} and
46 * <li>Allows dynamic tint of its image via the image tint methods in
48 * <li>Allows setting of the image tint using {@link R.attr#tint} and
152 public void setSupportBackgroundTintList(@Nullable ColorStateList tint) {
154 mBackgroundTintHelper.setSupportBackgroundTintList(tint);
208 public void setSupportImageTintList(@Nullable ColorStateList tint) {
    [all...]
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
IntentButtonProvider.java 38 public boolean tint = true; field in class:IntentButtonProvider.IntentButton.IconState
  /frameworks/support/compat/java/android/support/v4/widget/
TintableCompoundButton.java 31 * Applies a tint to the button drawable. Does not modify the current tint
36 * should automatically mutate the drawable and apply the specified tint and tint mode.
38 * @param tint the tint to apply, may be {@code null} to clear tint
40 void setSupportButtonTintList(@Nullable ColorStateList tint);
43 * Returns the tint applied to the button drawable
51 * Specifies the blending mode which should be used to apply the tint specified b
    [all...]
CompoundButtonCompat.java 56 public void setButtonTintList(CompoundButton button, ColorStateList tint) {
58 ((TintableCompoundButton) button).setSupportButtonTintList(tint);
108 public void setButtonTintList(CompoundButton button, ColorStateList tint) {
109 button.setButtonTintList(tint);
139 * Applies a tint to the button drawable. Does not modify the current tint
143 * automatically mutate the drawable and apply the specified tint and tint
146 * @param tint the tint to apply, may be {@code null} to clear tin
    [all...]
TintableImageSourceView.java 36 * Applies a tint to the image drawable. Does not modify the current tint
40 * mutate the drawable and apply the specified tint and tint mode.
42 * @param tint the tint to apply, may be {@code null} to clear tint
46 void setSupportImageTintList(@Nullable ColorStateList tint);
49 * Return the tint applied to the image drawable, if specified.
51 * @return the tint applied to the image drawabl
    [all...]
  /frameworks/support/compat/tests/java/android/support/v4/graphics/
TestTintAwareDrawable.java 36 public void setTintList(ColorStateList tint) {
DrawableCompatTest.java 130 // Assert that the tint aware drawable was not wrapped
138 final ColorStateList tint = ColorStateList.valueOf(Color.BLACK); local
141 // Now set the tint list and mode using DrawableCompat
142 DrawableCompat.setTintList(d, tint);
146 verify(d).setTintList(tint);
  /frameworks/support/design/tests/src/android/support/design/testutils/
BottomNavigationViewActions.java 35 * Sets item icon tint list on the content of the bottom navigation view.
37 public static ViewAction setItemIconTintList(@Nullable final ColorStateList tint) {
46 return "Set item icon tint list";
54 navigationView.setItemIconTintList(tint);
  /frameworks/support/compat/api21/android/support/v4/graphics/drawable/
DrawableWrapperApi21.java 65 public void setTintList(ColorStateList tint) {
67 super.setTintList(tint);
69 mDrawable.setTintList(tint);
  /frameworks/support/compat/java/android/support/v4/graphics/drawable/
DrawableCompat.java 67 public void setTint(Drawable drawable, int tint) {
69 ((TintAwareDrawable) drawable).setTint(tint);
73 public void setTintList(Drawable drawable, ColorStateList tint) {
75 ((TintAwareDrawable) drawable).setTintList(tint);
231 public void setTint(Drawable drawable, int tint) {
232 drawable.setTint(tint);
236 public void setTintList(Drawable drawable, ColorStateList tint) {
237 drawable.setTintList(tint);
416 * Specifies a tint for {@code drawable}.
419 * @param tint Color to use for tinting this drawabl
    [all...]
  /frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
Cat.java 126 public static void tint(int color, Drawable ... ds) { method in class:Cat
155 tint(mBodyColor, D.body, D.head, D.leg1, D.leg2, D.leg3, D.leg4, D.tail, method
157 tint(0x20000000, D.leg2Shadow, D.tailShadow);
159 tint(0xFFFFFFFF, D.leftEye, D.rightEye, D.mouth, D.nose);
161 tint(isDark(mBodyColor) ? 0xFFEF9A9A : 0x20D50000, D.leftEarInside, D.rightEarInside);
163 tint(chooseP(nsr, P_BELLY_COLORS), D.belly);
164 tint(chooseP(nsr, P_BELLY_COLORS), D.back);
166 tint(faceColor, D.faceSpot); method
168 tint(0xFF000000, D.mouth, D.nose);
174 tint(0xFFFFFFFF, D.foot1, D.foot2, D.foot3, D.foot4)
    [all...]
  /frameworks/support/design/base/android/support/design/widget/
CircularBorderDrawable.java 125 void setBorderTint(ColorStateList tint) {
126 if (tint != null) {
127 mCurrentBorderTintColor = tint.getColorForState(getState(), mCurrentBorderTintColor);
129 mBorderTint = tint;
  /frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
DrawableWrapper.java 194 public void setTint(int tint) {
195 DrawableCompat.setTint(mDrawable, tint);
199 public void setTintList(ColorStateList tint) {
200 DrawableCompat.setTintList(mDrawable, tint);
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
AppCompatTintableViewActions.java 40 * Sets the passed color state list as the background tint on a {@link View}.
42 public static ViewAction setBackgroundTintList(final ColorStateList tint) {
51 return "set background tint list";
58 ViewCompat.setBackgroundTintList(view, tint);
66 * Sets the passed mode as the background tint mode on a <code>View</code>.
77 return "set background tint mode";
92 * Sets the passed color state list as the image source tint on a {@link View}.
94 public static ViewAction setImageSourceTintList(final ColorStateList tint) {
103 return "set image source tint list";
110 ImageViewCompat.setImageTintList((ImageView) view, tint);
    [all...]
  /frameworks/support/v7/cardview/src/android/support/v7/widget/
RoundRectDrawable.java 170 public void setTintList(ColorStateList tint) {
171 mTint = tint;
204 * Ensures the tint filter is consistent with the current tint color and
207 private PorterDuffColorFilter createTintFilter(ColorStateList tint, PorterDuff.Mode tintMode) {
208 if (tint == null || tintMode == null) {
211 final int color = tint.getColorForState(getState(), Color.TRANSPARENT);
  /packages/apps/Car/Radio/src/com/android/car/radio/
RadioDisplayController.java 138 int tint = enabled local
143 // No need to tint the play button because its drawable already contains a disabled
149 // No need to tint the play button because its drawable already contains a disabled
156 mForwardSeekButton.setColorFilter(tint);
161 mBackwardSeekButton.setColorFilter(tint);
166 mPresetsListButton.setColorFilter(tint);
171 mAddPresetsButton.setColorFilter(tint);
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISub.aidl 105 * Set SIM icon tint color by simInfo index
106 * @param tint the icon tint color of the SIM
110 int setIconTint(int tint, int subId);

Completed in 1573 milliseconds

1 2 3 4 5 6