Home | History | Annotate | Download | only in launcher2

Lines Matching defs:info

67     public ApplicationInfo(LauncherActivityInfo info, UserHandle user, IconCache iconCache,
70 this.componentName = info.getComponentName();
75 int appFlags = info.getApplicationInfo().flags;
82 firstInstallTime = info.getFirstInstallTime();
83 iconCache.getTitleAndIcon(this, info, labelCache);
86 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;
123 for (ApplicationInfo info: list) {
124 Log.d(tag, " title=\"" + info.title + "\" iconBitmap="
125 + info.iconBitmap + " firstInstallTime="
126 + info.firstInstallTime);