Searched defs:activities (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java91 public ActivityInfo[] activities; field in class:PackageInfo
258 dest.writeTypedArray(activities, parcelableFlags);
299 activities = source.createTypedArray(ActivityInfo.CREATOR);
H A DPackageParser.java328 int N = p.activities.size();
331 pi.activities = new ActivityInfo[N];
335 if (p.activities.get(i).info.enabled) num++;
337 pi.activities = new ActivityInfo[num];
340 final Activity activity = p.activities.get(i);
343 pi.activities[j++] = generateActivityInfo(p.activities.get(i), flags,
2094 owner.activities.add(a);
2130 owner.activities.add(a);
2567 final int NA = owner.activities
3453 public final ArrayList<Activity> activities = new ArrayList<Activity>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java65 * contain the MIME type in its type field. This allows activities to register
71 * {@link #ACTION_TECH_DISCOVERED}. If any activities respond to this intent neither
81 * Intent to start an activity when a tag is discovered and activities are registered for the
129 * {@link #ACTION_TAG_DISCOVERED}. If any activities respond to {@link #ACTION_NDEF_DISCOVERED}
130 * this intent will not be started. If any activities respond to this intent
139 * <p>This intent will not be started when a tag is discovered if any activities respond to
852 * messages completely (for all activities), you can include a
861 * <p>The API allows for multiple activities to be specified at a time,
891 * @param activities optional additional activities, howeve
895 setNdefPushMessage(NdefMessage message, Activity activity, Activity ... activities) argument
996 setNdefPushMessageCallback(CreateNdefMessageCallback callback, Activity activity, Activity ... activities) argument
1070 setOnNdefPushCompleteCallback(OnNdefPushCompleteCallback callback, Activity activity, Activity ... activities) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java53 * activities that can handle the given intent and order found activities
56 * choice history the file can be omitted, thus the activities will be ordered
64 * activities and they may be inconsistent with the functionality of some of the clients.
113 * Defines a sorter that is responsible for sorting the activities
119 * Sorts the <code>activities</code> in descending order of relevance
123 * @param activities Activities to be sorted.
128 public void sort(Intent intent, List<ActivityResolveInfo> activities, argument
239 * List of activities that can handle the current intent.
269 * The sorter for ordering activities base
944 sort(Intent intent, List<ActivityResolveInfo> activities, List<HistoricalRecord> historicalRecords) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java49 * activities that can handle the given intent and order found activities
52 * choice history the file can be omitted, thus the activities will be ordered
60 * activities and they may be inconsistent with the functionality of some of the clients.
109 * Defines a sorter that is responsible for sorting the activities
115 * Sorts the <code>activities</code> in descending order of relevance
119 * @param activities Activities to be sorted.
124 public void sort(Intent intent, List<ActivityResolveInfo> activities, argument
235 * List of activities that can handle the current intent.
260 * The sorter for ordering activities base
936 sort(Intent intent, List<ActivityResolveInfo> activities, List<HistoricalRecord> historicalRecords) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java89 boolean hasClientActivities; // Are there any client services with activities?
92 boolean foregroundActivities; // Running any activities that are foreground?
130 final ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>(); field in class:ProcessRecord
313 if (activities.size() > 0) {
315 for (int i=0; i<activities.size(); i++) {
316 pw.print(prefix); pw.print(" - "); pw.println(activities.get(i));
432 * This method returns true if any of the activities within the process record are interesting
436 final int size = activities.size();
438 ActivityRecord r = activities.get(i);
447 int i = activities
[all...]

Completed in 238 milliseconds