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

  /frameworks/base/core/java/android/server/search/
Searchables.java 36 * This class maintains the information about all searchable activities.
63 * @param context Context to use for looking up activities etc.
72 * The activities fall into three cases, based on meta-data found in
107 // References must point directly to searchable activities.
164 * activities that are searchable, by iterating the entire set of
167 * Also clears the hash of all activities -> searches which will
253 List<ResolveInfo> activities = local
255 int count = activities == null ? 0 : activities.size();
257 ActivityInfo ai = activities.get(i).activityInfo
282 List<ResolveInfo> activities = local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
VoiceRecognition.java 62 List<ResolveInfo> activities = pm.queryIntentActivities( local
64 if (activities.size() != 0) {
  /frameworks/base/core/java/android/content/pm/
PackageInfo.java 79 public ActivityInfo[] activities; field in class:PackageInfo
211 dest.writeTypedArray(activities, parcelableFlags);
246 activities = source.createTypedArray(ActivityInfo.CREATOR);
PackageParser.java 213 int N = p.activities.size();
216 pi.activities = new ActivityInfo[N];
220 if (p.activities.get(i).info.enabled) num++;
222 pi.activities = new ActivityInfo[num];
225 final Activity activity = p.activities.get(i);
228 pi.activities[j++] = generateActivityInfo(p.activities.get(i), flags);
2659 public final ArrayList<Activity> activities = new ArrayList<Activity>(0); field in class:PackageParser.Package
    [all...]
  /development/apps/Development/src/com/android/development/
PackageSummary.java 166 LinearLayout activities = (LinearLayout)findViewById(R.id.activities); local
172 if (info.activities != null) {
173 final int N = info.activities.length;
175 ActivityInfo ai = info.activities[i];
184 activities.addView(view, lp);
188 activities.setVisibility(View.GONE);
  /frameworks/base/services/java/com/android/server/am/
ProcessRecord.java 90 final ArrayList activities = new ArrayList(); field in class:ProcessRecord
114 int persistentActivities; // number of activities that are persistent
200 if (activities.size() > 0) {
201 pw.print(prefix); pw.print("activities="); pw.println(activities);
246 * This method returns true if any of the activities within the process record are interesting
250 final int size = activities.size();
252 HistoryRecord r = (HistoryRecord) activities.get(i);
261 int i = activities.size();
264 ((HistoryRecord)activities.get(i)).stopFreezingScreenLocked(true)
    [all...]
ActivityManagerService.java 173 // This is the maximum number of activities that we would like to have
266 // This is a process only hosting activities that are not visible,
286 // This is a process only hosting activities that are visible to the
382 * running) activities. It contains HistoryRecord objects.
472 * List of activities that are waiting for a new activity
479 * List of activities that are ready to be stopped, but waiting
500 * List of activities that are ready to be finished, but waiting
604 * List of running activities, sorted by recent usage.
845 * activities from being started/resumed.
870 * Task identifier that activities are currently being starte
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceManager.java 39 * from activities or XML.
168 * activities.
177 * {@link Activity Activities} that match the given {@link Intent}. An
184 * @param queryIntent The intent to match activities.
191 final List<ResolveInfo> activities = queryIntentActivities(queryIntent); local
194 for (int i = activities.size() - 1; i >= 0; i--) {
195 final ActivityInfo activityInfo = activities.get(i).activityInfo;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigDelegate.java 251 Activity[] activities = manifestParser.getActivities(); local
253 // first we check that there are, in fact, activities.
254 if (activities.length == 0) {
255 // if the activities list is null, then the manifest is empty
278 for (Activity a : activities) {
MainLaunchConfigTab.java 300 // get the list of activities and fill the combo
399 * Loads the ui with the activities of the specified project, and stores the
400 * activities in <code>mActivities</code>.
404 * @param project The project to load the activities from.
409 // parse the manifest for the list of activities.
414 Activity[] activities = manifestParser.getActivities(); local
419 for (Activity activity : activities) {
  /sdk/eventanalyzer/src/com/android/eventanalyzer/
EventAnalyzer.java 331 Set<String> activities = mLaunchMap.keySet(); local
334 for (String activity : activities) {
339 // loop on the activities and write their values.
346 for (String activity : activities) {
366 for (String activity : activities) {
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageInfoTest.java 108 checkInfoArray(expected.activities, actual.activities);
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsProvider.java 411 * @param packageName Name of package whose activities to update.
429 // Iterate and find all the activities which have the LAUNCHER category set.
433 // Limit to activities in the package, if given
437 List<ResolveInfo> activities = manager.queryIntentActivities(mainIntent, 0); local
438 int activityCount = activities == null ? 0 : activities.size();
440 ResolveInfo info = activities.get(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreationPage.java 1011 Activity[] activities = manifestData.getActivities(); local
1404 Activity[] activities = manifestData.getActivities(); local
    [all...]
NewProjectWizard.java 122 private static final String PH_ACTIVITIES = "ACTIVITIES"; //$NON-NLS-1$
777 String activities = replaceParameters(activityTemplate, parameters); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidManifestParser.java 153 /** List of all activities */
204 * Returns the list of activities found in the manifest.
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
HudLayer.java 765 // Query the system for matching activities.
767 List<ResolveInfo> activities = packageManager.queryIntentActivities(intent, 0); local
768 int numActivities = activities.size();
771 final ResolveInfo info = activities.get(i);
    [all...]
  /frameworks/base/services/java/com/android/server/
PackageManagerService.java 282 // All available activities, for your resolving pleasure.
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 704 milliseconds