Lines Matching refs:activities

54  * activities that can handle the given intent and order found activities
57 * choice history the file can be omitted, thus the activities will be ordered
65 * activities and they may be inconsistent with the functionality of some of the clients.
114 * Defines a sorter that is responsible for sorting the activities
120 * Sorts the <code>activities</code> in descending order of relevance
124 * @param activities Activities to be sorted.
129 public void sort(Intent intent, List<ActivityResolveInfo> activities,
240 * List of activities that can handle the current intent.
270 * The sorter for ordering activities based on intent and past choices.
309 * Flag whether to reload the activities for the current intent.
314 * Policy for controlling how the model handles chosen activities.
337 * if the model should not be backed by a file. In this case the activities
402 * Gets the number of activities that can handle the intent.
440 List<ActivityResolveInfo> activities = mActivities;
441 final int activityCount = activities.size();
443 ActivityResolveInfo currentActivity = activities.get(i);
518 * with highest rank i.e. the first one in the list of activities that can
521 * @return The default activity, <code>null</code> id not activities.
594 * Sets the sorter for ordering activities based on historical data and an intent.
669 * activities for the current intent have been loaded, the
670 * most recent history has been read, and the activities
684 * Sorts the activities if necessary which is if there is a
685 * sorter, there are some activities to sort, and there is some
701 * Loads the activities for the current intent if needed which is
945 public void sort(Intent intent, List<ActivityResolveInfo> activities,
951 final int activityCount = activities.size();
953 ActivityResolveInfo activity = activities.get(i);
973 Collections.sort(activities);
977 Log.i(LOG_TAG, "Sorted: " + activities.get(i));
1122 * Keeps in sync the historical records and activities with the installed applications.