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 208 public static class AppEntry {
220 public AppEntry(AppOpsState state, ApplicationInfo info) {
298 private final AppEntry mApp;
301 public AppOpEntry(AppOpsManager.PackageOps pkg, AppOpsManager.OpEntry op, AppEntry app,
337 public AppEntry getAppEntry() {
435 AppEntry appEntry, AppOpsManager.OpEntry opEntry, boolean allowMerge, int switchOrder) {
438 if (last.getAppEntry() == appEntry) {
449 AppOpEntry entry = appEntry.getOpSwitch(opEntry.getOp());
454 entry = new AppOpEntry(pkgOps, opEntry, appEntry, switchOrder)
    [all...]
ManageApplications.java 77 import com.android.settings.applications.ApplicationsState.AppEntry;
349 ApplicationsState.AppEntry ae = mApplications.getAppEntry(i);
370 ApplicationsState.AppEntry ae = mApplications.getAppEntry(i);
541 private ArrayList<ApplicationsState.AppEntry> mBaseEntries;
542 private ArrayList<ApplicationsState.AppEntry> mEntries;
552 ArrayList<ApplicationsState.AppEntry> entries
563 mEntries = (ArrayList<ApplicationsState.AppEntry>)results.values;
607 Comparator<AppEntry> comparatorObj;
649 ArrayList<ApplicationsState.AppEntry> entries
674 ArrayList<ApplicationsState.AppEntry> applyPrefixFilter(CharSequence prefix
    [all...]
AppViewHolder.java 15 public ApplicationsState.AppEntry entry;
InstalledAppDetails.java 23 import com.android.settings.applications.ApplicationsState.AppEntry;
113 private ApplicationsState.AppEntry mAppEntry;
609 public void onRebuildComplete(ArrayList<AppEntry> apps) {
645 Log.w(TAG, "Missing AppEntry; maybe reinstalling?");
    [all...]

Completed in 979 milliseconds