Searched defs:iconRes (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DDefaultLayoutParser.java191 public UriShortcutParser(Resources iconRes) { argument
192 super(iconRes);
H A DAutoInstallsLayout.java414 public ShortcutParser(Resources iconRes) { argument
415 mIconRes = iconRes;
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DCompactPhotoSelectionFragment.java93 public int iconRes; field in class:CompactPhotoSelectionFragment.Photo
131 dest.writeInt(iconRes);
144 iconRes = source.readInt();
246 mContext, photo.titleRes, photo.iconRes, photo.syncAdapterPackageName));
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DContactsSource.java62 public int iconRes; field in class:ContactsSource
133 return pm.getDrawable(this.summaryResPackageName, this.iconRes, null);
135 return context.getResources().getDrawable(this.iconRes);
193 public int iconRes; field in class:ContactsSource.DataKind
227 public DataKind(String mimeType, int titleRes, int iconRes, int weight, boolean editable) { argument
230 this.iconRes = iconRes;
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DAccountType.java85 public int iconRes; field in class:AccountType
280 return getDisplayIcon(context, titleRes, iconRes, syncAdapterPackageName);
283 public static Drawable getDisplayIcon(Context context, int titleRes, int iconRes, argument
287 return pm.getDrawable(syncAdapterPackageName, iconRes, null);
289 return context.getResources().getDrawable(iconRes);

Completed in 140 milliseconds