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

/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java91 public ActivityInfo[] activities; field in class:PackageInfo
249 dest.writeTypedArray(activities, parcelableFlags);
287 activities = source.createTypedArray(ActivityInfo.CREATOR);
H A DPackageParser.java310 int N = p.activities.size();
313 pi.activities = new ActivityInfo[N];
317 if (p.activities.get(i).info.enabled) num++;
319 pi.activities = new ActivityInfo[num];
322 final Activity activity = p.activities.get(i);
325 pi.activities[j++] = generateActivityInfo(p.activities.get(i), flags,
1896 owner.activities.add(a);
1932 owner.activities.add(a);
2329 final int NA = owner.activities
3175 public final ArrayList<Activity> activities = new ArrayList<Activity>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java62 * contain the MIME type in its type field. This allows activities to register
68 * {@link #ACTION_TECH_DISCOVERED}. If any activities respond to this intent neither
78 * Intent to start an activity when a tag is discovered and activities are registered for the
126 * {@link #ACTION_TAG_DISCOVERED}. If any activities respond to {@link #ACTION_NDEF_DISCOVERED}
127 * this intent will not be started. If any activities respond to this intent
136 * <p>This intent will not be started when a tag is discovered if any activities respond to
755 * messages completely (for all activities), you can include a
764 * <p>The API allows for multiple activities to be specified at a time,
794 * @param activities optional additional activities, howeve
798 setNdefPushMessage(NdefMessage message, Activity activity, Activity ... activities) argument
889 setNdefPushMessageCallback(CreateNdefMessageCallback callback, Activity activity, Activity ... activities) argument
952 setOnNdefPushCompleteCallback(OnNdefPushCompleteCallback callback, Activity activity, Activity ... activities) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java50 * activities that can handle the given intent and order found activities
53 * choice history the file can be omitted, thus the activities will be ordered
61 * activities and they may be inconsistent with the functionality of some of the clients.
110 * Defines a sorter that is responsible for sorting the activities
116 * Sorts the <code>activities</code> in descending order of relevance
120 * @param activities Activities to be sorted.
125 public void sort(Intent intent, List<ActivityResolveInfo> activities, argument
236 * List of activities that can handle the current intent.
266 * 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.java68 int nonStoppingAdj; // Adjustment not counting any stopping activities
78 boolean hasActivities; // Are there any activities running in this process?
79 boolean hasClientActivities; // Are there any client services with activities?
81 boolean foregroundActivities; // Running any activities that are foreground?
118 final ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>(); field in class:ProcessRecord
276 if (activities.size() > 0) {
278 for (int i=0; i<activities.size(); i++) {
279 pw.print(prefix); pw.print(" - "); pw.println(activities.get(i));
349 * This method returns true if any of the activities within the process record are interesting
353 final int size = activities
[all...]

Completed in 518 milliseconds