HomeSort by relevance Sort by last modified time
    Searched refs:tint (Results 1 - 25 of 144) 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/api21/android/support/v4/widget/
CompoundButtonCompatLollipop.java 25 static void setButtonTintList(CompoundButton button, ColorStateList tint) {
26 button.setButtonTintList(tint);
  /frameworks/support/compat/gingerbread/android/support/v4/graphics/drawable/
TintAwareDrawable.java 35 void setTint(@ColorInt int tint);
36 void setTintList(ColorStateList tint);
DrawableCompatBase.java 34 public static void setTint(Drawable drawable, int tint) {
36 ((TintAwareDrawable) drawable).setTint(tint);
40 public static void setTintList(Drawable drawable, ColorStateList tint) {
42 ((TintAwareDrawable) drawable).setTintList(tint);
  /frameworks/support/compat/gingerbread/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...]
  /frameworks/support/compat/java/android/support/v4/widget/
CompoundButtonCompat.java 48 void setButtonTintList(CompoundButton button, ColorStateList tint);
57 public void setButtonTintList(CompoundButton button, ColorStateList tint) {
58 CompoundButtonCompatGingerbread.setButtonTintList(button, tint);
84 public void setButtonTintList(CompoundButton button, ColorStateList tint) {
85 CompoundButtonCompatLollipop.setButtonTintList(button, tint);
114 * Applies a tint to the button drawable. Does not modify the current tint
118 * automatically mutate the drawable and apply the specified tint and tint
121 * @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
87 // We don't know that this drawable is, so we need to clear the default background tint
95 void setSupportBackgroundTintList(ColorStateList tint) {
100 // Store the original tint and null out the applicable tint. updateBackgroundTint() will
101 // set mTintList to the tint to actually use
102 mBackgroundTint.mOriginalTintList = tint;
    [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
534 ColorStateList tint = useCache ? getTintListFromCache(context, resId) : null; local
536 if (tint == null) {
539 tint = getColorStateList(context, R.color.abc_tint_edittext);
541 tint = getColorStateList(context, R.color.abc_tint_switch_track);
543 tint = getColorStateList(context, R.color.abc_tint_switch_thumb);
545 tint = createDefaultButtonColorStateList(context, customTint);
547 tint = createBorderlessButtonColorStateList(context, customTint)
    [all...]
  /frameworks/support/compat/gingerbread/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 public 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...]
CompoundButtonCompatGingerbread.java 34 static void setButtonTintList(CompoundButton button, ColorStateList tint) {
36 ((TintableCompoundButton) button).setSupportButtonTintList(tint);
  /frameworks/support/compat/tests/java/android/support/v4/graphics/
TestTintAwareDrawable.java 36 public void setTintList(ColorStateList tint) {
DrawableCompatTest.java 124 // Assert that the tint aware drawable was not wrapped
132 final ColorStateList tint = ColorStateList.valueOf(Color.BLACK); local
135 // Now set the tint list and mode using DrawableCompat
136 DrawableCompat.setTintList(d, tint);
140 verify(d).setTintList(tint);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
NinePatchDrawable.java 67 public NinePatchDrawable tint (Color tint) { method in class:NinePatchDrawable
69 drawable.setPatch(new NinePatch(drawable.getPatch(), tint));
TextureRegionDrawable.java 64 public Drawable tint (Color tint) { method in class:TextureRegionDrawable
70 sprite.setColor(tint);
SpriteDrawable.java 84 public SpriteDrawable tint (Color tint) { method in class:SpriteDrawable
90 newSprite.setColor(tint);
TiledDrawable.java 95 public TiledDrawable tint (Color tint) { method in class:TiledDrawable
97 drawable.color.set(tint);
  /frameworks/support/compat/api21/android/support/v4/graphics/drawable/
DrawableCompatLollipop.java 47 public static void setTint(Drawable drawable, int tint) {
48 drawable.setTint(tint);
51 public static void setTintList(Drawable drawable, ColorStateList tint) {
52 drawable.setTintList(tint);
DrawableWrapperLollipop.java 63 public void setTintList(ColorStateList tint) {
65 super.setTintList(tint);
67 mDrawable.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/java/android/support/v4/graphics/drawable/
DrawableCompat.java 48 void setTint(Drawable drawable, int tint);
49 void setTintList(Drawable drawable, ColorStateList tint);
89 public void setTint(Drawable drawable, int tint) {
90 DrawableCompatBase.setTint(drawable, tint);
94 public void setTintList(Drawable drawable, ColorStateList tint) {
95 DrawableCompatBase.setTintList(drawable, tint);
219 public void setTint(Drawable drawable, int tint) {
220 DrawableCompatLollipop.setTint(drawable, tint);
224 public void setTintList(Drawable drawable, ColorStateList tint) {
225 DrawableCompatLollipop.setTintList(drawable, tint);
    [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 190 public void setTint(int tint) {
191 DrawableCompat.setTint(mDrawable, tint);
195 public void setTintList(ColorStateList tint) {
196 DrawableCompat.setTintList(mDrawable, tint);
  /frameworks/support/v7/cardview/api21/android/support/v7/widget/
RoundRectDrawable.java 168 public void setTintList(ColorStateList tint) {
169 mTint = tint;
202 * Ensures the tint filter is consistent with the current tint color and
205 private PorterDuffColorFilter createTintFilter(ColorStateList tint, PorterDuff.Mode tintMode) {
206 if (tint == null || tintMode == null) {
209 final int color = tint.getColorForState(getState(), Color.TRANSPARENT);
  /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 673 milliseconds

1 2 3 4 5 6