Searched defs:iconResource (Results 1 - 6 of 6) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListFilterView.java132 private void bindView(int iconResource, int textResource) { argument
133 if (iconResource != 0) {
135 mIcon.setImageResource(iconResource);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DShortcutInfo.java53 Intent.ShortcutIconResource iconResource; field in class:ShortcutInfo
68 if (info.iconResource != null) {
69 iconResource = new Intent.ShortcutIconResource();
70 iconResource.packageName = info.iconResource.packageName;
71 iconResource.resourceName = info.iconResource.resourceName;
136 if (iconResource != null) {
138 iconResource.packageName);
140 iconResource
[all...]
H A DInstallShortcutReceiver.java50 public static final String ICON_RESOURCE_NAME_KEY = "iconResource";
95 if (info.iconResource != null) {
96 json = json.key(ICON_RESOURCE_NAME_KEY).value(info.iconResource.resourceName);
98 .value(info.iconResource.packageName);
134 Intent.ShortcutIconResource iconResource =
136 iconResource.resourceName = iconResourceName;
137 iconResource.packageName = iconResourcePackageName;
138 data.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
164 Intent.ShortcutIconResource iconResource; field in class:InstallShortcutReceiver.PendingInstallShortcutInfo
196 Intent.ShortcutIconResource iconResource
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DShortcutInfo.java57 Intent.ShortcutIconResource iconResource; field in class:ShortcutInfo
107 if (info.iconResource != null) {
108 iconResource = new Intent.ShortcutIconResource();
109 iconResource.packageName = info.iconResource.packageName;
110 iconResource.resourceName = info.iconResource.resourceName;
197 if (iconResource != null) {
199 iconResource.packageName);
201 iconResource
[all...]
H A DInstallShortcutReceiver.java52 public static final String ICON_RESOURCE_NAME_KEY = "iconResource";
96 if (info.iconResource != null) {
97 json = json.key(ICON_RESOURCE_NAME_KEY).value(info.iconResource.resourceName);
99 .value(info.iconResource.packageName);
176 Intent.ShortcutIconResource iconResource =
178 iconResource.resourceName = iconResourceName;
179 iconResource.packageName = iconResourcePackageName;
180 data.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
206 Intent.ShortcutIconResource iconResource; field in class:InstallShortcutReceiver.PendingInstallShortcutInfo
233 Intent.ShortcutIconResource iconResource
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java5080 Integer iconResource, Integer labelResource) {
5096 bindLong(mStatusUpdateReplace, 5, iconResource);
5102 Integer iconResource, Integer labelResource) {
5117 bindLong(mStatusUpdateInsert, 4, iconResource);
5147 bindLong(mStatusAttributionUpdate, 2, iconResource);
5079 replaceStatusUpdate(Long dataId, long timestamp, String status, String resPackage, Integer iconResource, Integer labelResource) argument
5101 insertStatusUpdate(Long dataId, String status, String resPackage, Integer iconResource, Integer labelResource) argument

Completed in 175 milliseconds