Home | History | Annotate | Download | only in launcher2

Lines Matching refs:info

67     public ApplicationInfo(LauncherActivityInfo info, UserHandle user, IconCache iconCache,
70 this.componentName = info.getComponentName();
73 int appFlags = info.getApplicationInfo().flags;
80 firstInstallTime = info.getFirstInstallTime();
81 iconCache.getTitleAndIcon(this, info, labelCache);
84 intent.setComponent(info.getComponentName());
91 public ApplicationInfo(ApplicationInfo info) {
92 super(info);
93 componentName = info.componentName;
94 title = info.title.toString();
95 intent = new Intent(info.intent);
96 flags = info.flags;
97 firstInstallTime = info.firstInstallTime;
108 for (ApplicationInfo info: list) {
109 Log.d(tag, " title=\"" + info.title + "\" iconBitmap="
110 + info.iconBitmap + " firstInstallTime="
111 + info.firstInstallTime);