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

  /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) {
  /development/samples/SupportDesignDemos/src/com/example/android/support/design/
SupportDesignDemos.java 95 addItem(myData, nextLabel, activityIntent(
123 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/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);
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchService.java 157 Intent activityIntent = new Intent(getApplicationContext(), DeskClock.class);
158 activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
159 activityIntent.putExtra(
161 startActivity(activityIntent);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerReceiver.java 319 Intent activityIntent = new Intent(context, DeskClock.class);
320 activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
321 activityIntent.putExtra(DeskClock.SELECT_TAB_INTENT_EXTRA, DeskClock.TIMER_TAB_INDEX);
322 PendingIntent pendingActivityIntent = PendingIntent.getActivity(context, 0, activityIntent,
  /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) {
  /cts/tests/tests/hardware/src/android/hardware/multiprocess/camera/cts/
CameraEvictionTest.java 352 Intent activityIntent = new Intent(a, CameraCtsActivity.class);
353 activityIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
354 a.startActivity(activityIntent);
415 Intent activityIntent = new Intent(a, klass);
416 a.startActivity(activityIntent);
  /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);
  /frameworks/base/core/java/android/app/
ActivityThread.java     [all...]

Completed in 400 milliseconds