Home | History | Annotate | Download | only in shadows

Lines Matching defs:color

10   private int color;
14 public void __constructor__(int color, PorterDuff.Mode mode) {
15 this.color = color;
20 public void setColor(int color) {
21 this.color = color;
31 return 31 * mode.hashCode() + color;
35 * @return Returns the ARGB color used to tint the source pixels when this filter
39 return color;
43 * @return Returns the Porter-Duff mode used to composite this color filter's
44 * color with the source pixel when this filter is applied.