Home | History | Annotate | Download | only in qs

Lines Matching defs:Icon

316     public static abstract class Icon {
321 return Icon.class.hashCode();
325 public static class ResourceIcon extends Icon {
326 private static final SparseArray<Icon> ICONS = new SparseArray<Icon>();
334 public static Icon get(int resId) {
335 Icon icon = ICONS.get(resId);
336 if (icon == null) {
337 icon = new ResourceIcon(resId);
338 ICONS.put(resId, icon);
340 return icon;
400 public Icon icon;
410 || !Objects.equals(other.icon, icon)
417 other.icon = icon;
433 sb.append(",icon=").append(icon);