Lines Matching refs:label
76 public static View initSnippet(View snippetView, CharSequence label, Drawable icon) { in initSnippet() argument
78 ((TextView)snippetView.findViewById(R.id.app_name)).setText(label); in initSnippet()
135 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label); in initSnippetForNewApp()
153 CharSequence label; field in PackageUtil.AppSnippet
155 public AppSnippet(CharSequence label, Drawable icon) { in AppSnippet() argument
156 this.label = label; in AppSnippet()
175 CharSequence label = null; in getAppSnippet() local
180 label = res.getText(appInfo.labelRes); in getAppSnippet()
184 if (label == null) { in getAppSnippet()
185 label = (appInfo.nonLocalizedLabel != null) ? in getAppSnippet()
200 return new PackageUtil.AppSnippet(label, icon); in getAppSnippet()