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

  /cts/tests/tests/content/src/android/content/pm/cts/
PackageManagerTest.java 70 Intent activityIntent = new Intent(ACTIVITY_ACTION_NAME);
74 new ComponentName(PACKAGE_NAME, cmpActivityName), null, activityIntent, 0);
79 new ComponentName(PACKAGE_NAME, ACTIVITY_NAME), null, activityIntent, 0);
84 mPackageManager.queryIntentActivities(activityIntent, 0);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppUtility.java 196 Intent activityIntent = new Intent(Intent.ACTION_VIEW);
197 activityIntent.setDataAndTypeAndNormalize(path, mimetype);
199 activityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
202 context.startActivity(activityIntent);
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 95 addItem(myData, nextLabel, activityIntent(
121 protected Intent activityIntent(String pkg, String componentName) {
  /development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java 95 addItem(myData, nextLabel, activityIntent(
121 protected Intent activityIntent(String pkg, String componentName) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java 95 addItem(myData, nextLabel, activityIntent(
121 protected Intent activityIntent(String pkg, String componentName) {
  /development/samples/Support7Demos/src/com/example/android/supportv7/
Support7Demos.java 95 addItem(myData, nextLabel, activityIntent(
123 protected Intent activityIntent(String pkg, String componentName) {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HwTests.java 98 addItem(myData, nextLabel, activityIntent(
125 protected Intent activityIntent(String pkg, String componentName) {
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorDrawableTest.java 97 addItem(myData, nextLabel, activityIntent(
124 protected Intent activityIntent(String pkg, String componentName) {
  /pdk/apps/HelloPDK/src/com/example/android/helloPDK/
MainActivity.java 97 addItem(myData, nextLabel, activityIntent(
124 protected Intent activityIntent(String pkg, String componentName) {
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchService.java 136 Intent activityIntent = new Intent(getApplicationContext(), DeskClock.class);
137 activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
138 activityIntent.putExtra(
140 startActivity(activityIntent);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerReceiver.java 304 Intent activityIntent = new Intent(context, DeskClock.class);
305 activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
306 activityIntent.putExtra(DeskClock.SELECT_TAB_INTENT_EXTRA, DeskClock.TIMER_TAB_INDEX);
307 PendingIntent pendingActivityIntent = PendingIntent.getActivity(context, 0, activityIntent,

Completed in 922 milliseconds