HomeSort by relevance Sort by last modified time
    Searched refs:AppEntry (Results 1 - 7 of 7) sorted by null

  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 86 public static class AppEntry {
87 public AppEntry(AppListLoader loader, ApplicationInfo info) {
153 public static final Comparator<AppEntry> ALPHA_COMPARATOR = new Comparator<AppEntry>() {
156 public int compare(AppEntry object1, AppEntry object2) {
211 public static class AppListLoader extends AsyncTaskLoader<List<AppEntry>> {
215 List<AppEntry> mApps;
232 @Override public List<AppEntry> loadInBackground() {
244 List<AppEntry> entries = new ArrayList<AppEntry>(apps.size())
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java 84 public static class AppEntry {
85 public AppEntry(AppListLoader loader, ApplicationInfo info) {
151 public static final Comparator<AppEntry> ALPHA_COMPARATOR = new Comparator<AppEntry>() {
154 public int compare(AppEntry object1, AppEntry object2) {
209 public static class AppListLoader extends AsyncTaskLoader<List<AppEntry>> {
213 List<AppEntry> mApps;
230 @Override public List<AppEntry> loadInBackground() {
242 List<AppEntry> entries = new ArrayList<AppEntry>(apps.size())
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 48 public void onRebuildComplete(ArrayList<AppEntry> apps);
89 public static class AppEntry extends SizeInfo {
118 AppEntry(Context context, ApplicationInfo info, long id) {
163 public static final Comparator<AppEntry> ALPHA_COMPARATOR = new Comparator<AppEntry>() {
166 public int compare(AppEntry object1, AppEntry object2) {
178 public static final Comparator<AppEntry> SIZE_COMPARATOR
179 = new Comparator<AppEntry>() {
182 public int compare(AppEntry object1, AppEntry object2)
    [all...]
AppOpsState.java 180 public static class AppEntry {
192 public AppEntry(AppOpsState state, ApplicationInfo info) {
270 private final AppEntry mApp;
273 public AppOpEntry(AppOpsManager.PackageOps pkg, AppOpsManager.OpEntry op, AppEntry app,
309 public AppEntry getAppEntry() {
407 AppEntry appEntry, AppOpsManager.OpEntry opEntry, boolean allowMerge, int switchOrder) {
410 if (last.getAppEntry() == appEntry) {
421 AppOpEntry entry = appEntry.getOpSwitch(opEntry.getOp());
426 entry = new AppOpEntry(pkgOps, opEntry, appEntry, switchOrder)
    [all...]
ManageApplications.java 76 import com.android.settings.applications.ApplicationsState.AppEntry;
348 ApplicationsState.AppEntry ae = mApplications.getAppEntry(i);
369 ApplicationsState.AppEntry ae = mApplications.getAppEntry(i);
539 private ArrayList<ApplicationsState.AppEntry> mBaseEntries;
540 private ArrayList<ApplicationsState.AppEntry> mEntries;
550 ArrayList<ApplicationsState.AppEntry> entries
561 mEntries = (ArrayList<ApplicationsState.AppEntry>)results.values;
605 Comparator<AppEntry> comparatorObj;
647 ArrayList<ApplicationsState.AppEntry> entries
672 ArrayList<ApplicationsState.AppEntry> applyPrefixFilter(CharSequence prefix
    [all...]
AppViewHolder.java 15 public ApplicationsState.AppEntry entry;
InstalledAppDetails.java 23 import com.android.settings.applications.ApplicationsState.AppEntry;
112 private ApplicationsState.AppEntry mAppEntry;
594 public void onRebuildComplete(ArrayList<AppEntry> apps) {
630 Log.w(TAG, "Missing AppEntry; maybe reinstalling?");
    [all...]

Completed in 251 milliseconds