Searched defs:Icon (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java104 boolean setIcon(Bitmap Icon) { return true; } argument
/frameworks/base/graphics/java/android/graphics/drawable/
H A DIcon.java59 public final class Icon implements Parcelable { class in inherits:Parcelable
60 private static final String TAG = "Icon";
99 * @return The type of image data held in this Icon. One of
111 * @return The {@link android.graphics.Bitmap} held by this {@link #TYPE_BITMAP} Icon.
126 * @return The length of the compressed bitmap byte array held by this {@link #TYPE_DATA} Icon.
139 * @return The offset into the byte array held by this {@link #TYPE_DATA} Icon at which
153 * @return The byte array held by this {@link #TYPE_DATA} Icon ctonaining compressed
167 * @return The {@link android.content.res.Resources} for this {@link #TYPE_RESOURCE} Icon.
178 * @return The package containing resources for this {@link #TYPE_RESOURCE} Icon.
189 * @return The resource ID for this {@link #TYPE_RESOURCE} Icon
428 private Icon(int mType) { method in class:Icon
701 private Icon(Parcel in) { method in class:Icon
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java460 public static abstract class Icon { class in class:QSTile
469 return Icon.class.hashCode();
477 public static class DrawableIcon extends Icon {
495 public static class ResourceIcon extends Icon {
496 private static final SparseArray<Icon> ICONS = new SparseArray<Icon>();
504 public static Icon get(int resId) {
505 Icon icon = ICONS.get(resId);
550 public Icon icon;

Completed in 3092 milliseconds